5629f99feb7de840a77b9e80b66a327681a088e8
[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
28 import java.util.Arrays;
29 import java.util.List;
30
31 import org.camunda.bpm.engine.delegate.BpmnError;
32 import org.camunda.bpm.engine.delegate.DelegateExecution;
33 import org.camunda.bpm.extension.mockito.delegate.DelegateExecutionFake;
34 import org.junit.Rule;
35 import org.junit.Test;
36 import org.junit.rules.ExpectedException;
37 import org.junit.runner.RunWith;
38 import org.onap.so.bpmn.common.BuildingBlockExecution;
39 import org.onap.so.bpmn.core.WorkflowException;
40 import org.springframework.beans.factory.annotation.Autowired;
41 import org.springframework.test.context.ContextConfiguration;
42 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
43
44 @RunWith(SpringJUnit4ClassRunner.class)
45 @ContextConfiguration(classes = {ValidationConfig.class})
46 public class WorkflowValidatorRunnerTest {
47
48         @Rule
49     public ExpectedException thrown= ExpectedException.none();
50         
51         @Autowired
52         private WorkflowValidatorRunner runner;
53         
54         @Test
55         public void filterValidatorTest() {
56                 
57                 WorkflowPreValidatorOne one = new WorkflowPreValidatorOne();
58                 WorkflowPreValidatorTwo two = new WorkflowPreValidatorTwo();            
59                 List<FlowValidator> validators = Arrays.asList(one, two);
60
61                 List<FlowValidator> result = runner.filterValidators(validators, "test");
62
63                 List<FlowValidator> expected = Arrays.asList(two, one);
64                 
65                 assertEquals(expected, result);
66         }
67         
68         @Test
69         public void testValidate() {
70                 
71                 DelegateExecution execution = new DelegateExecutionFake();
72                 execution.setVariable("testProcessKey", "1234");
73                 try {
74                         runner.preValidate("test", execution);
75                         fail("exception not thrown");
76                 } catch (BpmnError e) {
77                         WorkflowException workflowException = (WorkflowException) execution.getVariable("WorkflowException");
78                         assertEquals("Failed Validations:\norg.onap.so.bpmn.common.validation.WorkflowPreValidatorTwo: my-error-two\norg.onap.so.bpmn.common.validation.WorkflowPreValidatorOne: my-error-one", 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 }