001    /**
002     * Copyright (c) 2000-2012 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            @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    }