0345beab950ab9f0c08ccb26744c61376f4195e3
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / java / org / opendaylight / controller / sal / restconf / impl / json / to / nn / test / JsonIdentityrefToNnTest.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.json.to.nn.test;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12
13 import java.io.InputStream;
14 import javax.ws.rs.core.MediaType;
15 import org.junit.BeforeClass;
16 import org.junit.Test;
17 import org.opendaylight.controller.sal.rest.impl.test.providers.AbstractBodyReaderTest;
18 import org.opendaylight.netconf.sal.rest.impl.JsonNormalizedNodeBodyReader;
19 import org.opendaylight.restconf.common.context.NormalizedNodeContext;
20 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodes;
21 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
22
23 public class JsonIdentityrefToNnTest extends AbstractBodyReaderTest {
24
25     private final JsonNormalizedNodeBodyReader jsonBodyReader;
26     private static SchemaContext schemaContext;
27
28     public JsonIdentityrefToNnTest() throws NoSuchFieldException,
29             SecurityException {
30         this.jsonBodyReader = new JsonNormalizedNodeBodyReader();
31     }
32
33     @BeforeClass
34     public static void initialize() {
35         schemaContext = schemaContextLoader("/json-to-nn/identityref",
36                 schemaContext);
37         CONTROLLER_CONTEXT.setSchemas(schemaContext);
38     }
39
40     @Test
41     public void jsonIdentityrefToNn() throws Exception {
42
43         final String uri = "identityref-module:cont";
44         mockBodyReader(uri, this.jsonBodyReader, false);
45         final InputStream inputStream = this.getClass().getResourceAsStream(
46                 "/json-to-nn/identityref/json/data.json");
47
48         final NormalizedNodeContext normalizedNodeContext = this.jsonBodyReader.readFrom(
49                 null, null, null, this.mediaType, null, inputStream);
50
51         assertEquals("cont", normalizedNodeContext.getData().getNodeType()
52                 .getLocalName());
53
54         final String dataTree = NormalizedNodes.toStringTree(normalizedNodeContext
55                 .getData());
56
57         assertTrue(dataTree.contains("cont1"));
58         assertTrue(dataTree
59                 .contains("lf11 (identity:module?revision=2013-12-02)iden"));
60         assertTrue(dataTree
61                 .contains("lf12 (identityref:module?revision=2013-12-02)iden_local"));
62         assertTrue(dataTree
63                 .contains("lf13 (identityref:module?revision=2013-12-02)iden_local"));
64         assertTrue(dataTree
65                 .contains("lf14 (identity:module?revision=2013-12-02)iden"));
66     }
67
68     @Override
69     protected MediaType getMediaType() {
70         return null;
71     }
72
73 }