Remove deprecated Yin/YangStatementSourceImpl
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / ConstraintDefinitionsTest.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
9 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertFalse;
13 import static org.junit.Assert.assertNotEquals;
14 import static org.junit.Assert.assertNotNull;
15 import static org.junit.Assert.assertTrue;
16
17 import java.io.IOException;
18 import java.net.URISyntaxException;
19 import java.text.ParseException;
20 import org.junit.Test;
21 import org.opendaylight.yangtools.yang.common.QName;
22 import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil;
23 import org.opendaylight.yangtools.yang.data.util.ConstraintDefinitions;
24 import org.opendaylight.yangtools.yang.model.api.ConstraintDefinition;
25 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
26 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
27 import org.opendaylight.yangtools.yang.model.api.Module;
28 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
29 import org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException;
30 import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
31 import org.opendaylight.yangtools.yang.parser.rfc6020.repo.YangStatementStreamSource;
32 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
33 import org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor;
34 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangInferencePipeline;
35
36 public class ConstraintDefinitionsTest {
37
38     @Test
39     public void testConstraintDefinitions() throws ParseException, ReactorException, URISyntaxException, IOException,
40             YangSyntaxErrorException {
41         final CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR.newBuild();
42
43         reactor.addSource(YangStatementStreamSource.create(
44             YangTextSchemaSource.forResource("/constraint-definitions-test/foo.yang")));
45         final SchemaContext schemaContext = reactor.buildEffective();
46         assertNotNull(schemaContext);
47
48         final Module testModule = schemaContext.findModuleByName("foo",
49             SimpleDateFormatUtil.getRevisionFormat().parse("2016-09-20"));
50         assertNotNull(testModule);
51
52         final LeafSchemaNode mandatoryLeaf1 = (LeafSchemaNode) testModule.getDataChildByName(
53                 QName.create(testModule.getQNameModule(), "mandatory-leaf-1"));
54         assertNotNull(mandatoryLeaf1);
55         ConstraintDefinition constraints1 = mandatoryLeaf1.getConstraints();
56
57         final LeafSchemaNode mandatoryLeaf2 = (LeafSchemaNode) testModule.getDataChildByName(
58                 QName.create(testModule.getQNameModule(), "mandatory-leaf-2"));
59         assertNotNull(mandatoryLeaf2);
60         ConstraintDefinition constraints2 = mandatoryLeaf2.getConstraints();
61
62         assertEquals(ConstraintDefinitions.hashCode(constraints1), ConstraintDefinitions.hashCode(constraints2));
63         assertTrue(ConstraintDefinitions.equals(constraints1, constraints2));
64
65         assertTrue(ConstraintDefinitions.equals(constraints1, constraints1));
66         assertFalse(ConstraintDefinitions.equals(constraints1, "str"));
67
68         final LeafSchemaNode mandatoryLeaf3 = (LeafSchemaNode) testModule.getDataChildByName(
69                 QName.create(testModule.getQNameModule(), "mandatory-leaf-3"));
70         assertNotNull(mandatoryLeaf3);
71         ConstraintDefinition constraints3 = mandatoryLeaf3.getConstraints();
72
73         assertNotEquals(ConstraintDefinitions.hashCode(constraints2), ConstraintDefinitions.hashCode(constraints3));
74         assertFalse(ConstraintDefinitions.equals(constraints2, constraints3));
75
76         final LeafSchemaNode mandatoryLeaf4 = (LeafSchemaNode) testModule.getDataChildByName(
77                 QName.create(testModule.getQNameModule(), "mandatory-leaf-4"));
78         assertNotNull(mandatoryLeaf4);
79         ConstraintDefinition constraints4 = mandatoryLeaf4.getConstraints();
80
81         assertNotEquals(ConstraintDefinitions.hashCode(constraints3), ConstraintDefinitions.hashCode(constraints4));
82         assertFalse(ConstraintDefinitions.equals(constraints3, constraints4));
83
84         final LeafSchemaNode mandatoryLeaf5 = (LeafSchemaNode) testModule.getDataChildByName(
85                 QName.create(testModule.getQNameModule(), "mandatory-leaf-5"));
86         assertNotNull(mandatoryLeaf5);
87         final ConstraintDefinition constraints5 = mandatoryLeaf5.getConstraints();
88
89         assertNotEquals(ConstraintDefinitions.hashCode(constraints4), ConstraintDefinitions.hashCode(constraints5));
90         assertFalse(ConstraintDefinitions.equals(constraints4, constraints5));
91
92         final LeafListSchemaNode constrainedLeafList1 = (LeafListSchemaNode) testModule.getDataChildByName(
93                 QName.create(testModule.getQNameModule(), "constrained-leaf-list-1"));
94         assertNotNull(constrainedLeafList1);
95         constraints1 = constrainedLeafList1.getConstraints();
96
97         final LeafListSchemaNode constrainedLeafList2 = (LeafListSchemaNode) testModule.getDataChildByName(
98                 QName.create(testModule.getQNameModule(), "constrained-leaf-list-2"));
99         assertNotNull(constrainedLeafList2);
100         constraints2 = constrainedLeafList2.getConstraints();
101
102         assertEquals(ConstraintDefinitions.hashCode(constraints1), ConstraintDefinitions.hashCode(constraints2));
103         assertTrue(ConstraintDefinitions.equals(constraints1, constraints2));
104
105         final LeafListSchemaNode constrainedLeafList3 = (LeafListSchemaNode) testModule.getDataChildByName(
106                 QName.create(testModule.getQNameModule(), "constrained-leaf-list-3"));
107         assertNotNull(constrainedLeafList3);
108         constraints3 = constrainedLeafList3.getConstraints();
109
110         assertNotEquals(ConstraintDefinitions.hashCode(constraints2), ConstraintDefinitions.hashCode(constraints3));
111         assertFalse(ConstraintDefinitions.equals(constraints2, constraints3));
112
113         final LeafListSchemaNode constrainedLeafList4 = (LeafListSchemaNode) testModule.getDataChildByName(
114                 QName.create(testModule.getQNameModule(), "constrained-leaf-list-4"));
115         assertNotNull(constrainedLeafList4);
116         constraints4 = constrainedLeafList4.getConstraints();
117
118         assertNotEquals(ConstraintDefinitions.hashCode(constraints3), ConstraintDefinitions.hashCode(constraints4));
119         assertFalse(ConstraintDefinitions.equals(constraints3, constraints4));
120
121         final String constraintsString = ConstraintDefinitions.toString(constraints4);
122         assertEquals("EffectiveConstraintDefinitionImpl{whenCondition=foo = 'bar', mustConstraints=[bar != 'foo'], "
123                 + "mandatory=true, minElements=50, maxElements=100}", constraintsString);
124     }
125 }