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

http://mobicents.googlecode.com/ · Java · 558 lines · 362 code · 158 blank · 38 comment · 0 complexity · 988b0a049327a6b29b9e4880c6dc6436 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.abstrakt.ProfileAbstractClass10LackLifeCycle;
  37. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassConcreteUsageParametersAccess;
  38. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassDeclareConcreteCMP;
  39. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassDefaultConstructorThrows;
  40. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassImplementingProfileLocalObject;
  41. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassLackLifeCycle;
  42. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassNoDefaultConstructor;
  43. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassNoUsageParametersAccess;
  44. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassNotImplementingCMP;
  45. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassNotImplementingManagementInterface;
  46. import org.mobicents.slee.container.component.validator.profile.abstrakt.ProfileAbstractClassNotImplementingProfileLocalMethod;
  47. /**
  48. * Start time:17:07:31 2009-01-31<br>
  49. * Project: mobicents-jainslee-server-core<br>
  50. *
  51. * @author <a href="mailto:baranowb@gmail.com">baranowb - Bartosz Baranowski
  52. * </a>
  53. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  54. */
  55. public class ProfileComponentValidatorAbstractClassTest extends TCUtilityClass {
  56. public static final String _PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS = "xml/validator/profile/abstrakt/profile-spec-jar-one.xml";
  57. public static final String _PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS_10 = "xml/validator/profile/abstrakt/profile-spec-jar-one10.xml";
  58. public void testAbstractClassConstraintsOk() throws Exception {
  59. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  60. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  61. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  62. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  63. descriptor);
  64. component.setProfileCmpInterfaceClass(Thread.currentThread()
  65. .getContextClassLoader().loadClass(
  66. descriptor.getProfileCMPInterface()
  67. .getProfileCmpInterfaceName()));
  68. component.setProfileAbstractClass(Thread.currentThread()
  69. .getContextClassLoader().loadClass(
  70. descriptor.getProfileAbstractClass()
  71. .getProfileAbstractClassName()));
  72. component.setProfileManagementInterfaceClass(Thread.currentThread()
  73. .getContextClassLoader().loadClass(
  74. descriptor.getProfileManagementInterface()));
  75. component.setProfileLocalInterfaceClass(Thread.currentThread()
  76. .getContextClassLoader().loadClass(
  77. descriptor.getProfileLocalInterface()
  78. .getProfileLocalInterfaceName()));
  79. component.setUsageParametersInterface(Thread.currentThread()
  80. .getContextClassLoader().loadClass(
  81. descriptor.getProfileUsageParameterInterface()
  82. .getUsageParametersInterfaceName()));
  83. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  84. validator.setComponent(component);
  85. boolean b = validator.validateAbstractClass();
  86. assertTrue("Abstract class class has not been validated", b);
  87. }
  88. public void testAbstractClassConstraintsDeclareConcreteCMPMethod() throws Exception {
  89. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  90. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  91. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  92. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  93. descriptor);
  94. component.setProfileCmpInterfaceClass(Thread.currentThread()
  95. .getContextClassLoader().loadClass(
  96. descriptor.getProfileCMPInterface()
  97. .getProfileCmpInterfaceName()));
  98. component.setProfileAbstractClass(ProfileAbstractClassDeclareConcreteCMP.class);
  99. component.setProfileManagementInterfaceClass(Thread.currentThread()
  100. .getContextClassLoader().loadClass(
  101. descriptor.getProfileManagementInterface()));
  102. component.setProfileLocalInterfaceClass(Thread.currentThread()
  103. .getContextClassLoader().loadClass(
  104. descriptor.getProfileLocalInterface()
  105. .getProfileLocalInterfaceName()));
  106. component.setUsageParametersInterface(Thread.currentThread()
  107. .getContextClassLoader().loadClass(
  108. descriptor.getProfileUsageParameterInterface()
  109. .getUsageParametersInterfaceName()));
  110. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  111. validator.setComponent(component);
  112. boolean b = validator.validateAbstractClass();
  113. assertFalse("Abstract class class has been validated, it should not - since it declared concrete CMP method", b);
  114. }
  115. public void testAbstractClassConstraintsNotImplementingCMP() throws Exception {
  116. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  117. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  118. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  119. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  120. descriptor);
  121. component.setProfileCmpInterfaceClass(Thread.currentThread()
  122. .getContextClassLoader().loadClass(
  123. descriptor.getProfileCMPInterface()
  124. .getProfileCmpInterfaceName()));
  125. component.setProfileAbstractClass(ProfileAbstractClassNotImplementingCMP.class);
  126. component.setProfileManagementInterfaceClass(Thread.currentThread()
  127. .getContextClassLoader().loadClass(
  128. descriptor.getProfileManagementInterface()));
  129. component.setProfileLocalInterfaceClass(Thread.currentThread()
  130. .getContextClassLoader().loadClass(
  131. descriptor.getProfileLocalInterface()
  132. .getProfileLocalInterfaceName()));
  133. component.setUsageParametersInterface(Thread.currentThread()
  134. .getContextClassLoader().loadClass(
  135. descriptor.getProfileUsageParameterInterface()
  136. .getUsageParametersInterfaceName()));
  137. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  138. validator.setComponent(component);
  139. boolean b = validator.validateAbstractClass();
  140. assertFalse("Abstract class class has been validated, it should not - since it does not implement CMP interface", b);
  141. }
  142. public void testAbstractClassConstraintsNotImplementingManagementInterface() throws Exception {
  143. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  144. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  145. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  146. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  147. descriptor);
  148. component.setProfileCmpInterfaceClass(Thread.currentThread()
  149. .getContextClassLoader().loadClass(
  150. descriptor.getProfileCMPInterface()
  151. .getProfileCmpInterfaceName()));
  152. component.setProfileAbstractClass(ProfileAbstractClassNotImplementingManagementInterface.class);
  153. component.setProfileManagementInterfaceClass(Thread.currentThread()
  154. .getContextClassLoader().loadClass(
  155. descriptor.getProfileManagementInterface()));
  156. component.setProfileLocalInterfaceClass(Thread.currentThread()
  157. .getContextClassLoader().loadClass(
  158. descriptor.getProfileLocalInterface()
  159. .getProfileLocalInterfaceName()));
  160. component.setUsageParametersInterface(Thread.currentThread()
  161. .getContextClassLoader().loadClass(
  162. descriptor.getProfileUsageParameterInterface()
  163. .getUsageParametersInterfaceName()));
  164. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  165. validator.setComponent(component);
  166. boolean b = validator.validateAbstractClass();
  167. assertFalse("Abstract class class has been validated, it should not - since it does nto implement management interface", b);
  168. }
  169. public void testAbstractClassConstraintsImplementingProfileLocalObject() throws Exception {
  170. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  171. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  172. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  173. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  174. descriptor);
  175. component.setProfileCmpInterfaceClass(Thread.currentThread()
  176. .getContextClassLoader().loadClass(
  177. descriptor.getProfileCMPInterface()
  178. .getProfileCmpInterfaceName()));
  179. component.setProfileAbstractClass(ProfileAbstractClassImplementingProfileLocalObject.class);
  180. component.setProfileManagementInterfaceClass(Thread.currentThread()
  181. .getContextClassLoader().loadClass(
  182. descriptor.getProfileManagementInterface()));
  183. component.setProfileLocalInterfaceClass(Thread.currentThread()
  184. .getContextClassLoader().loadClass(
  185. descriptor.getProfileLocalInterface()
  186. .getProfileLocalInterfaceName()));
  187. component.setUsageParametersInterface(Thread.currentThread()
  188. .getContextClassLoader().loadClass(
  189. descriptor.getProfileUsageParameterInterface()
  190. .getUsageParametersInterfaceName()));
  191. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  192. validator.setComponent(component);
  193. boolean b = validator.validateAbstractClass();
  194. assertFalse("Abstract class class has been validated, it should not - since it implements profile local object", b);
  195. }
  196. public void testAbstractClassConstraintsNotImplementingProfileLocalObjectMethod() throws Exception {
  197. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  198. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  199. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  200. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  201. descriptor);
  202. component.setProfileCmpInterfaceClass(Thread.currentThread()
  203. .getContextClassLoader().loadClass(
  204. descriptor.getProfileCMPInterface()
  205. .getProfileCmpInterfaceName()));
  206. component.setProfileAbstractClass(ProfileAbstractClassNotImplementingProfileLocalMethod.class);
  207. component.setProfileManagementInterfaceClass(Thread.currentThread()
  208. .getContextClassLoader().loadClass(
  209. descriptor.getProfileManagementInterface()));
  210. component.setProfileLocalInterfaceClass(Thread.currentThread()
  211. .getContextClassLoader().loadClass(
  212. descriptor.getProfileLocalInterface()
  213. .getProfileLocalInterfaceName()));
  214. component.setUsageParametersInterface(Thread.currentThread()
  215. .getContextClassLoader().loadClass(
  216. descriptor.getProfileUsageParameterInterface()
  217. .getUsageParametersInterfaceName()));
  218. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  219. validator.setComponent(component);
  220. boolean b = validator.validateAbstractClass();
  221. assertFalse("Abstract class class has been validated, it should not - since it does not implement profile local object method", b);
  222. }
  223. public void testAbstractClassConstraintsNoDefaultConstructor() throws Exception {
  224. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  225. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  226. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  227. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  228. descriptor);
  229. component.setProfileCmpInterfaceClass(Thread.currentThread()
  230. .getContextClassLoader().loadClass(
  231. descriptor.getProfileCMPInterface()
  232. .getProfileCmpInterfaceName()));
  233. component.setProfileAbstractClass(ProfileAbstractClassNoDefaultConstructor.class);
  234. component.setProfileManagementInterfaceClass(Thread.currentThread()
  235. .getContextClassLoader().loadClass(
  236. descriptor.getProfileManagementInterface()));
  237. component.setProfileLocalInterfaceClass(Thread.currentThread()
  238. .getContextClassLoader().loadClass(
  239. descriptor.getProfileLocalInterface()
  240. .getProfileLocalInterfaceName()));
  241. component.setUsageParametersInterface(Thread.currentThread()
  242. .getContextClassLoader().loadClass(
  243. descriptor.getProfileUsageParameterInterface()
  244. .getUsageParametersInterfaceName()));
  245. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  246. validator.setComponent(component);
  247. boolean b = validator.validateAbstractClass();
  248. assertFalse("Abstract class class has been validated, it should not - does not have default no arg consutrctor", b);
  249. }
  250. public void testAbstractClassConstraintsDefaultConstructorThrows() throws Exception {
  251. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  252. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  253. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  254. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  255. descriptor);
  256. component.setProfileCmpInterfaceClass(Thread.currentThread()
  257. .getContextClassLoader().loadClass(
  258. descriptor.getProfileCMPInterface()
  259. .getProfileCmpInterfaceName()));
  260. component.setProfileAbstractClass(ProfileAbstractClassDefaultConstructorThrows.class);
  261. component.setProfileManagementInterfaceClass(Thread.currentThread()
  262. .getContextClassLoader().loadClass(
  263. descriptor.getProfileManagementInterface()));
  264. component.setProfileLocalInterfaceClass(Thread.currentThread()
  265. .getContextClassLoader().loadClass(
  266. descriptor.getProfileLocalInterface()
  267. .getProfileLocalInterfaceName()));
  268. component.setUsageParametersInterface(Thread.currentThread()
  269. .getContextClassLoader().loadClass(
  270. descriptor.getProfileUsageParameterInterface()
  271. .getUsageParametersInterfaceName()));
  272. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  273. validator.setComponent(component);
  274. boolean b = validator.validateAbstractClass();
  275. assertFalse("Abstract class class has been validated, it should not - default constructor decalre throws clause.", b);
  276. }
  277. public void testAbstractClassConstraintsNoUsageParameterInterfaceAccessMethod() throws Exception {
  278. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  279. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  280. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  281. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  282. descriptor);
  283. component.setProfileCmpInterfaceClass(Thread.currentThread()
  284. .getContextClassLoader().loadClass(
  285. descriptor.getProfileCMPInterface()
  286. .getProfileCmpInterfaceName()));
  287. component.setProfileAbstractClass(ProfileAbstractClassNoUsageParametersAccess.class);
  288. component.setProfileManagementInterfaceClass(Thread.currentThread()
  289. .getContextClassLoader().loadClass(
  290. descriptor.getProfileManagementInterface()));
  291. component.setProfileLocalInterfaceClass(Thread.currentThread()
  292. .getContextClassLoader().loadClass(
  293. descriptor.getProfileLocalInterface()
  294. .getProfileLocalInterfaceName()));
  295. component.setUsageParametersInterface(Thread.currentThread()
  296. .getContextClassLoader().loadClass(
  297. descriptor.getProfileUsageParameterInterface()
  298. .getUsageParametersInterfaceName()));
  299. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  300. validator.setComponent(component);
  301. boolean b = validator.validateAbstractClass();
  302. assertFalse("Abstract class class has been validated, it should not - does not declare methods to access usage.", b);
  303. }
  304. public void testAbstractClassConstraintsConcreteUsageParameterInterfaceAccessMethod() throws Exception {
  305. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  306. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  307. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  308. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  309. descriptor);
  310. component.setProfileCmpInterfaceClass(Thread.currentThread()
  311. .getContextClassLoader().loadClass(
  312. descriptor.getProfileCMPInterface()
  313. .getProfileCmpInterfaceName()));
  314. component.setProfileAbstractClass(ProfileAbstractClassConcreteUsageParametersAccess.class);
  315. component.setProfileManagementInterfaceClass(Thread.currentThread()
  316. .getContextClassLoader().loadClass(
  317. descriptor.getProfileManagementInterface()));
  318. component.setProfileLocalInterfaceClass(Thread.currentThread()
  319. .getContextClassLoader().loadClass(
  320. descriptor.getProfileLocalInterface()
  321. .getProfileLocalInterfaceName()));
  322. component.setUsageParametersInterface(Thread.currentThread()
  323. .getContextClassLoader().loadClass(
  324. descriptor.getProfileUsageParameterInterface()
  325. .getUsageParametersInterfaceName()));
  326. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  327. validator.setComponent(component);
  328. boolean b = validator.validateAbstractClass();
  329. assertFalse("Abstract class class has been validated, it should not - it does declare methods to access usage.", b);
  330. }
  331. public void testAbstractClassConstraintsLackLifeCycle() throws Exception {
  332. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  333. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS));
  334. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  335. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  336. descriptor);
  337. component.setProfileCmpInterfaceClass(Thread.currentThread()
  338. .getContextClassLoader().loadClass(
  339. descriptor.getProfileCMPInterface()
  340. .getProfileCmpInterfaceName()));
  341. component.setProfileAbstractClass(ProfileAbstractClassLackLifeCycle.class);
  342. component.setProfileManagementInterfaceClass(Thread.currentThread()
  343. .getContextClassLoader().loadClass(
  344. descriptor.getProfileManagementInterface()));
  345. component.setProfileLocalInterfaceClass(Thread.currentThread()
  346. .getContextClassLoader().loadClass(
  347. descriptor.getProfileLocalInterface()
  348. .getProfileLocalInterfaceName()));
  349. component.setUsageParametersInterface(Thread.currentThread()
  350. .getContextClassLoader().loadClass(
  351. descriptor.getProfileUsageParameterInterface()
  352. .getUsageParametersInterfaceName()));
  353. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  354. validator.setComponent(component);
  355. boolean b = validator.validateAbstractClass();
  356. assertFalse("Abstract class class has been validated, it should not - it does not implement all life cycle methods.", b);
  357. }
  358. public void testAbstractClassConstraintsOk10() throws Exception {
  359. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  360. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS_10));
  361. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  362. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  363. descriptor);
  364. component.setProfileCmpInterfaceClass(Thread.currentThread()
  365. .getContextClassLoader().loadClass(
  366. descriptor.getProfileCMPInterface()
  367. .getProfileCmpInterfaceName()));
  368. component.setProfileAbstractClass(Thread.currentThread()
  369. .getContextClassLoader().loadClass(
  370. descriptor.getProfileAbstractClass()
  371. .getProfileAbstractClassName()));
  372. component.setProfileManagementInterfaceClass(Thread.currentThread()
  373. .getContextClassLoader().loadClass(
  374. descriptor.getProfileManagementInterface()));
  375. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  376. validator.setComponent(component);
  377. boolean b = validator.validateAbstractClass();
  378. assertTrue("Abstract class class has not been validated", b);
  379. }
  380. public void testAbstractClassConstraintsLackLifeCycle10() throws Exception {
  381. List<ProfileSpecificationDescriptorImpl> specs = new ProfileSpecificationDescriptorFactoryImpl()
  382. .parse(super.getFileStream(_PROFILE_SPEC_JAR_ONE_ABSTRACTCLASS_OK_CONSTRAINTS_10));
  383. ProfileSpecificationDescriptorImpl descriptor = specs.get(0);
  384. ProfileSpecificationComponentImpl component = new ProfileSpecificationComponentImpl(
  385. descriptor);
  386. component.setProfileCmpInterfaceClass(Thread.currentThread()
  387. .getContextClassLoader().loadClass(
  388. descriptor.getProfileCMPInterface()
  389. .getProfileCmpInterfaceName()));
  390. component.setProfileAbstractClass(ProfileAbstractClass10LackLifeCycle.class);
  391. component.setProfileManagementInterfaceClass(Thread.currentThread()
  392. .getContextClassLoader().loadClass(
  393. descriptor.getProfileManagementInterface()));
  394. ProfileSpecificationComponentValidator validator = new ProfileSpecificationComponentValidator();
  395. validator.setComponent(component);
  396. boolean b = validator.validateAbstractClass();
  397. assertFalse("Abstract class class has been validated, it should not - it does not implement all life cycle methods.", b);
  398. }
  399. //FIXME: all other tests are the same? for 1.0 and 1.1
  400. }