Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / test / java / org / opendaylight / protocol / pcep / spi / APITest.java
1 /*
2  * Copyright (c) 2013 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.protocol.pcep.spi;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNull;
13 import static org.junit.Assert.assertTrue;
14
15 import org.junit.Test;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.close.object.CCloseBuilder;
18
19 public class APITest {
20
21     @Test
22     public void testDeserializerException() {
23         final PCEPDeserializerException e = new PCEPDeserializerException("Some error message.");
24         assertEquals("Some error message.", e.getMessage());
25
26         final PCEPDeserializerException e1 = new PCEPDeserializerException("Some error message.",
27             new IllegalArgumentException());
28         assertEquals("Some error message.", e1.getMessage());
29         assertTrue(e1.getCause() instanceof IllegalArgumentException);
30     }
31
32     @Test
33     public void testObjectHeader() {
34         ObjectHeaderImpl header = new ObjectHeaderImpl(null, true);
35         assertEquals("ObjectHeader [objClass=, processed=null, ignored=true]", header.toString());
36         assertTrue(header.isIgnore());
37         assertNull(header.isProcessingRule());
38
39         assertEquals(new ObjectHeaderImpl(null, true).hashCode(),  header.hashCode());
40         assertEquals(new ObjectHeaderImpl(null, true), header);
41     }
42
43     @Test
44     public void testUnknownObject() {
45         UnknownObject un = new UnknownObject(PCEPErrors.CT_AND_SETUP_PRIORITY_DO_NOT_FORM_TE_CLASS);
46         assertFalse(un.isIgnore());
47         assertFalse(un.isProcessingRule());
48         assertEquals(PCEPErrors.CT_AND_SETUP_PRIORITY_DO_NOT_FORM_TE_CLASS, un.getError());
49         assertEquals(PCEPErrors.CT_AND_SETUP_PRIORITY_DO_NOT_FORM_TE_CLASS.getErrorType(),
50             un.getErrors().get(0).getErrorObject().getType().shortValue());
51
52         final Object o = new CCloseBuilder().build();
53         UnknownObject unknown = new UnknownObject(PCEPErrors.LSP_RSVP_ERROR, o);
54         assertEquals(Object.class, unknown.getImplementedInterface());
55         assertEquals(o, unknown.getInvalidObject());
56     }
57 }