Add name to the top level pom for rest-client
[aai/rest-client.git] / src / test / java / org / onap / aai / restclient / rest / HttpUtilTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.restclient.rest;
24
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertTrue;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.onap.aai.restclient.rest.HttpUtil;
31
32 public class HttpUtilTest {
33
34   /**
35    * Test case initialization
36    * 
37    * @throws Exception the exception
38    */
39   @Before
40   public void init() throws Exception {
41   }
42   
43   @Test
44   public void validateAccesors() {
45     
46     assertFalse(HttpUtil.isHttpResponseClassInformational(-1));
47     assertFalse(HttpUtil.isHttpResponseClassInformational(99));
48     assertTrue(HttpUtil.isHttpResponseClassInformational(183));
49     assertFalse(HttpUtil.isHttpResponseClassInformational(200));
50
51     assertFalse(HttpUtil.isHttpResponseClassSuccess(199));
52     assertTrue(HttpUtil.isHttpResponseClassSuccess(202));
53     assertFalse(HttpUtil.isHttpResponseClassSuccess(300));
54
55     assertFalse(HttpUtil.isHttpResponseClassRedirection(299));
56     assertTrue(HttpUtil.isHttpResponseClassRedirection(307));
57     assertFalse(HttpUtil.isHttpResponseClassRedirection(401));
58
59     assertFalse(HttpUtil.isHttpResponseClassClientError(399));
60     assertTrue(HttpUtil.isHttpResponseClassClientError(404));
61     assertFalse(HttpUtil.isHttpResponseClassClientError(555));
62
63     assertFalse(HttpUtil.isHttpResponseClassServerError(499));
64     assertTrue(HttpUtil.isHttpResponseClassServerError(504));
65     assertFalse(HttpUtil.isHttpResponseClassServerError(662));
66     
67     int[] successCodes = { 201, 202, 205, 299 };
68     
69     assertTrue(HttpUtil.isHttpResponseInList(201, successCodes));
70     assertFalse(HttpUtil.isHttpResponseInList(301, successCodes));
71     
72   }
73     
74 }