/extensions/drone/src/main/java/org/jboss/arquillian/drone/impl/DroneDestructor.java

https://github.com/arquillian/arquillian_deprecated · Java · 132 lines · 73 code · 17 blank · 42 comment · 6 complexity · bf88de268604c403e6d27c46e08ef805 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2010, Red Hat Middleware LLC, 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. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jboss.arquillian.drone.impl;
  18. import java.lang.annotation.Annotation;
  19. import java.lang.reflect.Field;
  20. import java.lang.reflect.Method;
  21. import java.util.logging.Level;
  22. import java.util.logging.Logger;
  23. import org.jboss.arquillian.drone.annotation.Drone;
  24. import org.jboss.arquillian.drone.spi.Destructor;
  25. import org.jboss.arquillian.spi.core.Instance;
  26. import org.jboss.arquillian.spi.core.annotation.Inject;
  27. import org.jboss.arquillian.spi.core.annotation.Observes;
  28. import org.jboss.arquillian.spi.event.suite.After;
  29. import org.jboss.arquillian.spi.event.suite.AfterClass;
  30. import org.jboss.arquillian.spi.util.Validate;
  31. /**
  32. * Destructor of drone instances. Disposes instance of every field annotated
  33. * with {@link Drone}. Disposes Drones created for method arguments as well.
  34. *
  35. * <p>
  36. * Consumes:
  37. * </p>
  38. * <ol>
  39. * <li>{@link DroneContext}</li>
  40. * <li>{@link DroneRegistry}</li>
  41. * <li>{@link MethodContext}</li>
  42. * </ol>
  43. *
  44. * <p>
  45. * Observes:
  46. * </p>
  47. * <ol>
  48. * <li>{@link After}</li>
  49. * <li>{@link AfterClass}</li>
  50. * </ol>
  51. *
  52. * @author <a href="kpiwko@redhat.com>Karel Piwko</a>
  53. *
  54. */
  55. public class DroneDestructor
  56. {
  57. private static final Logger log = Logger.getLogger(DroneDestructor.class.getName());
  58. @Inject
  59. private Instance<DroneRegistry> registry;
  60. @Inject
  61. private Instance<DroneContext> droneContext;
  62. @Inject
  63. private Instance<MethodContext> methodContext;
  64. @SuppressWarnings("unchecked")
  65. public void destroyClassScopedDrone(@Observes AfterClass event)
  66. {
  67. Class<?> clazz = event.getTestClass().getJavaClass();
  68. for (Field f : SecurityActions.getFieldsWithAnnotation(clazz, Drone.class))
  69. {
  70. Class<?> typeClass = f.getType();
  71. Class<? extends Annotation> qualifier = SecurityActions.getQualifier(f);
  72. @SuppressWarnings("rawtypes")
  73. Destructor destructor = getDestructorFor(typeClass);
  74. destructor.destroyInstance(droneContext.get().get(typeClass, qualifier));
  75. droneContext.get().remove(typeClass, qualifier);
  76. }
  77. }
  78. @SuppressWarnings("unchecked")
  79. public void destroyMethodScopedDrone(@Observes After event)
  80. {
  81. Method method = event.getTestMethod();
  82. Class<?>[] parameterTypes = method.getParameterTypes();
  83. Annotation[][] parameterAnnotations = method.getParameterAnnotations();
  84. for (int i = 0; i < parameterTypes.length; i++)
  85. {
  86. if (SecurityActions.isAnnotationPresent(parameterAnnotations[i], Drone.class))
  87. {
  88. Validate.notNull(methodContext.get(), "Drone registry should not be null");
  89. Class<? extends Annotation> qualifier = SecurityActions.getQualifier(parameterAnnotations[i]);
  90. @SuppressWarnings("rawtypes")
  91. Destructor destructor = getDestructorFor(parameterTypes[i]);
  92. DroneContext context = methodContext.get().get(method);
  93. Validate.notNull(context, "Method context should not be null");
  94. destructor.destroyInstance(context.get(parameterTypes[i], qualifier));
  95. context.remove(parameterTypes[i], qualifier);
  96. }
  97. }
  98. }
  99. @SuppressWarnings("rawtypes")
  100. private Destructor getDestructorFor(Class<?> typeClass)
  101. {
  102. // must be defined as raw because instance type to be destroyer cannot
  103. // be determined in compile time
  104. Destructor destructor = registry.get().getDestructorFor(typeClass);
  105. if (destructor == null)
  106. {
  107. throw new IllegalArgumentException("No destructor was found for object of type " + typeClass.getName());
  108. }
  109. if (log.isLoggable(Level.FINE))
  110. {
  111. log.fine("Using destructor defined in class: " + destructor.getClass().getName() + ", with precedence " + destructor.getPrecedence());
  112. }
  113. return destructor;
  114. }
  115. }