More unit tests to pass 50%
[dmaap/dbcapi.git] / 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 org.onap.dmaap.dbcapi.model.*;
23 import org.onap.dmaap.dbcapi.service.*;
24 import org.onap.dmaap.dbcapi.testframework.DmaapObjectFactory;
25
26 import static org.junit.Assert.*;
27
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Test;
31 import java.util.*;
32 import java.sql.*;
33
34 import org.glassfish.jersey.test.JerseyTest;
35 import org.glassfish.jersey.server.ResourceConfig;
36 import javax.ws.rs.client.Entity;
37 import javax.ws.rs.core.Application;
38 import javax.ws.rs.core.Response;
39 import javax.ws.rs.core.MediaType;
40 import javax.ws.rs.Path;
41 import javax.ws.rs.GET;
42
43
44 public class DmaapResourceTest extends JerseyTest {
45
46         static DmaapObjectFactory factory = new DmaapObjectFactory();
47
48         @Override
49         protected Application configure() {
50                 return new ResourceConfig( DmaapResource.class );
51                 //return new ResourceConfig( HelloResource.class );
52         }
53
54         private static final String  fmt = "%24s: %s%n";
55
56
57
58 /*  may conflict with test framework! 
59         @Before
60         public void setUp() throws Exception {
61         }
62
63         @After
64         public void tearDown() throws Exception {
65         }
66 */
67
68
69
70         @Test
71         public void GetTest() {
72                 Response resp = target( "dmaap").request().get( Response.class );
73                 assertTrue( resp.getStatus() == 200 );
74         }
75         @Test
76         public void PostTest() {
77
78                 Dmaap dmaap = factory.genDmaap();
79                 Entity<Dmaap> reqEntity = Entity.entity( dmaap, MediaType.APPLICATION_JSON );
80                 Response resp = target( "dmaap").request().post( reqEntity, Response.class );
81                 System.out.println( resp.getStatus() );
82                 assertTrue( resp.getStatus() == 200 );
83         }
84
85         @Test
86         public void PutTest() {
87
88                 Dmaap dmaap = factory.genDmaap();
89                 Entity<Dmaap> reqEntity = Entity.entity( dmaap, MediaType.APPLICATION_JSON );
90         
91                 dmaap.setVersion( "2" );        
92                 Response resp = target( "dmaap").request().put( reqEntity, Response.class );
93                 System.out.println( resp.getStatus() );
94                 assertTrue( resp.getStatus() == 200 );
95         }
96
97
98
99
100 }
101