BUG-865: remove unused model.util types
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / codecs / BooleanCodecStringTest.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.assertEquals;
12 import org.junit.Test;
13 import org.opendaylight.yangtools.yang.data.api.codec.BooleanCodec;
14 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
15
16 /**
17  * Unit tests for BooleanCodecString.
18  *
19  * @author Thomas Pantelis
20  */
21 public class BooleanCodecStringTest {
22
23     @SuppressWarnings("unchecked")
24     @Test
25     public void testSerialize() {
26         BooleanCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.booleanType(), BooleanCodec.class);
27
28         assertEquals("serialize", "", codec.serialize(null));
29         assertEquals("serialize", "true", codec.serialize(true));
30         assertEquals("serialize", "false", codec.serialize(false));
31     }
32
33     @SuppressWarnings("unchecked")
34     @Test
35     public void testDeserialize() {
36         BooleanCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.booleanType(), BooleanCodec.class);
37
38         assertEquals("deserialize", Boolean.TRUE, codec.deserialize("true"));
39         assertEquals("deserialize", Boolean.TRUE, codec.deserialize("TRUE"));
40         assertEquals("deserialize", Boolean.FALSE, codec.deserialize("FALSE"));
41         assertEquals("deserialize", Boolean.FALSE, codec.deserialize("false"));
42         assertEquals("deserialize", null, codec.deserialize(null));
43         TypeDefinitionAwareCodecTestHelper.deserializeWithExpectedIllegalArgEx(codec, "foo");
44         TypeDefinitionAwareCodecTestHelper.deserializeWithExpectedIllegalArgEx(codec, "");
45     }
46 }