BUG-868: remove InstanceIdentifier.getPath() users
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / URITest.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.restconf.impl.test;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.junit.Assert.assertTrue;
13 import static org.mockito.Matchers.any;
14 import static org.mockito.Mockito.mock;
15 import static org.mockito.Mockito.when;
16
17 import com.google.common.collect.Iterables;
18
19 import java.io.FileNotFoundException;
20 import java.util.Set;
21
22 import org.junit.BeforeClass;
23 import org.junit.Rule;
24 import org.junit.Test;
25 import org.junit.rules.ExpectedException;
26 import org.opendaylight.controller.sal.core.api.mount.MountInstance;
27 import org.opendaylight.controller.sal.core.api.mount.MountService;
28 import org.opendaylight.controller.sal.restconf.impl.BrokerFacade;
29 import org.opendaylight.controller.sal.restconf.impl.ControllerContext;
30 import org.opendaylight.controller.sal.restconf.impl.InstanceIdWithSchemaNode;
31 import org.opendaylight.controller.sal.restconf.impl.RestconfDocumentedException;
32 import org.opendaylight.controller.sal.restconf.impl.RestconfImpl;
33 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
34 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
35 import org.opendaylight.yangtools.yang.model.api.Module;
36 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
37
38 public class URITest {
39
40     private static final ControllerContext controllerContext = ControllerContext.getInstance();
41
42     @Rule
43     public ExpectedException exception = ExpectedException.none();
44
45     @BeforeClass
46     public static void init() throws FileNotFoundException {
47         Set<Module> allModules = TestUtils.loadModulesFrom("/full-versions/yangs");
48         assertNotNull(allModules);
49         SchemaContext schemaContext = TestUtils.loadSchemaContext(allModules);
50         controllerContext.setSchemas(schemaContext);
51     }
52
53     @Test
54     public void testToInstanceIdentifierList() throws FileNotFoundException {
55         InstanceIdWithSchemaNode instanceIdentifier = controllerContext
56                 .toInstanceIdentifier("simple-nodes:userWithoutClass/foo");
57         assertEquals(instanceIdentifier.getSchemaNode().getQName().getLocalName(), "userWithoutClass");
58
59         instanceIdentifier = controllerContext.toInstanceIdentifier("simple-nodes:userWithoutClass/foo");
60         assertEquals(instanceIdentifier.getSchemaNode().getQName().getLocalName(), "userWithoutClass");
61
62         instanceIdentifier = controllerContext.toInstanceIdentifier("simple-nodes:user/foo/boo");
63         assertEquals(instanceIdentifier.getSchemaNode().getQName().getLocalName(), "user");
64
65         instanceIdentifier = controllerContext.toInstanceIdentifier("simple-nodes:user//boo");
66         assertEquals(instanceIdentifier.getSchemaNode().getQName().getLocalName(), "user");
67
68     }
69
70     @Test
71     public void testToInstanceIdentifierListWithNullKey() {
72         exception.expect(RestconfDocumentedException.class);
73         controllerContext.toInstanceIdentifier("simple-nodes:user/null/boo");
74     }
75
76     @Test
77     public void testToInstanceIdentifierListWithMissingKey() {
78         exception.expect(RestconfDocumentedException.class);
79         controllerContext.toInstanceIdentifier("simple-nodes:user/foo");
80     }
81
82     @Test
83     public void testToInstanceIdentifierContainer() throws FileNotFoundException {
84         InstanceIdWithSchemaNode instanceIdentifier = controllerContext.toInstanceIdentifier("simple-nodes:users");
85         assertEquals(instanceIdentifier.getSchemaNode().getQName().getLocalName(), "users");
86         assertTrue(instanceIdentifier.getSchemaNode() instanceof ContainerSchemaNode);
87         assertEquals(2, ((ContainerSchemaNode) instanceIdentifier.getSchemaNode()).getChildNodes().size());
88     }
89
90     @Test
91     public void testToInstanceIdentifierChoice() throws FileNotFoundException {
92         InstanceIdWithSchemaNode instanceIdentifier = controllerContext
93                 .toInstanceIdentifier("simple-nodes:food/nonalcoholic");
94         assertEquals(instanceIdentifier.getSchemaNode().getQName().getLocalName(), "nonalcoholic");
95     }
96
97     @Test
98     public void testToInstanceIdentifierChoiceException() {
99         exception.expect(RestconfDocumentedException.class);
100         controllerContext.toInstanceIdentifier("simple-nodes:food/snack");
101     }
102
103     @Test
104     public void testToInstanceIdentifierCaseException() {
105         exception.expect(RestconfDocumentedException.class);
106         controllerContext.toInstanceIdentifier("simple-nodes:food/sports-arena");
107     }
108
109     @Test
110     public void testToInstanceIdentifierChoiceCaseException() {
111         exception.expect(RestconfDocumentedException.class);
112         controllerContext.toInstanceIdentifier("simple-nodes:food/snack/sports-arena");
113     }
114
115     @Test
116     public void testToInstanceIdentifierWithoutNode() {
117         exception.expect(RestconfDocumentedException.class);
118         controllerContext.toInstanceIdentifier("simple-nodes");
119     }
120
121     @Test
122     public void testMountPointWithExternModul() throws FileNotFoundException {
123         initMountService(true);
124         InstanceIdWithSchemaNode instanceIdentifier = controllerContext
125                 .toInstanceIdentifier("simple-nodes:users/yang-ext:mount/test-interface2:class/student/name");
126         assertEquals(
127                 "[(urn:ietf:params:xml:ns:yang:test-interface2?revision=2014-08-01)class, (urn:ietf:params:xml:ns:yang:test-interface2?revision=2014-08-01)student[{(urn:ietf:params:xml:ns:yang:test-interface2?revision=2014-08-01)name=name}]]",
128                 instanceIdentifier.getInstanceIdentifier().getPath().toString());
129     }
130
131     @Test
132     public void testMountPointWithoutExternModul() throws FileNotFoundException {
133         initMountService(true);
134         InstanceIdWithSchemaNode instanceIdentifier = controllerContext
135                 .toInstanceIdentifier("simple-nodes:users/yang-ext:mount/");
136         assertTrue(Iterables.isEmpty(instanceIdentifier.getInstanceIdentifier().getPathArguments()));
137     }
138
139     @Test
140     public void testMountPointWithoutMountService() throws FileNotFoundException {
141         exception.expect(RestconfDocumentedException.class);
142
143         controllerContext.setMountService(null);
144         InstanceIdWithSchemaNode instanceIdentifier = controllerContext
145                 .toInstanceIdentifier("simple-nodes:users/yang-ext:mount/test-interface2:class/student/name");
146     }
147
148     @Test
149     public void testMountPointWithoutMountPointSchema() {
150         initMountService(false);
151         exception.expect(RestconfDocumentedException.class);
152
153         InstanceIdWithSchemaNode instanceIdentifier = controllerContext
154                 .toInstanceIdentifier("simple-nodes:users/yang-ext:mount/test-interface2:class");
155     }
156
157     public void initMountService(final boolean withSchema) {
158         MountService mountService = mock(MountService.class);
159         controllerContext.setMountService(mountService);
160         BrokerFacade brokerFacade = mock(BrokerFacade.class);
161         RestconfImpl restconfImpl = RestconfImpl.getInstance();
162         restconfImpl.setBroker(brokerFacade);
163         restconfImpl.setControllerContext(controllerContext);
164
165         Set<Module> modules2 = TestUtils.loadModulesFrom("/test-config-data/yang2");
166         SchemaContext schemaContext2 = TestUtils.loadSchemaContext(modules2);
167         MountInstance mountInstance = mock(MountInstance.class);
168         if (withSchema) {
169             when(mountInstance.getSchemaContext()).thenReturn(schemaContext2);
170         } else {
171             when(mountInstance.getSchemaContext()).thenReturn(null);
172         }
173         when(mountService.getMountPoint(any(InstanceIdentifier.class))).thenReturn(mountInstance);
174     }
175 }