UT added, project structure corrected 53/40453/1
authorpwielebs <piotr.wielebski@nokia.com>
Sat, 31 Mar 2018 11:12:34 +0000 (13:12 +0200)
committerpwielebs <piotr.wielebski@nokia.com>
Sat, 31 Mar 2018 11:13:37 +0000 (13:13 +0200)
Change-Id: I4695f56471e67e4519569bf8d72be1effe9f7015
Issue-ID: DCAEGEN2-407
Signed-off-by: pwielebs <piotr.wielebski@nokia.com>
prh-aai-client/src/main/java/services/service/AAIExtendedHttpClient.java
prh-aai-client/src/main/java/services/service/AAIExtendedHttpClientImpl.java
prh-aai-client/src/main/java/services/service/AAIHttpClient.java
prh-aai-client/src/main/java/services/service/AAIHttpClientImpl.java
prh-aai-client/src/main/java/services/utils/HttpUtils.java
prh-aai-client/src/test/java/services/service/AAIExtendedHttpClientImplTest.java [moved from prh-aai-client/src/main/test/java/services/service/AAIExtendedHttpClientImplTest.java with 99% similarity]
prh-aai-client/src/test/java/services/service/AAIHttpClientImplTest.java [new file with mode: 0644]
prh-aai-client/src/test/java/services/service/utils/HTTPConfiguration.java [new file with mode: 0644]
prh-aai-client/src/test/java/services/service/utils/HttpUtilsTest.java [new file with mode: 0644]

index 8b7db1b..41cf87e 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
  * ================================================================================
  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
  * ================================================================================
index c7f7b0d..7a5a9f8 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
  * ================================================================================
  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
  * ================================================================================
index 3dd17fc..c1054d7 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
  * ================================================================================
  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
  * ================================================================================
index 76d090d..39c91dd 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
  * ================================================================================
  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
  * ================================================================================
index f752d14..d4d5c88 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
  * ================================================================================
  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
  * ================================================================================
  */
 package services.utils;
 
-public class HttpUtils {
+import org.apache.http.HttpStatus;
+
+public class HttpUtils implements HttpStatus {
 
     private HttpUtils() {}
 
-    public static final Integer HTTP_OK_RESPONSE_CODE = 200;
-    public static final Integer HTTP_ACCEPTED_RESPONSE_CODE = 200;
-    public static final Integer HTTP_NONAUTHORATIVE_INFORMATION_RESPONSE_CODE = 203;
-    public static final Integer HTTP_NO_CONTENT_RESPONSE_CODE = 204;
-    public static final Integer HTTP_RESET_CONTENT_RESPONSE_CODE = 205;
-    public static final Integer HTTP_PARTIAL_CONTENT_RESPONSE_CODE = 206;
     public static final String JSON_APPLICATION_TYPE = "application/json";
 
     public static boolean isSuccessfulResponseCode(Integer statusCode) {
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
  * ================================================================================
  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
  * ================================================================================
diff --git a/prh-aai-client/src/test/java/services/service/AAIHttpClientImplTest.java b/prh-aai-client/src/test/java/services/service/AAIHttpClientImplTest.java
new file mode 100644 (file)
index 0000000..242e56d
--- /dev/null
@@ -0,0 +1,56 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * PNF-REGISTRATION-HANDLER
+ * ================================================================================
+ * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package services.service;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import services.config.AAIHttpClientConfiguration;
+import services.service.utils.HTTPConfiguration;
+
+import static org.junit.Assert.assertNotNull;
+
+
+public class AAIHttpClientImplTest {
+
+    private AAIHttpClientImpl aaiHttpClientImpl;
+    private AAIHttpClientConfiguration aaiHttpClientConfiguration;
+
+
+    @Before
+    public void setup() {
+        aaiHttpClientConfiguration = new HTTPConfiguration();
+        aaiHttpClientImpl  = new AAIHttpClientImpl(aaiHttpClientConfiguration);
+    }
+
+    @After
+    public void teaDown() {
+        aaiHttpClientImpl = null;
+    }
+
+    @Test
+    public void getAAIHttpClientObject_shouldNotBeNull() {
+        aaiHttpClientImpl.getAAIHttpClient();
+        assertNotNull(aaiHttpClientImpl.getAAIHttpClient());
+    }
+
+}
+
diff --git a/prh-aai-client/src/test/java/services/service/utils/HTTPConfiguration.java b/prh-aai-client/src/test/java/services/service/utils/HTTPConfiguration.java
new file mode 100644 (file)
index 0000000..fb7b204
--- /dev/null
@@ -0,0 +1,62 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * PNF-REGISTRATION-HANDLER
+ * ================================================================================
+ * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package services.service.utils;
+
+import services.config.AAIHttpClientConfiguration;
+
+public class HTTPConfiguration extends AAIHttpClientConfiguration {
+
+    private static final String AAI_HOST_NAME = "1.2.3.4";
+    private static final Integer AAI_HOST_PORT_NUMBER = 1234;
+    private static final String AAI_HOST_PROTOCOL = "https";
+    private static final String AAI_USER_NAME = "PRH";
+    private static final String AAI_USER_PASS = "PRH";
+
+    @Override
+    public String aaiHost() {
+        return AAI_HOST_NAME;
+    }
+
+    @Override
+    public Integer aaiHostPortNumber() {
+        return AAI_HOST_PORT_NUMBER;
+    }
+
+    @Override
+    public String aaiProtocol() {
+        return AAI_HOST_PROTOCOL;
+    }
+
+    @Override
+    public String aaiUserName() {
+        return AAI_USER_NAME;
+    }
+
+    @Override
+    public String aaiUserPassword() {
+        return AAI_USER_PASS;
+    }
+
+    @Override
+    public boolean aaiIgnoreSSLCertificateErrors() {
+        return true;
+    }
+}
\ No newline at end of file
diff --git a/prh-aai-client/src/test/java/services/service/utils/HttpUtilsTest.java b/prh-aai-client/src/test/java/services/service/utils/HttpUtilsTest.java
new file mode 100644 (file)
index 0000000..d54b335
--- /dev/null
@@ -0,0 +1,42 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * PNF-REGISTRATION-HANDLER
+ * ================================================================================
+ * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package services.service.utils;
+
+import org.apache.http.HttpStatus;
+import org.junit.Test;
+import services.utils.HttpUtils;
+
+import static junit.framework.TestCase.assertFalse;
+import static junit.framework.TestCase.assertTrue;
+
+
+public class HttpUtilsTest {
+
+    @Test
+    public void isSuccessfulResponseCode_shouldReturnTrue() {
+        assertTrue(HttpUtils.isSuccessfulResponseCode(HttpUtils.SC_ACCEPTED));
+    }
+
+    @Test
+    public void isSuccessfulResponseCode_shouldReturnFalse() {
+        assertFalse(HttpUtils.isSuccessfulResponseCode(HttpStatus.SC_BAD_GATEWAY));
+    }
+}
\ No newline at end of file