848a1b33fc6f2921cbc0315140a3583e00fe540b
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / yangtools / sal / binding / generator / impl / UnionTypeDefTest.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 package org.opendaylight.yangtools.sal.binding.generator.impl;
9
10 import static org.junit.Assert.assertFalse;
11 import static org.junit.Assert.assertNotNull;
12
13 import java.io.File;
14 import java.util.List;
15 import org.junit.Test;
16 import org.opendaylight.yangtools.sal.binding.generator.api.BindingGenerator;
17 import org.opendaylight.yangtools.sal.binding.model.api.Type;
18 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
19
20 public class UnionTypeDefTest {
21
22     @Test
23     public void unionTypeResolvingTest() throws Exception {
24         File abstractTopology = new File(getClass().getResource("/union-test-models/abstract-topology.yang").toURI());
25         File ietfInetTypes = new File(getClass().getResource("/ietf/ietf-inet-types.yang").toURI());
26         final SchemaContext context = TestUtils.parseYangSources(abstractTopology, ietfInetTypes);
27
28         assertNotNull("context is null", context);
29         final BindingGenerator bindingGen = new BindingGeneratorImpl(true);
30         final List<Type> genTypes = bindingGen.generateTypes(context);
31
32         assertNotNull("genTypes is null", genTypes);
33         assertFalse("genTypes is empty", genTypes.isEmpty());
34
35         // TODO: implement test
36     }
37 }