[DMAAP-BC] Fix failing jenkins
[dmaap/buscontroller.git] / dmaap-bc / src / test / java / org / onap / dmaap / dbcapi / resources / DmaapResourceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.dmaap.dbcapi.resources;
21
22 import static org.junit.Assert.assertTrue;
23
24 import javax.ws.rs.client.Entity;
25 import javax.ws.rs.core.Application;
26 import javax.ws.rs.core.MediaType;
27 import javax.ws.rs.core.Response;
28 import org.glassfish.jersey.server.ResourceConfig;
29 import org.glassfish.jersey.test.JerseyTest;
30 import org.junit.BeforeClass;
31 import org.junit.Test;
32 import org.onap.dmaap.dbcapi.model.Dmaap;
33 import org.onap.dmaap.dbcapi.testframework.DmaapObjectFactory;
34
35
36 public class DmaapResourceTest extends JerseyTest {
37
38         static DmaapObjectFactory factory = new DmaapObjectFactory();
39
40         @BeforeClass
41         public static void setUpClass(){
42                 System.setProperty("ConfigFile", "src/test/resources/dmaapbc.properties");
43         }
44
45         @Override
46         protected Application configure() {
47                 return new ResourceConfig( DmaapResource.class );
48         }
49
50         @Test
51         public void GetTest() {
52                 Response resp = target( "dmaap").request().get( Response.class );
53                 assertTrue( resp.getStatus() == 200 );
54         }
55         @Test
56         public void PostTest() {
57
58                 Dmaap dmaap = factory.genDmaap();
59                 Entity<Dmaap> reqEntity = Entity.entity( dmaap, MediaType.APPLICATION_JSON );
60                 Response resp = target( "dmaap").request().post( reqEntity, Response.class );
61                 System.out.println( resp.getStatus() );
62                 assertTrue( resp.getStatus() == 200 );
63         }
64
65         @Test
66         public void PutTest() {
67
68                 Dmaap dmaap = factory.genDmaap();
69                 Entity<Dmaap> reqEntity = Entity.entity( dmaap, MediaType.APPLICATION_JSON );
70         
71                 dmaap.setVersion( "2" );        
72                 Response resp = target( "dmaap").request().put( reqEntity, Response.class );
73                 System.out.println( resp.getStatus() );
74                 assertTrue( resp.getStatus() == 200 );
75         }
76
77
78
79
80 }
81