19bba7b5c97dd834b36158e626e966b578d69238
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / java / org / opendaylight / controller / sal / restconf / impl / json / to / nn / test / JsonLeafrefToNnTest.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.netconf.sal.rest.impl.NormalizedNodeContext;
20 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodes;
21 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
22
23 public class JsonLeafrefToNnTest extends AbstractBodyReaderTest {
24
25     private final JsonNormalizedNodeBodyReader jsonBodyReader;
26     private static EffectiveModelContext schemaContext;
27
28     public JsonLeafrefToNnTest() {
29         super(schemaContext, null);
30         this.jsonBodyReader = new JsonNormalizedNodeBodyReader(controllerContext);
31     }
32
33     @BeforeClass
34     public static void initialize() {
35         schemaContext = schemaContextLoader("/json-to-nn/leafref", schemaContext);
36     }
37
38     @Test
39     public void jsonIdentityrefToNormalizeNode() throws Exception {
40
41         final String uri = "leafref-module:cont";
42         mockBodyReader(uri, this.jsonBodyReader, false);
43         final InputStream inputStream = this.getClass().getResourceAsStream(
44                 "/json-to-nn/leafref/json/data.json");
45
46         final NormalizedNodeContext normalizedNodeContext = this.jsonBodyReader.readFrom(
47                 null, null, null, this.mediaType, null, inputStream);
48
49         assertEquals("cont", normalizedNodeContext.getData().getIdentifier().getNodeType().getLocalName());
50         final String dataTree = NormalizedNodes.toStringTree(normalizedNodeContext.getData());
51         assertTrue(dataTree.contains("lf2 121"));
52     }
53
54     @Override
55     protected MediaType getMediaType() {
56         return null;
57     }
58 }