summaryrefslogtreecommitdiffstats
path: root/container-jersey2/src/test/java/com/yahoo/container/servlet/jersey/classvisitor/ResourceOrProviderClassVisitorTest.java
blob: 1f5ccf4bb104efb42ce281961843e7fdb8930d42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.servlet.jersey.classvisitor;

import com.yahoo.container.servlet.jersey.ResourceOrProviderClassVisitor;
import org.junit.Test;
import org.objectweb.asm.ClassReader;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

public class ResourceOrProviderClassVisitorTest {
    @Test
    public void resource_is_detected() throws Exception {
        assert_is_accepted(com.yahoo.container.servlet.jersey.classvisitor.Resource.class);
    }

    @Test
    public void provider_is_detected() throws Exception {
        assert_is_accepted(com.yahoo.container.servlet.jersey.classvisitor.Provider.class);
    }

    @Test
    public void inner_class_is_ignored() throws Exception {
        assert_is_ignored(com.yahoo.container.servlet.jersey.classvisitor.InnerClass.Inner.class);
    }

    @Test
    public void nested_public_class_is_detected() throws Exception {
        assert_is_accepted(com.yahoo.container.servlet.jersey.classvisitor.NestedClass.Nested.class);
    }

    @Test
    public void nested_non_public_class_is_ignored() throws Exception {
        assert_is_ignored(com.yahoo.container.servlet.jersey.classvisitor.NonPublicNestedClass.Nested.class);
    }

    @Test
    public void resource_with_multiple_annotations_is_detected() throws Exception {
        assert_is_accepted(com.yahoo.container.servlet.jersey.classvisitor.ResourceWithMultipleAnnotations.class);
    }

    @Test
    public void interface_is_ignored() throws Exception {
        assert_is_ignored(com.yahoo.container.servlet.jersey.classvisitor.InterfaceResource.class);
    }

    @Test
    public void abstract_class_is_ignored() throws Exception {
        assert_is_ignored(com.yahoo.container.servlet.jersey.classvisitor.AbstractResource.class);
    }

    @Test
    public void className_is_equal_to_getName() throws Exception {
        assertEquals(com.yahoo.container.servlet.jersey.classvisitor.Resource.class.getName(), analyzeClass(com.yahoo.container.servlet.jersey.classvisitor.Resource.class).getClassName());
    }

    public void assert_is_accepted(Class<?> clazz) throws Exception {
        assertTrue(className(clazz) + " was not accepted",
                analyzeClass(clazz).isJerseyClass());
    }

    public void assert_is_ignored(Class<?> clazz) throws Exception {
        assertFalse(className(clazz) + " was not ignored",
                analyzeClass(clazz).isJerseyClass());
    }

    public ResourceOrProviderClassVisitor analyzeClass(Class<?> clazz) throws Exception {
        return ResourceOrProviderClassVisitor.visit(new ClassReader(className(clazz)));
    }

    public String className(Class<?> clazz) {
        return clazz.getName();
    }
}