8b8d2f04cf7fed6e60974fe4a4bb32b51ddf56a3
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / stmt / rfc7950 / IdentityrefStatementTest.java
1 /*
2  * Copyright (c) 2017 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.rfc7950;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertNotNull;
13 import static org.junit.Assert.assertTrue;
14 import static org.junit.Assert.fail;
15
16 import java.util.Set;
17 import org.junit.Test;
18 import org.opendaylight.yangtools.yang.common.QName;
19 import org.opendaylight.yangtools.yang.common.Revision;
20 import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode;
21 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
22 import org.opendaylight.yangtools.yang.model.api.Module;
23 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
24 import org.opendaylight.yangtools.yang.model.api.type.IdentityrefTypeDefinition;
25 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
26 import org.opendaylight.yangtools.yang.stmt.StmtTestUtils;
27
28 public class IdentityrefStatementTest {
29
30     @Test
31     public void testIdentityrefWithMultipleBaseIdentities() throws Exception {
32         final SchemaContext schemaContext = StmtTestUtils.parseYangSource("/rfc7950/identityref-stmt/foo.yang");
33         assertNotNull(schemaContext);
34
35         final Module foo = schemaContext.findModule("foo", Revision.of("2017-01-11")).get();
36         final Set<IdentitySchemaNode> identities = foo.getIdentities();
37         assertEquals(3, identities.size());
38
39         final LeafSchemaNode idrefLeaf = (LeafSchemaNode) foo.getDataChildByName(QName.create(foo.getQNameModule(),
40                 "idref-leaf"));
41         assertNotNull(idrefLeaf);
42
43         final IdentityrefTypeDefinition idrefType = (IdentityrefTypeDefinition) idrefLeaf.getType();
44         final Set<IdentitySchemaNode> referencedIdentities = idrefType.getIdentities();
45         assertEquals(3, referencedIdentities.size());
46         assertEquals(identities, referencedIdentities);
47         assertEquals("id-a", idrefType.getIdentities().iterator().next().getQName().getLocalName());
48     }
49
50     @Test
51     public void testInvalidYang10() throws Exception {
52         try {
53             StmtTestUtils.parseYangSource("/rfc7950/identityref-stmt/foo10.yang");
54             fail("Test should fail due to invalid Yang 1.0");
55         } catch (final ReactorException e) {
56             assertTrue(e.getCause().getMessage().startsWith("Maximal count of BASE for TYPE is 1, detected 3."));
57         }
58     }
59 }