10/31: merge casablanca to master
[so.git] / bpmn / so-bpmn-infrastructure-common / src / test / java / org / onap / so / bpmn / infrastructure / pnf / delegate / PnfCheckInputsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.so.bpmn.infrastructure.pnf.delegate;
22
23 import static org.assertj.core.api.Assertions.assertThatThrownBy;
24 import static org.mockito.Matchers.eq;
25 import static org.mockito.Mockito.mock;
26 import static org.mockito.Mockito.verify;
27 import static org.mockito.Mockito.when;
28 import static org.onap.so.bpmn.infrastructure.pnf.delegate.ExecutionVariableNames.CORRELATION_ID;
29 import static org.onap.so.bpmn.infrastructure.pnf.delegate.ExecutionVariableNames.TIMEOUT_FOR_NOTIFICATION;
30
31 import org.camunda.bpm.engine.delegate.BpmnError;
32 import org.camunda.bpm.engine.delegate.DelegateExecution;
33 import org.junit.Test;
34
35 public class PnfCheckInputsTest {
36
37     private static final String DEFAULT_TIMEOUT = "P1D";
38
39     private DelegateExecution mockDelegateExecution() {
40         new PnfCheckInputs(DEFAULT_TIMEOUT);
41         DelegateExecution delegateExecution = mock(DelegateExecution.class);
42         when(delegateExecution.getVariable("testProcessKey")).thenReturn("testProcessKeyValue");
43         return delegateExecution;
44     }
45
46     @Test
47     public void shouldThrowException_whenPnfIdNotSet() {
48         // given
49         PnfCheckInputs testedObject = new PnfCheckInputs(DEFAULT_TIMEOUT);
50         DelegateExecution delegateExecution = mockDelegateExecution();
51         // when, then
52         assertThatThrownBy(() -> testedObject.execute(delegateExecution)).isInstanceOf(BpmnError.class);
53     }
54
55     @Test
56     public void shouldThrowException_whenPnfIdIsEmptyString() throws Exception {
57         // given
58         PnfCheckInputs testedObject = new PnfCheckInputs(DEFAULT_TIMEOUT);
59         DelegateExecution delegateExecution = mockDelegateExecution();
60         when(delegateExecution.getVariable(CORRELATION_ID)).thenReturn("");
61         // when, then
62         assertThatThrownBy(() -> testedObject.execute(delegateExecution)).isInstanceOf(BpmnError.class);
63     }
64
65     private DelegateExecution mockDelegateExecutionWithCorrelationId() {
66         new PnfCheckInputs(DEFAULT_TIMEOUT);
67         DelegateExecution delegateExecution = mockDelegateExecution();
68         when(delegateExecution.getVariable(CORRELATION_ID)).thenReturn("testCorrelationId");
69         return delegateExecution;
70     }
71
72     @Test
73     public void shouldThrowException_whenTimeoutIsNotSetAndDefaultIsNotDefined() {
74         // given
75         PnfCheckInputs testedObject = new PnfCheckInputs(null);
76         DelegateExecution delegateExecution = mockDelegateExecutionWithCorrelationId();
77         // when, then
78         assertThatThrownBy(() -> testedObject.execute(delegateExecution)).isInstanceOf(BpmnError.class);
79     }
80
81     @Test
82     public void shouldThrowException_whenTimeoutIsEmptyStringAndDefaultIsNotDefined() throws Exception {
83         // given
84         PnfCheckInputs testedObject = new PnfCheckInputs(null);
85         DelegateExecution delegateExecution = mockDelegateExecutionWithCorrelationId();
86         when(delegateExecution.getVariable(TIMEOUT_FOR_NOTIFICATION)).thenReturn("");
87         // when, then
88         assertThatThrownBy(() -> testedObject.execute(delegateExecution)).isInstanceOf(BpmnError.class);
89     }
90
91     @Test
92     public void shouldSetDefaultTimeout_whenTimeoutIsNotSet() {
93         // given
94         PnfCheckInputs testedObject = new PnfCheckInputs(DEFAULT_TIMEOUT);
95         DelegateExecution delegateExecution = mockDelegateExecutionWithCorrelationId();
96         // when
97         testedObject.execute(delegateExecution);
98         // then
99         verify(delegateExecution).setVariable(eq(TIMEOUT_FOR_NOTIFICATION), eq(DEFAULT_TIMEOUT));
100     }
101 }