YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / parser / stmt / rfc7950 / IdentityStatementTest.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.Revision;
19 import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode;
20 import org.opendaylight.yangtools.yang.model.api.Module;
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.StmtTestUtils;
24
25 public class IdentityStatementTest {
26
27     @Test
28     public void testMultipleBaseIdentities() throws Exception {
29         final SchemaContext schemaContext = StmtTestUtils.parseYangSource("/rfc7950/identity-stmt/foo.yang");
30         assertNotNull(schemaContext);
31
32         final Module foo = schemaContext.findModule("foo", Revision.of("2016-12-21")).get();
33         final Set<IdentitySchemaNode> identities = foo.getIdentities();
34         for (final IdentitySchemaNode identity : identities) {
35             if ("derived-id".equals(identity.getQName().getLocalName())) {
36                 final Set<IdentitySchemaNode> baseIdentities = identity.getBaseIdentities();
37                 assertEquals(3, baseIdentities.size());
38             }
39         }
40     }
41
42     @Test
43     public void testInvalidYang10() throws Exception {
44         try {
45             StmtTestUtils.parseYangSource("/rfc7950/identity-stmt/foo10.yang");
46             fail("Test should fail due to invalid Yang 1.0");
47         } catch (final ReactorException e) {
48             assertTrue(e.getCause().getMessage().startsWith("Maximal count of BASE for IDENTITY is 1, detected 3."));
49         }
50     }
51 }