| VerifyProcessSuite.java |
1 /**
2 * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3 *
4 * The contents of this file are subject to the terms of the Liferay Enterprise
5 * Subscription License ("License"). You may not use this file except in
6 * compliance with the License. You can obtain a copy of the License by
7 * contacting Liferay, Inc. See the License for the specific language governing
8 * permissions and limitations under the License, including but not limited to
9 * distribution rights of the Software.
10 *
11 *
12 *
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 VerifyPermission());
34 verify(new VerifyRole());
35
36 verify(new VerifyBlogs());
37 verify(new VerifyBookmarks());
38 verify(new VerifyDocumentLibrary());
39 verify(new VerifyGroup());
40 verify(new VerifyImageGallery());
41 verify(new VerifyJournal());
42 verify(new VerifyLayout());
43 verify(new VerifyMessageBoards());
44 verify(new VerifyOrganization());
45 verify(new VerifySocial());
46 verify(new VerifyUser());
47 verify(new VerifyWiki());
48
49 // VerifyBlogsTrackbacks looks at every blog comment to see if it is a
50 // trackback and verifies that the source URL is a valid URL.
51
52 //verify(new VerifyBlogsTrackbacks());
53
54 // VerifyImage is very powerful because it removes all images that it
55 // believes is stale. Do not run this unless you are also not managing
56 // images in Liferay's Image service for your custom models.
57
58 //verify(new VerifyImage());
59 }
60
61 }