gw.test.TestMetadata Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.test;
import gw.lang.reflect.IAnnotationInfo;
import gw.lang.reflect.IMethodInfo;
import gw.lang.reflect.IRelativeTypeInfo;
import gw.lang.reflect.IType;
import gw.lang.reflect.TypeSystem;
import gw.util.GosuObjectUtil;
import gw.testharness.DoNotRunTest;
import gw.xml.simple.SimpleXmlNode;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
/**
* @author ctucker
*/
public class TestMetadata implements ITestMetadata {
private String _name;
private HashMap _attributes = new HashMap();
private boolean _doNotRunTest;
public TestMetadata(IAnnotationInfo testAnnotation) {
IType annotationType = testAnnotation.getType();
for( IAnnotationInfo metaAnnotation : annotationType.getTypeInfo().getAnnotations() ) {
if( metaAnnotation.getType().getName().equals( DoNotRunTest.class.getName() ) ) {
_doNotRunTest = true;
}
}
for( IMethodInfo method : ((IRelativeTypeInfo)annotationType.getTypeInfo()).getDeclaredMethods() ) {
addAttribute( method.getDisplayName(), GosuObjectUtil.toString( testAnnotation.getFieldValue( method.getDisplayName() ) ) );
}
_name = annotationType.getName();
}
private TestMetadata() {
}
@Override
public String getName() {
return _name;
}
@Override
public boolean equals(Object obj) {
return obj instanceof TestMetadata && _name.equals(((TestMetadata) obj).getName());
}
public void addAttribute(String name, String value) {
_attributes.put(name, value);
}
@Override
public HashMap getAttributes() {
return _attributes;
}
public boolean shouldNotRunTest() {
return _doNotRunTest;
}
public SimpleXmlNode serializeToXml() {
SimpleXmlNode root = new SimpleXmlNode("TestMetadata");
root.getAttributes().put("name", _name);
root.getAttributes().put("doNotRunTest", "" + _doNotRunTest);
for (Map.Entry entry : _attributes.entrySet()) {
SimpleXmlNode child = new SimpleXmlNode("Attribute");
child.getAttributes().put("key", entry.getKey());
child.getAttributes().put("value", entry.getValue());
root.getChildren().add(child);
}
return root;
}
public static TestMetadata deserializeXml(SimpleXmlNode xml) {
TestMetadata testMD = new TestMetadata();
testMD._name = xml.getAttributes().get("name");
testMD._doNotRunTest = Boolean.valueOf(xml.getAttributes().get("doNotRunTest"));
for (SimpleXmlNode child : xml.getChildren()) {
testMD._attributes.put(child.getAttributes().get("key"), child.getAttributes().get("value"));
}
return testMD;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy