Fix checkstyle in yang-parser-impl and enable enforcement
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / yin / YinFileRpcStmtTest.java
1 /*
2  * Copyright (c) 2016 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.yangtools.yang.stmt.yin;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12
13 import java.io.IOException;
14 import java.net.URISyntaxException;
15 import java.util.Set;
16 import org.junit.Before;
17 import org.junit.Test;
18 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
19 import org.opendaylight.yangtools.yang.model.api.Module;
20 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
21 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
23 import org.opendaylight.yangtools.yang.stmt.TestUtils;
24 import org.xml.sax.SAXException;
25
26 public class YinFileRpcStmtTest {
27
28     private SchemaContext context;
29
30     @Before
31     public void init() throws URISyntaxException, ReactorException, SAXException, IOException {
32         context = TestUtils.loadYinModules(getClass().getResource("/semantic-statement-parser/yin/modules").toURI());
33         assertEquals(9, context.getModules().size());
34     }
35
36     @Test
37     public void testRpc() {
38         Module testModule = TestUtils.findModule(context, "ietf-netconf-monitoring").get();
39
40         Set<RpcDefinition> rpcs = testModule.getRpcs();
41         assertEquals(1, rpcs.size());
42
43         RpcDefinition rpc = rpcs.iterator().next();
44         assertEquals("get-schema", rpc.getQName().getLocalName());
45         assertEquals("This operation is used to retrieve a schema from the\n"
46                 + "NETCONF server.\n"
47                 + "\n"
48                 + "Positive Response:\n"
49                 + "The NETCONF server returns the requested schema.\n"
50                 + "\n"
51                 + "Negative Response:\n"
52                 + "If requested schema does not exist, the <error-tag> is\n"
53                 + "'invalid-value'.\n"
54                 + "\n"
55                 + "If more than one schema matches the requested parameters, the\n"
56                 + "<error-tag> is 'operation-failed', and <error-app-tag> is\n"
57                 + "'data-not-unique'.", rpc.getDescription());
58
59         ContainerSchemaNode input = rpc.getInput();
60         assertNotNull(input);
61         assertEquals(3, input.getChildNodes().size());
62
63         ContainerSchemaNode output = rpc.getOutput();
64         assertNotNull(output);
65         assertEquals(1, output.getChildNodes().size());
66     }
67 }