Bug 5085: Clean-up test and retest JUnit tests
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / codecs / Uint8CodecStringTest.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
9 package org.opendaylight.yangtools.yang.data.impl.codecs;
10
11 import static org.junit.Assert.*;
12 import static org.opendaylight.yangtools.yang.data.impl.codecs.TypeDefinitionAwareCodecTestHelper.deserializeWithExpectedIllegalArgEx;
13 import static org.opendaylight.yangtools.yang.data.impl.codecs.TypeDefinitionAwareCodecTestHelper.getCodec;
14
15 import org.junit.Test;
16 import org.opendaylight.yangtools.yang.data.api.codec.Uint8Codec;
17 import org.opendaylight.yangtools.yang.model.util.Uint8;
18
19 /**
20  * Unit tests for Uint8CodecString.
21  *
22  * @author Thomas Pantelis
23  */
24 public class Uint8CodecStringTest {
25
26     @SuppressWarnings({ "unchecked" })
27     @Test
28     public void testSerialize() {
29         Uint8Codec<String> codec = getCodec(Uint8.getInstance(), Uint8Codec.class);
30
31         assertEquals("serialize", "10", codec.serialize(Short.valueOf((short) 10 )));
32         assertEquals("serialize", "", codec.serialize(null));
33     }
34
35     @SuppressWarnings({ "unchecked" })
36     @Test
37     public void testDererialize() {
38         final String hexa = "0x40";
39         final String octal = "0100";
40         final String integer = "64";
41
42         Uint8Codec<String> codec = getCodec(Uint8.getInstance(), Uint8Codec.class);
43
44         assertEquals("deserialize", codec.deserialize(hexa), Short.valueOf("040", 16));
45         assertEquals("deserialize", codec.deserialize(octal), Short.valueOf(octal, 8));
46         assertEquals("deserialize", codec.deserialize(integer), Short.valueOf(integer, 10));
47         assertEquals("deserialize", codec.deserialize("0"), Short.valueOf("0", 10));
48
49         deserializeWithExpectedIllegalArgEx(codec, "1o");
50         deserializeWithExpectedIllegalArgEx(codec, "");
51         deserializeWithExpectedIllegalArgEx(codec, null);
52     }
53 }