/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============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) {
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
--- /dev/null
+/*-
+ * ============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());
+ }
+
+}
+
--- /dev/null
+/*-
+ * ============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
--- /dev/null
+/*-
+ * ============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