/* * JBoss, Home of Professional Open Source * Copyright 2009, Red Hat Middleware LLC, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * Licensed 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.jboss.arquillian.warp.test; import java.lang.reflect.Field; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.jboss.arquillian.core.api.annotation.Observes; import org.jboss.arquillian.core.spi.EventContext; import org.jboss.arquillian.test.spi.event.suite.After; import org.jboss.arquillian.test.spi.event.suite.Before; import org.jboss.arquillian.warp.ServerAssertion; /** * Watches the {@link ServerAssertion} objects and on {@link Before} event, it stores all fields which have been changed during * that event. * * These changes are the {@link ServerAssertion} enrichment actions. * * Then on {@link After} method, it restores all the changed fields, which deenrich the instance. * * @author Lukas Fryc * */ public class LifecycleTestDeenricher { private Map<Field, Object> backupAll = new HashMap<Field, Object>(); private Map<Field, Object> backupUpdated = new HashMap<Field, Object>(); public void beforeTest(@Observes(precedence = 100) EventContext<Before> context) { final Object testInstance = context.getEvent().getTestInstance(); backupAllFields(testInstance); context.proceed(); backupUpdatedFields(testInstance); } public void afterTest(@Observes(precedence = 100) EventContext<After> context) { final Object testInstance = context.getEvent().getTestInstance(); context.proceed(); restoreFields(testInstance); } private void backupAllFields(Object instance) { try { List<Field> fields = SecurityActions.getFields(instance.getClass()); for (Field field : fields) { backupAll.put(field, field.get(instance)); } } catch (Exception e) { throw new IllegalStateException(e); } } private void backupUpdatedFields(Object instance) { try { for (Entry<Field, Object> entry : backupAll.entrySet()) { Field field = entry.getKey(); Object oldValue = entry.getValue(); Object newValue = field.get(instance); if (oldValue != newValue) { backupUpdated.put(field, oldValue); } } } catch (Exception e) { throw new IllegalStateException(e); } backupAll.clear(); } private void restoreFields(Object instance) { try { for (Entry<Field, Object> entry : backupUpdated.entrySet()) { Field field = entry.getKey(); Object oldValue = entry.getValue(); field.set(instance, oldValue); } } catch (Exception e) { throw new IllegalStateException(e); } backupUpdated.clear(); } }