/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.security.pacl.test; import com.liferay.message.boards.kernel.service.MBMessageLocalServiceUtil; import com.liferay.message.boards.kernel.service.MBStatsUserLocalServiceUtil; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.util.LocaleUtil; import com.liferay.portal.security.pacl.test.hook.action.FailureStrutsAction; import com.liferay.portal.security.pacl.test.hook.action.SuccessStrutsAction; import com.liferay.portal.security.pacl.test.hook.indexer.OrganizationIndexerPostProcessor; import com.liferay.portal.security.pacl.test.hook.indexer.UserIndexerPostProcessor; import com.liferay.portal.test.rule.PACLTestRule; import org.junit.Assert; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; /** * @author Raymond Augé */ public class HookTest { @ClassRule @Rule public static final PACLTestRule paclTestRule = new PACLTestRule(); @Test public void testIndexer1() throws Exception { Assert.assertFalse(OrganizationIndexerPostProcessor.isInstantiated()); } @Test public void testIndexer2() throws Exception { Assert.assertTrue(UserIndexerPostProcessor.isInstantiated()); } @Test public void testLanguage1() throws Exception { Assert.assertEquals( "Estrellas", LanguageUtil.get(LocaleUtil.SPAIN, "stars")); } @Test public void testLanguage2() throws Exception { Assert.assertEquals( "Sterne", LanguageUtil.get(LocaleUtil.GERMAN, "stars")); } @Test public void testLanguage3() throws Exception { Assert.assertEquals( "Ricardo Kaka", LanguageUtil.get(LocaleUtil.BRAZIL, "stars")); } @Test public void testLanguage4() throws Exception { Assert.assertEquals( "Cristiano Ronaldo", LanguageUtil.get(LocaleUtil.PORTUGAL, "stars")); } @Test public void testLanguage5() throws Exception { Assert.assertEquals( "David Beckham", LanguageUtil.get(LocaleUtil.UK, "stars")); } @Test public void testLanguage6() throws Exception { Assert.assertEquals("Stars", LanguageUtil.get(LocaleUtil.US, "stars")); } @Test public void testPortalProperties() throws Exception { Assert.assertFalse(LanguageUtil.isBetaLocale(LocaleUtil.US)); } @Test public void testServices1() throws Exception { Assert.assertTrue(MBMessageLocalServiceUtil.getMBMessagesCount() < 0); } @Test public void testServices2() throws Exception { Assert.assertTrue( MBStatsUserLocalServiceUtil.getMBStatsUsersCount() >= 0); } @Test public void testStruts1() throws Exception { Assert.assertFalse(FailureStrutsAction.isInstantiated()); } @Test public void testStruts2() throws Exception { Assert.assertTrue(SuccessStrutsAction.isInstantiated()); } }