mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Bruno Lavit
07.47.2016 3930bdf7f38e104cdbba6b7127c35966a839ab93
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
 * The contents of this file are subject to the terms of the Common Development and
 * Distribution License (the License). You may not use this file except in compliance with the
 * License.
 *
 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
 * specific language governing permission and limitations under the License.
 *
 * When distributing Covered Software, include this CDDL Header Notice in each file and include
 * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
 * Header, with the fields enclosed by brackets [] replaced by your own identifying
 * information: "Portions Copyright [year] [name of copyright owner]".
 *
 * Copyright 2007-2008 Sun Microsystems, Inc.
 */
 
package org.forgerock.opendj.config;
 
import static org.fest.assertions.Assertions.assertThat;
import static org.testng.Assert.assertEquals;
 
import java.util.Collection;
import java.util.Collections;
 
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
 
@SuppressWarnings({ "javadoc", "unchecked", "rawtypes" })
@Test(singleThreaded = true)
public class AbstractManagedObjectDefinitionTest extends ConfigTestCase {
 
    /** A test managed object definition. */
    private static class ManagedObjectDef extends AbstractManagedObjectDefinition {
 
        protected ManagedObjectDef(String name, AbstractManagedObjectDefinition parent) {
            super(name, parent);
        }
    }
 
    private ManagedObjectDef top = new ManagedObjectDef("topmost", null);
 
    private ManagedObjectDef middle1 = new ManagedObjectDef("middle1", top);
 
    private ManagedObjectDef middle2 = new ManagedObjectDef("middle2", top);
 
    private ManagedObjectDef bottom1 = new ManagedObjectDef("bottom1", middle1);
 
    private ManagedObjectDef bottom2 = new ManagedObjectDef("bottom2", middle1);
 
    private ManagedObjectDef bottom3 = new ManagedObjectDef("bottom3", middle1);
 
    @BeforeClass
    public void setUp() throws Exception {
        TestCfg.setUp();
    }
 
    @AfterClass
    public void tearDown() {
        TestCfg.cleanup();
    }
 
    @DataProvider(name = "isChildOf")
    public Object[][] createIsChildOf() {
        return new Object[][] {
            // child def, parent def, is child of
            { top, top, true },
            { middle1, middle1, true },
            { bottom1, bottom1, true },
            { top, middle1, false },
            { top, bottom1, false },
            { middle1, top, true },
            { bottom1, top, true },
            { bottom1, middle1, true },
        };
    }
 
    @Test(dataProvider = "isChildOf")
    public void testIsChildOf(ManagedObjectDef childDef, ManagedObjectDef parentDef, boolean expectedIsChildOf) {
        assertEquals(childDef.isChildOf(parentDef), expectedIsChildOf);
    }
 
    @DataProvider(name = "isParentOf")
    public Object[][] createIsParentOf() {
        return new Object[][] {
            // parent def, child def, is parent of
            { top, top, true },
            { middle1, middle1, true },
            { bottom1, bottom1, true },
            { top, middle1, true },
            { top, bottom1, true },
            { middle1, top, false },
            { bottom1, top, false },
            { bottom1, middle1, false },
        };
    }
 
    @Test(dataProvider = "isParentOf")
    public void testIsParentOf(ManagedObjectDef parentDef, ManagedObjectDef childDef, boolean expectedIsParentOf) {
        assertEquals(parentDef.isParentOf(childDef), expectedIsParentOf);
    }
 
    @Test
    public void testGetAllChildrenOfTop() {
        Collection<AbstractManagedObjectDefinition> children = top.getAllChildren();
        assertThat(children).hasSize(5);
        assertThat(children).containsOnly(middle1, middle2, bottom1, bottom2, bottom3);
    }
 
    @Test
    public void testGetAllChildrenOfMiddle() {
        Collection<AbstractManagedObjectDefinition> children = middle1.getAllChildren();
        assertThat(children).hasSize(3);
        assertThat(children).containsOnly(bottom1, bottom2, bottom3);
    }
 
    @Test
    public void testGetAllChildrenNoChild() {
        Collection<AbstractManagedObjectDefinition> children = middle2.getAllChildren();
        assertThat(children).isEmpty();
    }
 
