001    /**
002     * Copyright (c) 2000-2013 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 VerifyDB2());
027                    verify(new VerifyMySQL());
028                    verify(new VerifyOracle());
029                    verify(new VerifyPostgreSQL());
030                    verify(new VerifySQLServer());
031    
032                    verify(new VerifyUUID());
033    
034                    verify(new VerifyPermission());
035                    verify(new VerifyGroup());
036                    verify(new VerifyRole());
037    
038                    verify(new VerifyAsset());
039                    verify(new VerifyAuditedModel());
040                    verify(new VerifyBlogs());
041                    verify(new VerifyBookmarks());
042                    verify(new VerifyCalendar());
043                    verify(new VerifyDocumentLibrary());
044                    verify(new VerifyDynamicDataMapping());
045                    verify(new VerifyGroupId());
046                    verify(new VerifyJournal());
047                    verify(new VerifyLayout());
048                    verify(new VerifyMessageBoards());
049                    verify(new VerifyOrganization());
050                    verify(new VerifyPortalPreferences());
051                    verify(new VerifyPortletPreferences());
052                    verify(new VerifyRegion());
053                    verify(new VerifyResourcePermissions());
054                    verify(new VerifyUser());
055                    verify(new VerifyWiki());
056                    verify(new VerifyWorkflow());
057    
058                    // VerifyBlogsTrackbacks looks at every blog comment to see if it is a
059                    // trackback and verifies that the source URL is a valid URL.
060    
061                    //verify(new VerifyBlogsTrackbacks());
062            }
063    
064    }