001    /**
002     * Copyright (c) 2000-2011 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            @Override
023            protected void doVerify() throws Exception {
024                    verify(new VerifyProperties());
025    
026                    verify(new VerifyMySQL());
027                    verify(new VerifySQLServer());
028    
029                    verify(new VerifyCounter());
030                    verify(new VerifyUUID());
031    
032                    verify(new VerifyPermission());
033                    verify(new VerifyRole());
034    
035                    verify(new VerifyAsset());
036                    verify(new VerifyBlogs());
037                    verify(new VerifyBookmarks());
038                    verify(new VerifyCalendar());
039                    verify(new VerifyDocumentLibrary());
040                    verify(new VerifyGroup());
041                    verify(new VerifyJournal());
042                    verify(new VerifyLayout());
043                    verify(new VerifyMessageBoards());
044                    verify(new VerifyOrganization());
045                    verify(new VerifyResourcePermissions());
046                    verify(new VerifySocial());
047                    verify(new VerifyUser());
048                    verify(new VerifyWiki());
049    
050                    // VerifyBlogsTrackbacks looks at every blog comment to see if it is a
051                    // trackback and verifies that the source URL is a valid URL.
052    
053                    //verify(new VerifyBlogsTrackbacks());
054            }
055    
056    }