summaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/tests/design/DeclarativeTestBase.java
blob: 3e8e4dccd6b4830ac377eb2d769f49f785f9ef91 (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * Copyright 2000-2016 Vaadin Ltd.
 *
 * 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 com.vaadin.tests.design;

import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import org.junit.Assert;

import com.vaadin.shared.Connector;
import com.vaadin.ui.Component;
import com.vaadin.ui.Flash;

public abstract class DeclarativeTestBase<T extends Component>
        extends DeclarativeTestBaseBase<T> {

    private static final boolean debug = false;

    private final Map<Class<?>, EqualsAsserter<?>> comparators = new HashMap<>();
    private static final EqualsAsserter standardEqualsComparator = (EqualsAsserter<Object>) Assert::assertEquals;

    public class IntrospectorEqualsAsserter<C> implements EqualsAsserter<C> {

        private final Class<C> c;

        public IntrospectorEqualsAsserter(Class<C> c) {
            this.c = c;
        }

        @Override
        public void assertObjectEquals(C o1, C o2) {
            try {
                BeanInfo bi = Introspector.getBeanInfo(c);
                for (PropertyDescriptor pd : bi.getPropertyDescriptors()) {
                    Method readMethod = pd.getReadMethod();
                    Method writeMethod = pd.getWriteMethod();
                    if (readMethod == null || writeMethod == null) {
                        continue;
                    }
                    // Needed to access public properties inherited from a
                    // nonpublic superclass, see #17425
                    readMethod.setAccessible(true);
                    writeMethod.setAccessible(true);
                    if (Connector.class.isAssignableFrom(c)
                            && readMethod.getName().equals("getParent")) {
                        // Hack to break cycles in the connector hierarchy
                        continue;
                    }
                    try {
                        c.getDeclaredMethod(readMethod.getName());
                    } catch (Exception e) {
                        // Not declared in this class, will be tested by parent
                        // class tester
                        if (debug) {
                            System.out.println("Skipped " + c.getSimpleName()
                                    + "." + readMethod.getName());
                        }
                        continue;
                    }

                    if (debug) {
                        System.out.println("Testing " + c.getSimpleName() + "."
                                + readMethod.getName());
                    }
                    Object v1 = readMethod.invoke(o1);
                    Object v2 = readMethod.invoke(o2);
                    assertEquals(pd.getDisplayName(), v1, v2);
                }
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    }

    {
        comparators.put(Flash.class,
                new IntrospectorEqualsAsserter<Flash>(Flash.class) {
                    @Override
                    public void assertObjectEquals(Flash o1, Flash o2) {
                        super.assertObjectEquals(o1, o2);
                        assertEquals("parameterNames", o1.getParameterNames(),
                                o2.getParameterNames());
                        for (String name : o1.getParameterNames()) {
                            assertEquals("Parameter " + name,
                                    o1.getParameter(name),
                                    o2.getParameter(name));
                        }
                    }
                });
    }

    @Override
    protected EqualsAsserter getComparator(Class c) {
        com.vaadin.tests.design.DeclarativeTestBaseBase.EqualsAsserter<?> comp = comparators
                .get(c);
        if (comp == null) {
            if (c.isEnum()) {
                return standardEqualsComparator;
            }
            if (debug) {
                System.out.println("No comparator found for " + c.getName()
                        + ". Using introspector.");
            }
            return new IntrospectorEqualsAsserter<>(c);
        }
        return comp;
    }
}