67f10412271292a3cc008c6a99494a29d53a3783
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / CodecsExceptionsCatchingTest.java
1 /*
2  * Copyright (c) 2014, 2015 Brocade Communication Systems, Inc., 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.controller.sal.restconf.impl.test;
10
11 import static org.junit.Assert.assertTrue;
12
13 import java.io.FileNotFoundException;
14 import javax.ws.rs.client.Entity;
15 import javax.ws.rs.core.Application;
16 import javax.ws.rs.core.MediaType;
17 import javax.ws.rs.core.Response;
18 import org.glassfish.jersey.server.ResourceConfig;
19 import org.glassfish.jersey.test.JerseyTest;
20 import org.junit.BeforeClass;
21 import org.junit.Ignore;
22 import org.junit.Test;
23 import org.opendaylight.netconf.sal.rest.impl.JsonNormalizedNodeBodyReader;
24 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeJsonBodyWriter;
25 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeXmlBodyWriter;
26 import org.opendaylight.netconf.sal.rest.impl.RestconfDocumentedExceptionMapper;
27 import org.opendaylight.netconf.sal.rest.impl.XmlNormalizedNodeBodyReader;
28 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
29 import org.opendaylight.netconf.sal.restconf.impl.RestconfImpl;
30 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
31 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
32
33 public class CodecsExceptionsCatchingTest extends JerseyTest {
34
35     private static RestconfImpl restConf;
36     private static ControllerContext controllerContext = ControllerContext.getInstance();
37
38     @BeforeClass
39     public static void init() throws FileNotFoundException, ReactorException {
40         restConf = RestconfImpl.getInstance();
41         controllerContext = ControllerContext.getInstance();
42         final SchemaContext schemaContext = TestUtils.loadSchemaContext("/decoding-exception/yang");
43         controllerContext.setGlobalSchema(schemaContext);
44         restConf.setControllerContext(controllerContext);
45     }
46
47     @Override
48     protected Application configure() {
49         /* enable/disable Jersey logs to console */
50         // enable(TestProperties.LOG_TRAFFIC);
51         // enable(TestProperties.DUMP_ENTITY);
52         // enable(TestProperties.RECORD_LOG_LEVEL);
53         // set(TestProperties.RECORD_LOG_LEVEL, Level.ALL.intValue());
54         ResourceConfig resourceConfig = new ResourceConfig();
55         resourceConfig = resourceConfig.registerInstances(restConf, new NormalizedNodeJsonBodyWriter(),
56             new NormalizedNodeXmlBodyWriter(), new XmlNormalizedNodeBodyReader(), new JsonNormalizedNodeBodyReader());
57         resourceConfig.registerClasses(RestconfDocumentedExceptionMapper.class);
58         return resourceConfig;
59     }
60
61     @Test
62     @Ignore // TODO RestconfDocumentedExceptionMapper needs be fixed before
63     public void stringToNumberConversionError() {
64         final Response response = target("/config/number:cont").request(MediaType.APPLICATION_XML).put(
65                 Entity.entity("<cont xmlns=\"number\"><lf>3f</lf></cont>", MediaType.APPLICATION_XML));
66         final String exceptionMessage = response.readEntity(String.class);
67         assertTrue(exceptionMessage.contains("invalid-value"));
68     }
69 }