Replace calls of StmtTestUtils.parseYangSource(String)
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug8922Test.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 package org.opendaylight.yangtools.yang.stmt;
9
10 import static org.hamcrest.CoreMatchers.instanceOf;
11 import static org.hamcrest.MatcherAssert.assertThat;
12 import static org.junit.Assert.assertEquals;
13 import static org.junit.Assert.assertNotNull;
14 import static org.junit.Assert.assertTrue;
15
16 import com.google.common.collect.ImmutableSet;
17 import java.util.Optional;
18 import org.junit.Test;
19 import org.opendaylight.yangtools.yang.common.QName;
20 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
21 import org.opendaylight.yangtools.yang.model.api.stmt.FeatureEffectiveStatement;
22
23 public class Bug8922Test extends AbstractYangTest {
24     private static final QName MY_CON = QName.create("foo", "my-con");
25     private static final QName TARGET = QName.create("foo", "target");
26
27     @Test
28     public void testAllFeaturesSupported() {
29         final var context = assertEffectiveModel("/bugs/bug8922/foo.yang");
30         final var findNode = context.findDataTreeChild(TARGET, MY_CON).get();
31         assertThat(findNode, instanceOf(ContainerSchemaNode.class));
32         assertEquals(Optional.of("New description"), findNode.getDescription());
33
34         assertEquals(1, context.findModuleStatements("foo").iterator().next()
35             .streamEffectiveSubstatements(FeatureEffectiveStatement.class).count());
36     }
37
38     @Test
39     public void testNoFeatureSupported() throws Exception {
40         final var context = StmtTestUtils.parseYangSource("/bugs/bug8922/foo.yang", ImmutableSet.of());
41         assertNotNull(context);
42         assertEquals(Optional.empty(), context.findDataTreeChild(TARGET, MY_CON));
43         assertTrue(context.getAvailableAugmentations().isEmpty());
44
45         assertEquals(0, context.findModuleStatements("foo").iterator().next()
46             .streamEffectiveSubstatements(FeatureEffectiveStatement.class).count());
47     }
48 }