blob: 6ae69dcc55e2282620211861141f4c6815bcb2f3 [file] [log] [blame]
/* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pluto.container.bean.processor.tests;
import static org.apache.pluto.container.bean.processor.MethodType.ACTION;
import static org.apache.pluto.container.bean.processor.MethodType.RENDER;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Method;
import java.net.URISyntaxException;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import javax.xml.namespace.QName;
import org.apache.pluto.container.bean.processor.AnnotatedMethod;
import org.apache.pluto.container.bean.processor.AnnotatedMethodStore;
import org.apache.pluto.container.bean.processor.ConfigSummary;
import org.apache.pluto.container.bean.processor.MethodIdentifier;
import org.apache.pluto.container.bean.processor.MethodType;
import org.apache.pluto.container.bean.processor.fixtures.action.Action1;
import org.apache.pluto.container.bean.processor.fixtures.action.Action2;
import org.apache.pluto.container.om.portlet.impl.ConfigurationHolder;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* Test class for action method annotations.
*
* @author Scott Nicklous
*
*/
public class ActionTest {
private static final String pkg = "org.apache.pluto.container.bean.processor.fixtures.action";
private static AnnotatedMethodStore ams = null;
private static ConfigSummary summary = null;
private static ConfigurationHolder holder = new ConfigurationHolder();
@BeforeClass
public static void setUpClass() throws URISyntaxException, IOException {
Set<File> classes = FileHelper.getClasses(pkg);
holder.scanMethodAnnotations(classes);
ams = holder.getMethodStore();
summary = holder.getConfigSummary();
assertNotNull(ams);
assertNotNull(summary);
}
@Test
public void portletNamesTest() throws Exception {
Set<String> names = ams.getPortletNames();
assertNotNull(names);
assertEquals(4, names.size());
assertTrue(names.contains("portlet1"));
assertTrue(names.contains("portlet2"));
assertTrue(names.contains("portlet3"));
assertTrue(names.contains("portlet6"));
}
@Test
public void errorDuplicateMethod() throws Exception {
List<String> names = summary.getPortletsWithErrors();
assertNotNull(names);
assertEquals(4, names.size());
assertTrue(names.contains("portlet2"));
}
@Test
public void errorDuplicateMethod2() throws Exception {
List<String> names = summary.getPortletsWithErrors();
assertNotNull(names);
assertEquals(4, names.size());
assertTrue(names.contains("portlet6"));
}
@Test
public void errorBadReturnType() throws Exception {
List<String> names = summary.getPortletsWithErrors();
assertNotNull(names);
assertEquals(4, names.size());
assertTrue(names.contains("portlet5"));
}
@Test
public void errorBadParameters() throws Exception {
List<String> names = summary.getPortletsWithErrors();
assertNotNull(names);
assertEquals(4, names.size());
assertTrue(names.contains("portlet4"));
}
@Test
public void methods1Test() throws Exception {
Set<MethodIdentifier> portlets = ams.getMethodIDsForPortlet("portlet1");
assertNotNull(portlets);
assertEquals(2, portlets.size());
MethodIdentifier mi = (MethodIdentifier) portlets.toArray()[0];
if (!mi.getType().equals(ACTION)) {
mi = (MethodIdentifier) portlets.toArray()[1];
}
assertEquals("", mi.getId());
assertEquals("portlet1", mi.getName());
}
@Test
public void methods2Test() throws Exception {
Set<MethodIdentifier> portlets = ams.getMethodIDsForPortlet("portlet2");
assertNotNull(portlets);
assertEquals(2, portlets.size());
MethodIdentifier mi = (MethodIdentifier) portlets.toArray()[0];
List<MethodType> types = Arrays.asList(ACTION, RENDER);
assertTrue(types.contains(mi.getType()));
if (!mi.getType().equals(ACTION)) {
mi = (MethodIdentifier) portlets.toArray()[1];
}
assertEquals("", mi.getId());
assertEquals("portlet2", mi.getName());
}
@Test
public void methods3Test() throws Exception {
Set<MethodIdentifier> portlets = ams.getMethodIDsForPortlet("portlet3");
assertNotNull(portlets);
assertEquals(4, portlets.size());
List<String> ids = Arrays.asList(new String[] { "", "Fred", "Barney" });
for (MethodIdentifier mi : portlets) {
if (mi.getType().equals(ACTION)) {
assertTrue(ids.contains(mi.getId()));
assertEquals("portlet3", mi.getName());
}
}
}
@Test
public void class1Test() throws Exception {
MethodIdentifier mi = new MethodIdentifier("portlet1", "", ACTION);
AnnotatedMethod am = ams.getMethod(mi);
assertNotNull(am);
Method m = am.getJavaMethod();
assertNotNull(m);
assertEquals("action1", m.getName());
assertEquals(Action1.class, m.getDeclaringClass());
}
@Test
public void class2Test() throws Exception {
MethodIdentifier mi = new MethodIdentifier("portlet2", "", ACTION);
AnnotatedMethod am = ams.getMethod(mi);
assertNotNull(am);
Method m = am.getJavaMethod();
assertNotNull(m);
assertEquals("action2", m.getName());
// don't know which one the scanner will find first
List<Class<?>> list = Arrays.asList(new Class<?>[] { Action1.class, Action2.class });
assertTrue(list.contains(m.getDeclaringClass()));
}
@Test
public void class3Test() throws Exception {
MethodIdentifier mi = new MethodIdentifier("portlet3", "", ACTION);
AnnotatedMethod am = ams.getMethod(mi);
assertNotNull(am);
Method m = am.getJavaMethod();
assertNotNull(m);
assertEquals("action1a", m.getName());
assertEquals(Action2.class, m.getDeclaringClass());
}
@Test
public void class4Test() throws Exception {
MethodIdentifier mi = new MethodIdentifier("portlet3", "Fred", ACTION);
AnnotatedMethod am = ams.getMethod(mi);
assertNotNull(am);
Method m = am.getJavaMethod();
assertNotNull(m);
assertEquals("action1b", m.getName());
assertEquals(Action2.class, m.getDeclaringClass());
}
@Test
public void class5Test() throws Exception {
MethodIdentifier mi = new MethodIdentifier("portlet3", "Barney", ACTION);
AnnotatedMethod am = ams.getMethod(mi);
assertNotNull(am);
Method m = am.getJavaMethod();
assertNotNull(m);
assertEquals("action1c", m.getName());
assertEquals(Action2.class, m.getDeclaringClass());
}
@Test
public void class6Test() throws Exception {
MethodIdentifier mi = new MethodIdentifier("portlet6", "Wilma", ACTION);
AnnotatedMethod am = ams.getMethod(mi);
assertNotNull(am);
Method m = am.getJavaMethod();
assertNotNull(m);
List<String> names = Arrays.asList("action6", "action7");
assertTrue(names.contains(m.getName()));
assertEquals(Action2.class, m.getDeclaringClass());
}
@Test
public void pubEvent1Test() throws Exception {
List<QName> qns = ams.getPublishingEventRefs("portlet1");
assertNotNull(qns);
assertEquals(1, qns.size());
assertTrue(qns.contains(new QName("http://www.apache.org", "pub1")));
}
@Test
public void pubEvent2Test() throws Exception {
List<QName> qns = ams.getPublishingEventRefs("portlet3");
assertNotNull(qns);
assertEquals(4, qns.size());
assertTrue(qns.contains(new QName("http://www.apache.org", "pub1")));
assertTrue(qns.contains(new QName("http://www.apache.org", "pub2")));
assertTrue(qns.contains(new QName("http://www.apache.org", "pub3")));
assertTrue(qns.contains(new QName("http://www.apache.org", "pub4")));
}
}