/servers/jain-slee/core/components/components/src/test/java/org/mobicents/slee/container/component/validator/ProfileComponentValidatorManagementInterfaceTest.java

http://mobicents.googlecode.com/ · Java · 322 lines · 187 code · 98 blank · 37 comment · 0 complexity · e902d864e3f9f8caf3e75b544f48ccd7 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. /**
  23. * Start time:17:07:31 2009-01-31<br>
  24. * Project: mobicents-jainslee-server-core<br>
  25. *
  26. * @author <a href="mailto:baranowb@gmail.com">baranowb - Bartosz Baranowski
  27. * </a>
  28. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  29. */
  30. package org.mobicents.slee.container.component.validator;
  31. import java.util.List;
  32. import org.mobicents.slee.container.component.ProfileSpecificationComponentImpl;
  33. import org.mobicents.slee.container.component.deployment.jaxb.descriptors.ProfileSpecificationDescriptorFactoryImpl;
  34. import org.mobicents.slee.container.component.deployment.jaxb.descriptors.ProfileSpecificationDescriptorImpl;
  35. import org.mobicents.slee.container.component.deployment.jaxb.descriptors.TCUtilityClass;
  36. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceOkDeclareValidCMPMethod;
  37. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceOkDeclareValidCMPMethodWithThrows;
  38. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceOkExtendCMPInterface;
  39. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongMethod_DynamicMBean;
  40. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongMethod_MBeanRegistration;
  41. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongMethod_Profile;
  42. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongMethod_ProfileMBean;
  43. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongMethod_ProfileManagement;
  44. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongPrefix;
  45. import org.mobicents.slee.container.component.validator.profile.managementinterface.ManagementInterfaceWrongType;
  46. /**
  47. * Start time:17:07:31 2009-01-31<br>
  48. * Project: mobicents-jainslee-server-core<br>
  49. *
  50. * @author <a href="mailto:baranowb@gmail.com">baranowb - Bartosz Baranowski
  51. * </a>
  52. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  53. */
  54. public class ProfileComponentValidatorManagementInterfaceTest extends
  55. TCUtilityClass {
  56. public static final String _PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS = "xml/validator/profile/mgmt/profile-spec-jar-one-ManagementInterface.xml";
  57. public void testProfilemanagmentInterfaceConstraintsOk() throws Exception {
  58. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  59. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  60. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  61. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  62. component.setProfileCmpInterfaceClass(Thread.currentThread()
  63. .getContextClassLoader().loadClass(
  64. descriptor.getProfileCMPInterface()
  65. .getProfileCmpInterfaceName()));
  66. component.setProfileManagementInterfaceClass(Thread.currentThread()
  67. .getContextClassLoader().loadClass(
  68. descriptor.getProfileManagementInterface()));
  69. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  70. validator.setComponent(component);
  71. boolean b = validator.validateProfileManagementInterface();
  72. assertTrue("Management Interface class has not been validated", b);
  73. }
  74. public void testProfilemanagmentInterfaceConstraintsOkExtendCMPInterface() throws Exception {
  75. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  76. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  77. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  78. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  79. component.setProfileCmpInterfaceClass(Thread.currentThread()
  80. .getContextClassLoader().loadClass(
  81. descriptor.getProfileCMPInterface()
  82. .getProfileCmpInterfaceName()));
  83. component.setProfileManagementInterfaceClass(ManagementInterfaceOkExtendCMPInterface.class);
  84. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  85. validator.setComponent(component);
  86. boolean b = validator.validateCMPInterface();
  87. assertTrue("CMP Interface class has not been validated", b);
  88. }
  89. public void testProfilemanagmentInterfaceConstraintsOkDeclareValidCMPMethod() throws Exception {
  90. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  91. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  92. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  93. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  94. component.setProfileCmpInterfaceClass(Thread.currentThread()
  95. .getContextClassLoader().loadClass(
  96. descriptor.getProfileCMPInterface()
  97. .getProfileCmpInterfaceName()));
  98. component.setProfileManagementInterfaceClass(ManagementInterfaceOkDeclareValidCMPMethod.class);
  99. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  100. validator.setComponent(component);
  101. boolean b = validator.validateProfileManagementInterface();
  102. assertTrue("Management Interface class has not been validated - it does not extend CMP interface, however it is valid to declare CMP method.", b);
  103. }
  104. public void testProfilemanagmentInterfaceConstraintsDeclareValidCMPMethodWithThrows() throws Exception {
  105. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  106. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  107. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  108. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  109. component.setProfileCmpInterfaceClass(Thread.currentThread()
  110. .getContextClassLoader().loadClass(
  111. descriptor.getProfileCMPInterface()
  112. .getProfileCmpInterfaceName()));
  113. component.setProfileManagementInterfaceClass(ManagementInterfaceOkDeclareValidCMPMethodWithThrows.class);
  114. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  115. validator.setComponent(component);
  116. boolean b = validator.validateProfileManagementInterface();
  117. assertFalse("Management Interface class has been validated, it should not - it declares CMP methods with throws clause.", b);
  118. }
  119. public void testProfilemanagmentInterfaceConstraintsWrongPrefix() throws Exception {
  120. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  121. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  122. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  123. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  124. component.setProfileCmpInterfaceClass(Thread.currentThread()
  125. .getContextClassLoader().loadClass(
  126. descriptor.getProfileCMPInterface()
  127. .getProfileCmpInterfaceName()));
  128. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongPrefix.class);
  129. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  130. validator.setComponent(component);
  131. boolean b = validator.validateProfileManagementInterface();
  132. assertFalse("Management Interface class has been validated, it should not as interface declares method with wrong prefix.", b);
  133. }
  134. public void testProfilemanagmentInterfaceConstraintsWrongParameterType() throws Exception {
  135. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  136. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  137. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  138. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  139. component.setProfileCmpInterfaceClass(Thread.currentThread()
  140. .getContextClassLoader().loadClass(
  141. descriptor.getProfileCMPInterface()
  142. .getProfileCmpInterfaceName()));
  143. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongType.class);
  144. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  145. validator.setComponent(component);
  146. boolean b = validator.validateProfileManagementInterface();
  147. assertFalse("Management Interface class has been validated, it should not, as it decalres method with wrong parameter.", b);
  148. }
  149. public void testProfilemanagmentInterfaceConstraintsWrongMethodProfileMBean() throws Exception {
  150. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  151. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  152. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  153. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  154. component.setProfileCmpInterfaceClass(Thread.currentThread()
  155. .getContextClassLoader().loadClass(
  156. descriptor.getProfileCMPInterface()
  157. .getProfileCmpInterfaceName()));
  158. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongMethod_ProfileMBean.class);
  159. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  160. validator.setComponent(component);
  161. boolean b = validator.validateProfileManagementInterface();
  162. assertFalse("Management Interface class has been validated, it should not as it declared method from ProfileMBean", b);
  163. }
  164. public void testProfilemanagmentInterfaceConstraintsWrongMethodProfileManagement() throws Exception {
  165. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  166. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  167. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  168. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  169. component.setProfileCmpInterfaceClass(Thread.currentThread()
  170. .getContextClassLoader().loadClass(
  171. descriptor.getProfileCMPInterface()
  172. .getProfileCmpInterfaceName()));
  173. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongMethod_ProfileManagement.class);
  174. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  175. validator.setComponent(component);
  176. boolean b = validator.validateProfileManagementInterface();
  177. assertFalse("Management Interface class has been validated, it should not as it declared method from ProfileManagement", b);
  178. }
  179. public void testProfilemanagmentInterfaceConstraintsWrongMethodProfile() throws Exception {
  180. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  181. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  182. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  183. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  184. component.setProfileCmpInterfaceClass(Thread.currentThread()
  185. .getContextClassLoader().loadClass(
  186. descriptor.getProfileCMPInterface()
  187. .getProfileCmpInterfaceName()));
  188. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongMethod_Profile.class);
  189. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  190. validator.setComponent(component);
  191. boolean b = validator.validateProfileManagementInterface();
  192. assertFalse("Management Interface class has been validated, it should not as it declared method from Profile", b);
  193. }
  194. public void testProfilemanagmentInterfaceConstraintsWrongMethodDynamicMBean() throws Exception {
  195. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  196. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  197. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  198. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  199. component.setProfileCmpInterfaceClass(Thread.currentThread()
  200. .getContextClassLoader().loadClass(
  201. descriptor.getProfileCMPInterface()
  202. .getProfileCmpInterfaceName()));
  203. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongMethod_DynamicMBean.class);
  204. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  205. validator.setComponent(component);
  206. boolean b = validator.validateProfileManagementInterface();
  207. assertFalse("Management Interface class has been validated, it should not as it declared method from DynamicMBean", b);
  208. }
  209. public void testProfilemanagmentInterfaceConstraintsWrongMethodMBeanRegistration() throws Exception {
  210. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  211. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_OK_MANAGENEBT_INTERFACE_CONSTRAINTS));
  212. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  213. ProfileSpecificationComponentImpl component=new ProfileSpecificationComponentImpl(descriptor);
  214. component.setProfileCmpInterfaceClass(Thread.currentThread()
  215. .getContextClassLoader().loadClass(
  216. descriptor.getProfileCMPInterface()
  217. .getProfileCmpInterfaceName()));
  218. component.setProfileManagementInterfaceClass(ManagementInterfaceWrongMethod_MBeanRegistration.class);
  219. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  220. validator.setComponent(component);
  221. boolean b = validator.validateProfileManagementInterface();
  222. assertFalse("Management Interface class has been validated, it should not as it declared method from MBeanRegistration", b);
  223. }
  224. }