Search in sources :

Example 1 with ClassInfo

use of org.osjava.jardiff.ClassInfo in project semantic-versioning by jeluard.

the class ClassInheritanceTest method addClassInfo.

private void addClassInfo(Map<String, ClassInfo> classMap, Class klass, JarDiff jd) throws Exception {
    ClassInfo classInfo = jd.loadClassInfo(new ClassReader(klass.getName()));
    classMap.put(classInfo.getName(), classInfo);
}
Also used : ClassReader(org.objectweb.asm.ClassReader) ClassInfo(org.osjava.jardiff.ClassInfo)

Example 2 with ClassInfo

use of org.osjava.jardiff.ClassInfo in project semantic-versioning by jeluard.

the class ClassInheritanceTest method shouldInheritedMethodMatchImplementedMethod.

@Test
public void shouldInheritedMethodMatchImplementedMethod() throws Exception {
    /**
     * The situation we are testing is as follows:
     * Abstract class InheritanceRoot is initially implemented directly by ClassA.
     * ClassA is later modified to extend another implementation of InheritanceRoot
     * and the methods required by InheritanceRoot are now removed from ClassA directly,
     * and instead inherited from the new parent, DirectDescendant. For the purposes of
     * this test, this new ClassA is represented by ClassB (as we can't have the same
     * class declared twice in a test -- in real life, this would both be ClassA's,
     * in different jars).
     */
    Map<String, ClassInfo> oldClassInfoMap = new HashMap<String, ClassInfo>();
    Map<String, ClassInfo> newClassInfoMap = new HashMap<String, ClassInfo>();
    JarDiff jd = new JarDiff();
    addClassInfo(oldClassInfoMap, ClassA.class, jd);
    addClassInfo(oldClassInfoMap, DirectDescendant.class, jd);
    addClassInfo(oldClassInfoMap, InheritanceRoot.class, jd);
    addClassInfo(newClassInfoMap, ClassB.class, jd);
    addClassInfo(newClassInfoMap, DirectDescendant.class, jd);
    addClassInfo(newClassInfoMap, InheritanceRoot.class, jd);
    // Make B look like A
    ClassInfo a = oldClassInfoMap.get("org/semver/jardiff/ClassInheritanceTest$ClassA");
    ClassInfo b = newClassInfoMap.get("org/semver/jardiff/ClassInheritanceTest$ClassB");
    newClassInfoMap.put(a.getName(), new ClassInfo(b.getVersion(), b.getAccess(), a.getName(), b.getSignature(), b.getSupername(), b.getInterfaces(), b.getMethodMap(), b.getFieldMap()));
    newClassInfoMap.remove(b.getName());
    DifferenceAccumulatingHandler handler = new DifferenceAccumulatingHandler();
    jd.diff(handler, new SimpleDiffCriteria(), "0.1.0", "0.2.0", oldClassInfoMap, newClassInfoMap);
    for (Delta.Difference d : handler.getDelta().getDifferences()) {
        System.err.println(d.getClassName() + " : " + d.getClass().getName() + " : " + d.getInfo().getName() + " : " + d.getInfo().getAccessType());
        if (d instanceof Change) {
            System.err.println("  : " + ((Change) d).getModifiedInfo().getName());
        }
    }
    Assert.assertEquals("differences found", 1, handler.getDelta().getDifferences().size());
}
Also used : HashMap(java.util.HashMap) Delta(org.semver.Delta) JarDiff(org.osjava.jardiff.JarDiff) SimpleDiffCriteria(org.osjava.jardiff.SimpleDiffCriteria) Change(org.semver.Delta.Change) ClassInfo(org.osjava.jardiff.ClassInfo) Test(org.junit.Test)

Example 3 with ClassInfo

use of org.osjava.jardiff.ClassInfo in project semantic-versioning by jeluard.

the class DeprecateDetectionTest method shouldInheritedMethodMatchImplementedMethod.

@Test
public void shouldInheritedMethodMatchImplementedMethod() throws Exception {
    /**
     * The situation we are testing is as follows:
     * Abstract class InheritanceRoot is initially implemented directly by ClassA.
     * ClassA is later modified to extend another implementation of InheritanceRoot
     * and the methods required by InheritanceRoot are now removed from ClassA directly,
     * and instead inherited from the new parent, DirectDescendant. For the purposes of
     * this test, this new ClassA is represented by ClassB (as we can't have the same
     * class declared twice in a test -- in real life, this would both be ClassA's,
     * in different jars).
     */
    Map<String, ClassInfo> oldClassInfoMap = new HashMap<String, ClassInfo>();
    Map<String, ClassInfo> newClassInfoMap = new HashMap<String, ClassInfo>();
    JarDiff jd = new JarDiff();
    addClassInfo(oldClassInfoMap, ClassA.class, jd);
    addClassInfo(oldClassInfoMap, DirectDescendant.class, jd);
    addClassInfo(oldClassInfoMap, InheritanceRoot.class, jd);
    addClassInfo(newClassInfoMap, ClassB.class, jd);
    addClassInfo(newClassInfoMap, DirectDescendant.class, jd);
    addClassInfo(newClassInfoMap, InheritanceRoot.class, jd);
    // Make B look like A
    newClassInfoMap.put("org/semver/jardiff/DeprecateDetectionTest$ClassA", newClassInfoMap.get("org/semver/jardiff/DeprecateDetectionTest$ClassB"));
    newClassInfoMap.remove("org/semver/jardiff/DeprecateDetectionTest$ClassB");
    DifferenceAccumulatingHandler handler = new DifferenceAccumulatingHandler();
    jd.diff(handler, new SimpleDiffCriteria(), "0.1.0", "0.2.0", oldClassInfoMap, newClassInfoMap);
    Dumper.dump(handler.getDelta());
    Set<Difference> differences = handler.getDelta().getDifferences();
    Assert.assertEquals("differences found", 3, differences.size());
    // Naive search for Deprecate.
    boolean hasDeprecate = false;
    for (Difference d : differences) {
        if (d instanceof Deprecate)
            hasDeprecate = true;
    }
    Assert.assertTrue("No Delta.Deprecate found", hasDeprecate);
}
Also used : HashMap(java.util.HashMap) Deprecate(org.semver.Delta.Deprecate) JarDiff(org.osjava.jardiff.JarDiff) SimpleDiffCriteria(org.osjava.jardiff.SimpleDiffCriteria) Difference(org.semver.Delta.Difference) ClassInfo(org.osjava.jardiff.ClassInfo) Test(org.junit.Test)

Example 4 with ClassInfo

use of org.osjava.jardiff.ClassInfo in project semantic-versioning by jeluard.

the class DeprecateDetectionTest method addClassInfo.

private void addClassInfo(Map<String, ClassInfo> classMap, Class klass, JarDiff jd) throws Exception {
    ClassInfo classInfo = jd.loadClassInfo(new ClassReader(klass.getName()));
    classMap.put(classInfo.getName(), classInfo);
}
Also used : ClassReader(org.objectweb.asm.ClassReader) ClassInfo(org.osjava.jardiff.ClassInfo)

Aggregations

ClassInfo (org.osjava.jardiff.ClassInfo)4 HashMap (java.util.HashMap)2 Test (org.junit.Test)2 ClassReader (org.objectweb.asm.ClassReader)2 JarDiff (org.osjava.jardiff.JarDiff)2 SimpleDiffCriteria (org.osjava.jardiff.SimpleDiffCriteria)2 Delta (org.semver.Delta)1 Change (org.semver.Delta.Change)1 Deprecate (org.semver.Delta.Deprecate)1 Difference (org.semver.Delta.Difference)1