Remove restricted notice from TOSCA file
[vid.git] / vid-app-common / src / test / java / org / onap / vid / job / command / ResourceInProgressStatusCommandTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.job.command;
22
23 import org.mockito.InjectMocks;
24 import org.mockito.MockitoAnnotations;
25 import org.onap.vid.job.Job;
26 import org.onap.vid.job.NextCommand;
27 import org.testng.annotations.BeforeMethod;
28 import org.testng.annotations.DataProvider;
29 import org.testng.annotations.Test;
30
31 import static org.hamcrest.MatcherAssert.assertThat;
32 import static org.hamcrest.core.Is.is;
33
34
35 public class ResourceInProgressStatusCommandTest {
36
37     @InjectMocks
38     private ResourceInProgressStatusCommand commandUnderTest = new ResourceInProgressStatusCommand();
39
40     @BeforeMethod
41     public void initMocks() {
42         MockitoAnnotations.initMocks(this);
43     }
44
45     @DataProvider
46     public static Object[][] givenStatusToExpectedStatus() {
47         return new Object[][]{
48                 {Job.JobStatus.IN_PROGRESS, Job.JobStatus.IN_PROGRESS},
49                 {Job.JobStatus.FAILED, Job.JobStatus.FAILED},
50                 {Job.JobStatus.COMPLETED, Job.JobStatus.COMPLETED}
51         };
52     }
53
54     @Test(dataProvider = "givenStatusToExpectedStatus")
55     public void whenGetStatusFromMso_returnExpectedNextCommand(Job.JobStatus jobStatus, Job.JobStatus expectedNextStatus) {
56         NextCommand nextCommand = commandUnderTest.processJobStatus(jobStatus);
57         assertThat(nextCommand.getStatus(), is(expectedNextStatus));
58         assertThat(nextCommand.getCommand(), is(commandUnderTest));
59     }
60 }