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