checkstyle: JavadocStyleCheck
[neutron.git] / neutron-spi / src / test / java / org / opendaylight / neutron / spi / NeutronLoadBalancerSessionPersistenceJAXBTest.java
1 /*
2  * Copyright (c) 2015 Tata Consultancy Services.  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.neutron.spi;
10
11 import javax.xml.bind.JAXBException;
12 import org.junit.Assert;
13 import org.junit.Test;
14
15 public class NeutronLoadBalancerSessionPersistenceJAXBTest {
16
17     private static final String NEUTRON_LOAD_BALANCER_SESSION_PERSISTENCE_SOURCE_JSON = "{ "
18             + "\"cookie_name\": \"NeutronLoadBalancerSessionPersistence_Cookie\", " + "\"type\": \"HTTP_COOKIE\" }";
19
20     @Test
21     public void test_NeutronLoadBalancerSessionPersistence_JAXB() throws JAXBException {
22         NeutronLoadBalancerSessionPersistence dummyObject = new NeutronLoadBalancerSessionPersistence();
23
24         NeutronLoadBalancerSessionPersistence testObject = (NeutronLoadBalancerSessionPersistence) JaxbTestHelper
25                 .jaxbUnmarshall(dummyObject, NEUTRON_LOAD_BALANCER_SESSION_PERSISTENCE_SOURCE_JSON);
26         Assert.assertEquals("NeutronLoadBalancer JAXB Test 1: Testing id failed",
27                 "NeutronLoadBalancerSessionPersistence_Cookie", testObject.getCookieName());
28
29         Assert.assertEquals("NeutronLoadBalancer JAXB Test 2: Testing LoadBalancer Name failed", "HTTP_COOKIE",
30                 testObject.getType());
31     }
32 }