Bug 2907 - corrections for upgrade to karaf 3.0.3
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / RestDeleteOperationTest.java
1 /*
2  * Copyright (c) 2014 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.controller.sal.restconf.impl.test;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.mockito.Matchers.any;
13 import static org.mockito.Mockito.doThrow;
14 import static org.mockito.Mockito.mock;
15 import static org.mockito.Mockito.when;
16 import com.google.common.util.concurrent.CheckedFuture;
17 import java.io.FileNotFoundException;
18 import java.io.UnsupportedEncodingException;
19 import java.util.Set;
20 import javax.ws.rs.core.Application;
21 import javax.ws.rs.core.MediaType;
22 import javax.ws.rs.core.Response;
23 import org.glassfish.jersey.server.ResourceConfig;
24 import org.glassfish.jersey.test.JerseyTest;
25 import org.junit.BeforeClass;
26 import org.junit.Test;
27 import org.opendaylight.controller.sal.rest.impl.JsonNormalizedNodeBodyReader;
28 import org.opendaylight.controller.sal.rest.impl.NormalizedNodeJsonBodyWriter;
29 import org.opendaylight.controller.sal.rest.impl.NormalizedNodeXmlBodyWriter;
30 import org.opendaylight.controller.sal.rest.impl.RestconfDocumentedExceptionMapper;
31 import org.opendaylight.controller.sal.rest.impl.XmlNormalizedNodeBodyReader;
32 import org.opendaylight.controller.sal.restconf.impl.BrokerFacade;
33 import org.opendaylight.controller.sal.restconf.impl.ControllerContext;
34 import org.opendaylight.controller.sal.restconf.impl.RestconfDocumentedException;
35 import org.opendaylight.controller.sal.restconf.impl.RestconfImpl;
36 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
37 import org.opendaylight.yangtools.yang.model.api.Module;
38 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
39
40 public class RestDeleteOperationTest extends JerseyTest {
41
42     private static ControllerContext controllerContext;
43     private static BrokerFacade brokerFacade;
44     private static RestconfImpl restconfImpl;
45
46     @BeforeClass
47     public static void init() throws FileNotFoundException {
48         final Set<Module> allModules = TestUtils.loadModulesFrom("/test-config-data/yang1");
49         assertNotNull(allModules);
50         final SchemaContext schemaContext = TestUtils.loadSchemaContext(allModules);
51         controllerContext = ControllerContext.getInstance();
52         controllerContext.setSchemas(schemaContext);
53         brokerFacade = mock(BrokerFacade.class);
54         restconfImpl = RestconfImpl.getInstance();
55         restconfImpl.setBroker(brokerFacade);
56         restconfImpl.setControllerContext(controllerContext);
57     }
58
59     @Override
60     protected Application configure() {
61         /* enable/disable Jersey logs to console */
62         // enable(TestProperties.LOG_TRAFFIC);
63         // enable(TestProperties.DUMP_ENTITY);
64         // enable(TestProperties.RECORD_LOG_LEVEL);
65         // set(TestProperties.RECORD_LOG_LEVEL, Level.ALL.intValue());
66         ResourceConfig resourceConfig = new ResourceConfig();
67         resourceConfig = resourceConfig.registerInstances(restconfImpl, new NormalizedNodeJsonBodyWriter(),
68                 new NormalizedNodeXmlBodyWriter(), new XmlNormalizedNodeBodyReader(), new JsonNormalizedNodeBodyReader());
69         resourceConfig.registerClasses(RestconfDocumentedExceptionMapper.class);
70         return resourceConfig;
71     }
72
73     @Test
74     public void deleteConfigStatusCodes() throws UnsupportedEncodingException {
75         final String uri = "/config/test-interface:interfaces";
76         when(brokerFacade.commitConfigurationDataDelete(any(YangInstanceIdentifier.class))).thenReturn(
77                 mock(CheckedFuture.class));
78         Response response = target(uri).request(MediaType.APPLICATION_XML).delete();
79         assertEquals(200, response.getStatus());
80
81         doThrow(RestconfDocumentedException.class).when(brokerFacade).commitConfigurationDataDelete(
82                 any(YangInstanceIdentifier.class));
83         response = target(uri).request(MediaType.APPLICATION_XML).delete();
84         assertEquals(500, response.getStatus());
85     }
86 }