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.sdnr;
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertTrue;
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.when;
30 import java.util.concurrent.CompletableFuture;
31 import java.util.concurrent.atomic.AtomicBoolean;
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.onap.policy.common.utils.coder.CoderException;
35 import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome;
36 import org.onap.policy.controlloop.actorserviceprovider.controlloop.ControlLoopEventContext;
37 import org.onap.policy.controlloop.policy.PolicyResult;
38 import org.onap.policy.sdnr.PciRequestWrapper;
40 public class ModifyConfigOperationTest extends BasicSdnrOperation {
42 private ModifyConfigOperation oper;
44 public ModifyConfigOperationTest() {
45 super(DEFAULT_ACTOR, ModifyConfigOperation.NAME);
49 public void setUp() throws Exception {
51 oper = new ModifyConfigOperation(params, config);
56 public void testModifyConfigOperation() {
57 assertEquals(DEFAULT_ACTOR, oper.getActorName());
58 assertEquals(ModifyConfigOperation.NAME, oper.getName());
62 public void testStartPreprocessorAsync() throws Exception {
63 final CompletableFuture<OperationOutcome> future2 = new CompletableFuture<>();
64 context = mock(ControlLoopEventContext.class);
65 when(context.getEvent()).thenReturn(event);
66 params = params.toBuilder().context(context).build();
68 AtomicBoolean guardStarted = new AtomicBoolean();
70 oper = new ModifyConfigOperation(params, config) {
72 protected CompletableFuture<OperationOutcome> startGuardAsync() {
73 guardStarted.set(true);
74 return super.startGuardAsync();
77 CompletableFuture<OperationOutcome> future3 = oper.startPreprocessorAsync();
79 assertNotNull(future3);
80 assertFalse(future.isDone());
81 assertTrue(guardStarted.get());
83 future2.complete(params.makeOutcome());
84 assertTrue(executor.runAll(100));
85 assertTrue(future3.isDone());
86 assertEquals(PolicyResult.SUCCESS, future3.get().getResult());
90 public void testMakeRequest() throws CoderException {
91 PciRequestWrapper request = oper.makeRequest(1);
92 assertNotNull(request);