001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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    }