07cd790ed1f1db311c285598daf703765d30884a
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.common.validation;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertTrue;
25 import static org.junit.Assert.fail;
26 import static org.mockito.Mockito.mock;
27 import java.util.Arrays;
28 import java.util.List;
29 import org.camunda.bpm.engine.delegate.BpmnError;
30 import org.camunda.bpm.engine.delegate.DelegateExecution;
31 import org.camunda.bpm.extension.mockito.delegate.DelegateExecutionFake;
32 import org.junit.Rule;
33 import org.junit.Test;
34 import org.junit.rules.ExpectedException;
35 import org.junit.runner.RunWith;
36 import org.onap.so.bpmn.common.BuildingBlockExecution;
37 import org.onap.so.bpmn.core.WorkflowException;
38 import org.springframework.beans.factory.annotation.Autowired;
39 import org.springframework.test.context.ContextConfiguration;
40 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
41
42 @RunWith(SpringJUnit4ClassRunner.class)
43 @ContextConfiguration(classes = {ValidationConfig.class})
44 public class WorkflowValidatorRunnerTest {
45
46     @Rule
47     public ExpectedException thrown = ExpectedException.none();
48
49     @Autowired
50     private WorkflowValidatorRunner runner;
51
52     @Test
53     public void filterValidatorTest() {
54
55         WorkflowPreValidatorOne one = new WorkflowPreValidatorOne();
56         WorkflowPreValidatorTwo two = new WorkflowPreValidatorTwo();
57         List<FlowValidator> validators = Arrays.asList(one, two);
58
59         List<FlowValidator> result = runner.filterValidators(validators, "test");
60
61         List<FlowValidator> expected = Arrays.asList(two, one);
62
63         assertEquals(expected, result);
64     }
65
66     @Test
67     public void testValidate() {
68
69         DelegateExecution execution = new DelegateExecutionFake();
70         execution.setVariable("testProcessKey", "1234");
71         try {
72             runner.preValidate("test", execution);
73             fail("exception not thrown");
74         } catch (BpmnError e) {
75             WorkflowException workflowException = (WorkflowException) execution.getVariable("WorkflowException");
76             assertEquals(
77                     "Failed Validations:\norg.onap.so.bpmn.common.validation.WorkflowPreValidatorTwo: my-error-two\norg.onap.so.bpmn.common.validation.WorkflowPreValidatorOne: my-error-one",
78                     workflowException.getErrorMessage());
79         }
80         runner.preValidate("test2", mock(DelegateExecution.class));
81     }
82
83     @Test
84     public void testEmptyList() {
85         boolean result = runner.preValidate("test3", mock(DelegateExecution.class));
86
87         assertTrue(result);
88     }
89 }