Add name to the top level pom for rest-client
[aai/rest-client.git] / src / test / java / org / openecomp / 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.openecomp.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
31 public class HttpUtilTest {
32
33   /**
34    * Test case initialization
35    * 
36    * @throws Exception the exception
37    */
38   @Before
39   public void init() throws Exception {
40   }
41   
42   @Test
43   public void validateAccesors() {
44     
45     assertFalse(HttpUtil.isHttpResponseClassInformational(-1));
46     assertFalse(HttpUtil.isHttpResponseClassInformational(99));
47     assertTrue(HttpUtil.isHttpResponseClassInformational(183));
48     assertFalse(HttpUtil.isHttpResponseClassInformational(200));
49
50     assertFalse(HttpUtil.isHttpResponseClassSuccess(199));
51     assertTrue(HttpUtil.isHttpResponseClassSuccess(202));
52     assertFalse(HttpUtil.isHttpResponseClassSuccess(300));
53
54     assertFalse(HttpUtil.isHttpResponseClassRedirection(299));
55     assertTrue(HttpUtil.isHttpResponseClassRedirection(307));
56     assertFalse(HttpUtil.isHttpResponseClassRedirection(401));
57
58     assertFalse(HttpUtil.isHttpResponseClassClientError(399));
59     assertTrue(HttpUtil.isHttpResponseClassClientError(404));
60     assertFalse(HttpUtil.isHttpResponseClassClientError(555));
61
62     assertFalse(HttpUtil.isHttpResponseClassServerError(499));
63     assertTrue(HttpUtil.isHttpResponseClassServerError(504));
64     assertFalse(HttpUtil.isHttpResponseClassServerError(662));
65     
66     int[] successCodes = { 201, 202, 205, 299 };
67     
68     assertTrue(HttpUtil.isHttpResponseInList(201, successCodes));
69     assertFalse(HttpUtil.isHttpResponseInList(301, successCodes));
70     
71   }
72     
73 }