001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.verify;
016    
017    /**
018     * @author Alexander Chow
019     */
020    public class VerifyProcessSuite extends VerifyProcess {
021    
022            protected void doVerify() throws Exception {
023                    verify(new VerifyProperties());
024    
025                    verify(new VerifyMySQL());
026    
027                    verify(new VerifyCounter());
028                    verify(new VerifyUUID());
029    
030                    verify(new VerifyRole());
031    
032                    verify(new VerifyBlogs());
033                    verify(new VerifyBookmarks());
034                    verify(new VerifyCalendar());
035                    verify(new VerifyDocumentLibrary());
036                    verify(new VerifyGroup());
037                    verify(new VerifyImageGallery());
038                    verify(new VerifyJournal());
039                    verify(new VerifyLayout());
040                    verify(new VerifyMessageBoards());
041                    verify(new VerifyOrganization());
042                    verify(new VerifySocial());
043                    verify(new VerifyUser());
044                    verify(new VerifyWiki());
045    
046                    // VerifyBlogsTrackbacks looks at every blog comment to see if it is a
047                    // trackback and verifies that the source URL is a valid URL.
048    
049                    //verify(new VerifyBlogsTrackbacks());
050    
051                    // VerifyImage is very powerful because it removes all images that it
052                    // believes is stale. Do not run this unless you are also not managing
053                    // images in Liferay's Image service for your custom models.
054    
055                    //verify(new VerifyImage());
056            }
057    
058    }