Bump mdsal to 4.0.1
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / md / sal / binding / impl / BindingNormalizedCodecTest.java
1 /*
2  * Copyright (c) 2014, 2015 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.controller.md.sal.binding.impl;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12 import static org.junit.Assert.fail;
13
14 import com.google.common.collect.ImmutableBiMap;
15 import com.google.common.collect.ImmutableMap;
16 import com.google.common.collect.ImmutableSet;
17 import com.google.common.collect.ImmutableSetMultimap;
18 import com.google.common.collect.SetMultimap;
19 import com.google.common.util.concurrent.Uninterruptibles;
20 import java.lang.reflect.Method;
21 import java.net.URI;
22 import java.util.Map;
23 import java.util.Set;
24 import java.util.concurrent.CountDownLatch;
25 import java.util.concurrent.TimeUnit;
26 import java.util.concurrent.atomic.AtomicReference;
27 import org.junit.Test;
28 import org.opendaylight.controller.md.sal.binding.test.AbstractSchemaAwareTest;
29 import org.opendaylight.mdsal.binding.dom.codec.impl.BindingNormalizedNodeCodecRegistry;
30 import org.opendaylight.mdsal.binding.generator.impl.GeneratedClassLoadingStrategy;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.augment.rev140709.TreeComplexUsesAugment;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.augment.rev140709.TreeLeafOnlyAugment;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.bi.ba.rpcservice.rev140701.OpendaylightTestRpcServiceService;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.Top;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelList;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelListKey;
37 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
38 import org.opendaylight.yangtools.yang.common.QName;
39 import org.opendaylight.yangtools.yang.common.QNameModule;
40 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
41 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
42 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
43 import org.opendaylight.yangtools.yang.model.api.Module;
44 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
45 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
46 import org.opendaylight.yangtools.yang.model.util.AbstractSchemaContext;
47
48 public class BindingNormalizedCodecTest extends AbstractSchemaAwareTest {
49
50     private static final TopLevelListKey TOP_FOO_KEY = new TopLevelListKey("foo");
51     private static final InstanceIdentifier<TopLevelList> BA_TOP_LEVEL_LIST = InstanceIdentifier
52             .builder(Top.class).child(TopLevelList.class, TOP_FOO_KEY).build();
53     private static final InstanceIdentifier<TreeLeafOnlyAugment> BA_TREE_LEAF_ONLY =
54             BA_TOP_LEVEL_LIST.augmentation(TreeLeafOnlyAugment.class);
55     private static final InstanceIdentifier<TreeComplexUsesAugment> BA_TREE_COMPLEX_USES =
56             BA_TOP_LEVEL_LIST.augmentation(TreeComplexUsesAugment.class);
57     private static final QName SIMPLE_VALUE_QNAME = QName.create(TreeComplexUsesAugment.QNAME, "simple-value");
58     private static final QName NAME_QNAME = QName.create(Top.QNAME, "name");
59     private static final YangInstanceIdentifier BI_TOP_LEVEL_LIST = YangInstanceIdentifier.builder()
60             .node(Top.QNAME).node(TopLevelList.QNAME).nodeWithKey(
61                     TopLevelList.QNAME, NAME_QNAME, TOP_FOO_KEY.getName()).build();
62
63
64     private BindingToNormalizedNodeCodec codec;
65     private SchemaContext context;
66
67     @Override
68     protected void setupWithSchema(final SchemaContext schemaContext) {
69         this.context = schemaContext;
70         final BindingNormalizedNodeCodecRegistry registry = new BindingNormalizedNodeCodecRegistry();
71         this.codec = new BindingToNormalizedNodeCodec(GeneratedClassLoadingStrategy.getTCCLClassLoadingStrategy(),
72                 registry, true);
73     }
74
75     @Test
76     public void testComplexAugmentationSerialization() {
77         this.codec.onGlobalContextUpdated(this.context);
78         final PathArgument lastArg = this.codec.toYangInstanceIdentifier(BA_TREE_COMPLEX_USES).getLastPathArgument();
79         assertTrue(lastArg instanceof AugmentationIdentifier);
80     }
81
82
83     @Test
84     public void testLeafOnlyAugmentationSerialization() {
85         this.codec.onGlobalContextUpdated(this.context);
86         final PathArgument leafOnlyLastArg = this.codec.toYangInstanceIdentifier(BA_TREE_LEAF_ONLY)
87                 .getLastPathArgument();
88         assertTrue(leafOnlyLastArg instanceof AugmentationIdentifier);
89         assertTrue(((AugmentationIdentifier) leafOnlyLastArg).getPossibleChildNames().contains(SIMPLE_VALUE_QNAME));
90     }
91
92     @Test
93     @SuppressWarnings("checkstyle:IllegalCatch")
94     public void testToYangInstanceIdentifierBlocking() {
95         this.codec.onGlobalContextUpdated(new EmptySchemaContext());
96
97         final CountDownLatch done = new CountDownLatch(1);
98         final AtomicReference<YangInstanceIdentifier> yangId = new AtomicReference<>();
99         final AtomicReference<RuntimeException> error = new AtomicReference<>();
100
101         new Thread(() -> {
102             try {
103                 yangId.set(BindingNormalizedCodecTest.this.codec.toYangInstanceIdentifierBlocking(BA_TOP_LEVEL_LIST));
104             } catch (RuntimeException e) {
105                 error.set(e);
106             } finally {
107                 done.countDown();
108             }
109         }).start();
110
111         Uninterruptibles.sleepUninterruptibly(500, TimeUnit.MILLISECONDS);
112         this.codec.onGlobalContextUpdated(this.context);
113
114         assertEquals("toYangInstanceIdentifierBlocking completed", true,
115                 Uninterruptibles.awaitUninterruptibly(done, 3, TimeUnit.SECONDS));
116         if (error.get() != null) {
117             throw error.get();
118         }
119
120         assertEquals("toYangInstanceIdentifierBlocking", BI_TOP_LEVEL_LIST, yangId.get());
121     }
122
123     @Test
124     public void testGetRpcMethodToSchemaPathWithNoInitialSchemaContext() {
125         testGetRpcMethodToSchemaPath();
126     }
127
128     @Test
129     public void testGetRpcMethodToSchemaPathBlocking() {
130         this.codec.onGlobalContextUpdated(new EmptySchemaContext());
131         testGetRpcMethodToSchemaPath();
132     }
133
134     @SuppressWarnings("checkstyle:IllegalCatch")
135     private void testGetRpcMethodToSchemaPath() {
136         final CountDownLatch done = new CountDownLatch(1);
137         final AtomicReference<ImmutableBiMap<Method, SchemaPath>> retMap = new AtomicReference<>();
138         final AtomicReference<RuntimeException> error = new AtomicReference<>();
139         new Thread(() -> {
140             try {
141                 retMap.set(BindingNormalizedCodecTest.this.codec.getRpcMethodToSchemaPath(
142                         OpendaylightTestRpcServiceService.class));
143             } catch (RuntimeException e) {
144                 error.set(e);
145             } finally {
146                 done.countDown();
147             }
148         }).start();
149
150         Uninterruptibles.sleepUninterruptibly(500, TimeUnit.MILLISECONDS);
151         this.codec.onGlobalContextUpdated(this.context);
152
153         assertEquals("getRpcMethodToSchemaPath completed", true,
154                 Uninterruptibles.awaitUninterruptibly(done, 3, TimeUnit.SECONDS));
155         if (error.get() != null) {
156             throw error.get();
157         }
158
159         for (final Method method: retMap.get().keySet()) {
160             if (method.getName().equals("rockTheHouse")) {
161                 return;
162             }
163         }
164
165         fail("rockTheHouse RPC method not found");
166     }
167
168     static class EmptySchemaContext extends AbstractSchemaContext {
169         @Override
170         public Set<Module> getModules() {
171             return ImmutableSet.of();
172         }
173
174         @Override
175         protected Map<QNameModule, Module> getModuleMap() {
176             return ImmutableMap.of();
177         }
178
179         @Override
180         protected SetMultimap<URI, Module> getNamespaceToModules() {
181             return ImmutableSetMultimap.of();
182         }
183
184         @Override
185         protected SetMultimap<String, Module> getNameToModules() {
186             return ImmutableSetMultimap.of();
187         }
188     }
189 }