VerifyProcessSuite.java |
1 /** 2 * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved. 3 * 4 * This library is free software; you can redistribute it and/or modify it under 5 * the terms of the GNU Lesser General Public License as published by the Free 6 * Software Foundation; either version 2.1 of the License, or (at your option) 7 * any later version. 8 * 9 * This library is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 11 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 12 * details. 13 */ 14 15 package com.liferay.portal.verify; 16 17 /** 18 * <a href="VerifyProcessSuite.java.html"><b><i>View Source</i></b></a> 19 * 20 * @author Alexander Chow 21 */ 22 public class VerifyProcessSuite extends VerifyProcess { 23 24 protected void doVerify() throws Exception { 25 verify(new VerifyProperties()); 26 verify(new VerifyLucene()); 27 28 verify(new VerifyMySQL()); 29 30 verify(new VerifyCounter()); 31 verify(new VerifyUUID()); 32 33 verify(new VerifyBlogs()); 34 verify(new VerifyBookmarks()); 35 verify(new VerifyCalendar()); 36 verify(new VerifyDocumentLibrary()); 37 verify(new VerifyGroup()); 38 verify(new VerifyImageGallery()); 39 verify(new VerifyJournal()); 40 verify(new VerifyLayout()); 41 verify(new VerifyMessageBoards()); 42 verify(new VerifyOrganization()); 43 verify(new VerifyRole()); 44 verify(new VerifySocial()); 45 verify(new VerifyUser()); 46 verify(new VerifyWiki()); 47 48 // VerifyBlogsTrackbacks looks at every blog comment to see if it is a 49 // trackback and verifies that the source URL is a valid URL. 50 51 //verify(new VerifyBlogsTrackbacks()); 52 53 // VerifyImage is very powerful because it removes all images that it 54 // believes is stale. Do not run this unless you are also not managing 55 // images in Liferay's Image service for your custom models. 56 57 //verify(new VerifyImage()); 58 } 59 60 }