    @Test
    public void testGetChildrenTop() {
        Collection<AbstractManagedObjectDefinition> children = top.getChildren();
        assertThat(children).hasSize(2);
        assertThat(children).containsOnly(middle1, middle2);
    }
 
    @Test
    public void testGetChildrenMiddleNoChild() {
        Collection<AbstractManagedObjectDefinition> children = middle2.getChildren();
        assertThat(children).isEmpty();
    }
 
    /** Check default value of "class" property provided for parent. */
    @Test
    public void testPropertyOverrideParent() {
        AbstractManagedObjectDefinition<?, ?> def = TestParentCfgDefn.getInstance();
        PropertyDefinition<?> propertyDef = def.getPropertyDefinition("mandatory-class-property");
        DefaultBehaviorProvider<?> provider = propertyDef.getDefaultBehaviorProvider();
        assertEquals(provider.getClass(), DefinedDefaultBehaviorProvider.class);
 
        DefinedDefaultBehaviorProvider<?> definedProvider = (DefinedDefaultBehaviorProvider<?>) provider;
        assertEquals(definedProvider.getDefaultValues(),
                Collections.singleton("org.opends.server.extensions.SomeVirtualAttributeProvider"));
    }
 
    /** Check default value of "class" property provided for child. */
    @Test
    public void testPropertyOverrideChild() {
        AbstractManagedObjectDefinition<?, ?> def = TestChildCfgDefn.getInstance();
        PropertyDefinition<?> propertyDef = def.getPropertyDefinition("mandatory-class-property");
        DefaultBehaviorProvider<?> provider = propertyDef.getDefaultBehaviorProvider();
        assertEquals(provider.getClass(), DefinedDefaultBehaviorProvider.class);
 
        DefinedDefaultBehaviorProvider<?> definedProvider = (DefinedDefaultBehaviorProvider<?>) provider;
        assertEquals(definedProvider.getDefaultValues(),
                Collections.singleton("org.opends.server.extensions.UserDefinedVirtualAttributeProvider"));
    }
 
    @Test
    public void testGetReverseRelationDefinitions() {
        Collection<RelationDefinition<TestParentCfgClient, TestParentCfg>> parentRelDef =
                TestParentCfgDefn.getInstance().getReverseRelationDefinitions();
 
        assertThat(parentRelDef).hasSize(2);
        assertThat(parentRelDef).contains(TestCfg.getTestOneToManyParentRelationDefinition());
        assertThat(parentRelDef).contains(TestCfg.getTestOneToZeroOrOneParentRelationDefinition());
 
        Collection<RelationDefinition<TestChildCfgClient, TestChildCfg>> childRelDef = TestChildCfgDefn.getInstance()
                .getReverseRelationDefinitions();
 
        assertThat(childRelDef).hasSize(2);
        assertThat(childRelDef).contains(TestParentCfgDefn.getInstance().getTestChildrenRelationDefinition());
        assertThat(childRelDef).contains(TestParentCfgDefn.getInstance().getOptionalTestChildRelationDefinition());
    }
 
    @Test
    public void testGetAllReverseRelationDefinitions() {
        Collection<RelationDefinition<? super TestParentCfgClient, ? super TestParentCfg>> parentRelDef =
                TestParentCfgDefn.getInstance().getAllReverseRelationDefinitions();
 
        assertThat(parentRelDef).hasSize(2);
        assertThat(parentRelDef).contains(TestCfg.getTestOneToManyParentRelationDefinition());
        assertThat(parentRelDef).contains(TestCfg.getTestOneToZeroOrOneParentRelationDefinition());
 
        Collection<RelationDefinition<? super TestChildCfgClient, ? super TestChildCfg>> childRelDef =
                TestChildCfgDefn.getInstance().getAllReverseRelationDefinitions();
 
        assertThat(childRelDef).hasSize(2);
        assertThat(childRelDef).contains(TestParentCfgDefn.getInstance().getTestChildrenRelationDefinition());
        assertThat(childRelDef).contains(TestParentCfgDefn.getInstance().getOptionalTestChildRelationDefinition());
    }
}