f13bcb8a939901286142ae23c8c24ce92750b2d9
[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.extension.mockito.delegate.DelegateExecutionFake;
31 import org.junit.Rule;
32 import org.junit.Test;
33 import org.junit.rules.ExpectedException;
34 import org.junit.runner.RunWith;
35 import org.onap.so.bpmn.common.BuildingBlockExecution;
36 import org.onap.so.bpmn.common.DelegateExecutionImpl;
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 BuildingBlockValidatorRunnerTest {
45
46     @Rule
47     public ExpectedException thrown = ExpectedException.none();
48
49     @Autowired
50     private BuildingBlockValidatorRunner runner;
51
52     @Test
53     public void filterValidatorTest() {
54
55         MyPreValidatorOne one = new MyPreValidatorOne();
56         MyPreValidatorTwo two = new MyPreValidatorTwo();
57         MyPreValidatorThree three = new MyPreValidatorThree();
58         List<FlowValidator> validators = Arrays.asList(one, two, three);
59
60         List<FlowValidator> result = runner.filterValidators(validators, "test");
61
62         List<FlowValidator> expected = Arrays.asList(two, one);
63
64         assertEquals(expected, result);
65     }
66
67     @Test
68     public void testValidate() {
69
70         BuildingBlockExecution execution = new DelegateExecutionImpl(new DelegateExecutionFake());
71         execution.setVariable("testProcessKey", "1234");
72         try {
73             runner.preValidate("test", execution);
74             fail("exception not thrown");
75         } catch (BpmnError e) {
76             WorkflowException workflowException = (WorkflowException) execution.getVariable("WorkflowException");
77             assertEquals(
78                     "Failed Validations:\norg.onap.so.bpmn.common.validation.MyPreValidatorTwo: my-error-two\norg.onap.so.bpmn.common.validation.MyPreValidatorOne: my-error-one",
79                     workflowException.getErrorMessage());
80         }
81         runner.preValidate("test2", mock(BuildingBlockExecution.class));
82     }
83
84     @Test
85     public void testEmptyList() {
86         boolean result = runner.preValidate("test3", mock(BuildingBlockExecution.class));
87
88         assertTrue(result);
89     }
90 }