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

https://github.com/john7doe/arquillian-extension-drone · Java · 126 lines · 61 code · 19 blank · 46 comment · 8 complexity · 5f75db59e65838861773b7928d0c7733 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.core.api.Instance;
  24. import org.jboss.arquillian.core.api.annotation.Inject;
  25. import org.jboss.arquillian.core.api.annotation.Observes;
  26. import org.jboss.arquillian.drone.api.annotation.Drone;
  27. import org.jboss.arquillian.drone.spi.Destructor;
  28. import org.jboss.arquillian.drone.spi.DroneRegistry;
  29. import org.jboss.arquillian.test.spi.event.suite.After;
  30. import org.jboss.arquillian.test.spi.event.suite.AfterClass;
  31. /**
  32. * Destructor of drone instances. Disposes instance of every field annotated with {@link Drone}. Disposes Drones created for
  33. * 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. private static final Logger log = Logger.getLogger(DroneDestructor.class.getName());
  57. @Inject
  58. private Instance<DroneRegistry> registry;
  59. @SuppressWarnings("unchecked")
  60. public void destroyClassScopedDrone(@Observes AfterClass event, DroneContext droneContext) {
  61. Class<?> clazz = event.getTestClass().getJavaClass();
  62. for (Field f : SecurityActions.getFieldsWithAnnotation(clazz, Drone.class)) {
  63. Class<?> typeClass = f.getType();
  64. Class<? extends Annotation> qualifier = SecurityActions.getQualifier(f);
  65. @SuppressWarnings("rawtypes")
  66. Destructor destructor = getDestructorFor(typeClass);
  67. // get instance to be destroyed
  68. // if deployment failed, there is nothing to be destroyed
  69. Object instance = droneContext.get(typeClass, qualifier);
  70. if (instance != null) {
  71. destructor.destroyInstance(instance);
  72. }
  73. droneContext.remove(typeClass, qualifier);
  74. }
  75. }
  76. @SuppressWarnings("unchecked")
  77. public void destroyMethodScopedDrone(@Observes After event, MethodContext droneMethodContext) {
  78. Method method = event.getTestMethod();
  79. Class<?>[] parameterTypes = method.getParameterTypes();
  80. Annotation[][] parameterAnnotations = method.getParameterAnnotations();
  81. for (int i = 0; i < parameterTypes.length; i++) {
  82. if (SecurityActions.isAnnotationPresent(parameterAnnotations[i], Drone.class)) {
  83. Class<? extends Annotation> qualifier = SecurityActions.getQualifier(parameterAnnotations[i]);
  84. @SuppressWarnings("rawtypes")
  85. Destructor destructor = getDestructorFor(parameterTypes[i]);
  86. // get instance to be destroyed
  87. // if deployment failed, there is nothing to be destroyed
  88. Object instance = droneMethodContext.get(parameterTypes[i], qualifier);
  89. if (instance != null) {
  90. destructor.destroyInstance(instance);
  91. }
  92. droneMethodContext.remove(parameterTypes[i], qualifier);
  93. }
  94. }
  95. }
  96. @SuppressWarnings("rawtypes")
  97. private Destructor getDestructorFor(Class<?> typeClass) {
  98. // must be defined as raw because instance type to be destroyer cannot
  99. // be determined in compile time
  100. Destructor destructor = registry.get().getEntryFor(typeClass, Destructor.class);
  101. if (log.isLoggable(Level.FINE)) {
  102. log.fine("Using destructor defined in class: " + destructor.getClass().getName() + ", with precedence "
  103. + destructor.getPrecedence());
  104. }
  105. return destructor;
  106. }
  107. }