Bump to odlparent-9.0.0/yangtools-7.0.1-SNAPSHOT
[mdsal.git] / binding / mdsal-binding-dom-codec / src / test / java / org / opendaylight / mdsal / binding / dom / codec / impl / Bug5845booleanKeyTest.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.mdsal.binding.dom.codec.impl;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import java.util.Collections;
13 import org.junit.Test;
14 import org.opendaylight.mdsal.binding.dom.codec.api.BindingDataObjectCodecTreeNode;
15 import org.opendaylight.yang.gen.v1.urn.yang.foo.rev160101.BooleanContainer;
16 import org.opendaylight.yang.gen.v1.urn.yang.foo.rev160101.BooleanContainerBuilder;
17 import org.opendaylight.yang.gen.v1.urn.yang.foo.rev160101._boolean.container.BooleanListBuilder;
18 import org.opendaylight.yang.gen.v1.urn.yang.foo.rev160101._boolean.container.BooleanListIntBuilder;
19 import org.opendaylight.yang.gen.v1.urn.yang.foo.rev160101._boolean.container.BooleanListIntKey;
20 import org.opendaylight.yang.gen.v1.urn.yang.foo.rev160101._boolean.container.BooleanListKey;
21 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
22 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
23
24 public class Bug5845booleanKeyTest extends AbstractBindingCodecTest {
25     @Test
26     public void testBug5845() throws Exception {
27         final BooleanListKey blk = new BooleanListKey(true, true);
28         final BooleanContainer booleanContainer = new BooleanContainerBuilder()
29                 .setBooleanList(Collections.singletonMap(blk, new BooleanListBuilder()
30                     .withKey(blk)
31                     .setBooleanLeaf1(true)
32                     .setBooleanLeaf2(true)
33                     .build()))
34                 .build();
35
36         final BooleanListIntKey blik = new BooleanListIntKey((byte) 1);
37         final BooleanContainer booleanContainerInt = new BooleanContainerBuilder()
38                 .setBooleanListInt(Collections.singletonMap(blik, new BooleanListIntBuilder()
39                         .withKey(blik)
40                         .setBooleanLeafInt((byte) 1)
41                         .build()))
42                 .build();
43
44         final BindingDataObjectCodecTreeNode<BooleanContainer> subtreeCodec = codecContext.getSubtreeCodec(
45                 InstanceIdentifier.create(BooleanContainer.class));
46         final NormalizedNode serializedInt = subtreeCodec.serialize(booleanContainerInt);
47         assertNotNull(serializedInt);
48         final NormalizedNode serialized = subtreeCodec.serialize(booleanContainer);
49         assertNotNull(serialized);
50     }
51 }