Migrate sdc-sdc-workflow-designer docs
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-be / src / test / java / org / onap / sdc / workflow / api / types / VersionStatesFormatterTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.sdc.workflow.api.types;
18
19 import static org.junit.Assert.assertEquals;
20 import static org.junit.Assert.assertNull;
21 import static org.onap.sdc.workflow.services.types.WorkflowVersionState.CERTIFIED;
22 import static org.onap.sdc.workflow.services.types.WorkflowVersionState.DRAFT;
23
24 import java.util.Collections;
25 import java.util.stream.Collectors;
26 import java.util.stream.Stream;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.InjectMocks;
30 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
31
32 @RunWith(SpringJUnit4ClassRunner.class)
33 public class VersionStatesFormatterTest {
34
35     @InjectMocks
36     private VersionStatesFormatter versionStateSet;
37
38     @Test
39     public void setVersionStateInvalid() {
40         versionStateSet.setVersionState(",,a");
41         assertEquals(Collections.emptySet() ,versionStateSet.getVersionStates());
42     }
43
44     @Test
45     public void setVersionStateDraft() {
46         versionStateSet.setVersionState("DRAFT");
47         assertEquals(Collections.singleton(DRAFT), versionStateSet.getVersionStates());
48     }
49
50     @Test
51     public void setVersionStateCertified() {
52         versionStateSet.setVersionState("CERTIFIED");
53         assertEquals(Collections.singleton(CERTIFIED), versionStateSet.getVersionStates());
54     }
55
56     @Test
57     public void setVersionStateBoth() {
58         versionStateSet.setVersionState("DRAFT,CERTIFIED");
59         assertEquals(Stream.of(DRAFT, CERTIFIED).collect(Collectors.toSet()), versionStateSet.getVersionStates());
60     }
61 }