BUG-4688: eliminate SimpleDateFormatUtil.DEFAULT_DATE_REV
[yangtools.git] / yang / yang-parser-impl / 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.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.junit.Assert.assertNull;
13 import static org.junit.Assert.assertTrue;
14
15 import com.google.common.collect.ImmutableSet;
16 import org.junit.Test;
17 import org.opendaylight.yangtools.yang.common.QName;
18 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
19 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
20 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
21 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
22 import org.opendaylight.yangtools.yang.model.util.SchemaContextUtil;
23
24 public class Bug8922Test {
25     private static final String NS = "foo";
26
27     @Test
28     public void testAllFeaturesSupported() throws Exception {
29         final SchemaContext context = StmtTestUtils.parseYangSource("/bugs/bug8922/foo.yang");
30         assertNotNull(context);
31         final SchemaNode findNode = findNode(context, qN("target"), qN("my-con"));
32         assertTrue(findNode instanceof ContainerSchemaNode);
33         assertEquals("New description", ((ContainerSchemaNode) findNode).getDescription());
34     }
35
36     @Test
37     public void testNoFeatureSupported() throws Exception {
38         final SchemaContext context = StmtTestUtils.parseYangSource("/bugs/bug8922/foo.yang", ImmutableSet.of());
39         assertNotNull(context);
40         final SchemaNode findNode = findNode(context, qN("target"), qN("my-con"));
41         assertNull(findNode);
42         assertTrue(context.getAvailableAugmentations().isEmpty());
43     }
44
45     private static SchemaNode findNode(final SchemaContext context, final QName... qNames) {
46         return SchemaContextUtil.findDataSchemaNode(context, SchemaPath.create(true, qNames));
47     }
48
49     private static QName qN(final String localName) {
50         return QName.create(NS, localName);
51     }
52 }