2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2020 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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.policy.controlloop.actor.test;
 
  23 import static org.junit.Assert.assertEquals;
 
  24 import static org.junit.Assert.assertNotNull;
 
  25 import static org.junit.Assert.assertSame;
 
  26 import static org.junit.Assert.assertTrue;
 
  27 import static org.mockito.ArgumentMatchers.any;
 
  28 import static org.mockito.Mockito.when;
 
  30 import javax.ws.rs.client.InvocationCallback;
 
  31 import javax.ws.rs.core.Response;
 
  32 import org.junit.Before;
 
  33 import org.junit.Test;
 
  35 public class BasicHttpOperationTest {
 
  36     private static final String ACTOR = "my-actor";
 
  37     private static final String OPERATION = "my-operation";
 
  39     private BasicHttpOperation<String> oper;
 
  43     public void setUp() throws Exception {
 
  44         oper = new BasicHttpOperation<>(ACTOR, OPERATION);
 
  49     public void testBasicHttpOperation() {
 
  50         oper = new BasicHttpOperation<>();
 
  51         assertEquals(BasicHttpOperation.DEFAULT_ACTOR, oper.actorName);
 
  52         assertEquals(BasicHttpOperation.DEFAULT_OPERATION, oper.operationName);
 
  56     public void testBasicHttpOperationStringString() {
 
  57         assertEquals(ACTOR, oper.actorName);
 
  58         assertEquals(OPERATION, oper.operationName);
 
  62     public void testSetUp() throws Exception {
 
  63         assertNotNull(oper.client);
 
  64         assertSame(oper.client, oper.factory.get(BasicHttpOperation.MY_CLIENT));
 
  65         assertEquals(200, oper.rawResponse.getStatus());
 
  66         assertNotNull(oper.future);
 
  67         assertEquals(BasicHttpOperation.BASE_URI, oper.client.getBaseUrl());
 
  68         assertNotNull(oper.context);
 
  69         assertNotNull(oper.outcome);
 
  70         assertTrue(oper.operator.isAlive());
 
  74     public void testMakeContext() {
 
  77         assertTrue(oper.enrichment.isEmpty());
 
  79         assertSame(BasicHttpOperation.REQ_ID, oper.event.getRequestId());
 
  80         assertSame(oper.enrichment, oper.event.getAai());
 
  82         assertSame(oper.event, oper.context.getEvent());
 
  84         assertSame(oper.context, oper.params.getContext());
 
  85         assertSame(oper.service, oper.params.getActorService());
 
  86         assertEquals(ACTOR, oper.params.getActor());
 
  87         assertEquals(OPERATION, oper.params.getOperation());
 
  88         assertEquals(BasicHttpOperation.TARGET_ENTITY, oper.params.getTargetEntity());
 
  92     public void testInitOperator() throws Exception {
 
  95         assertTrue(oper.operator.isAlive());
 
  96         assertEquals(ACTOR + "." + OPERATION, oper.operator.getFullName());
 
  97         assertEquals(ACTOR, oper.operator.getActorName());
 
  98         assertEquals(OPERATION, oper.operator.getName());
 
  99         assertSame(oper.client, oper.operator.getClient());
 
 100         assertEquals(BasicHttpOperation.PATH, oper.operator.getPath());
 
 104     public void testMakeEnrichment() {
 
 105         assertTrue(oper.makeEnrichment().isEmpty());
 
 109     public void testProvideResponse() throws Exception {
 
 110         InvocationCallback<Response> cb = new InvocationCallback<>() {
 
 112             public void completed(Response response) {
 
 117             public void failed(Throwable throwable) {
 
 123         when(oper.client.get(any(), any(), any())).thenAnswer(oper.provideResponse(oper.rawResponse));
 
 125         assertSame(oper.rawResponse, oper.client.get(cb, null, null).get());