aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-be/src/test/java/org/onap/sdc/workflow/services/impl/mappers/VersionMapperTest.java
blob: 0bf4c1f06fc0180d3d715bf1f3955c3db03ab64a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright © 2016-2018 European Support Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.sdc.workflow.services.impl.mappers;

import static org.junit.Assert.assertEquals;

import java.util.Date;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.onap.sdc.workflow.services.types.WorkflowVersion;
import org.onap.sdc.workflow.services.types.WorkflowVersionState;
import org.openecomp.sdc.versioning.dao.types.Version;
import org.openecomp.sdc.versioning.dao.types.VersionStatus;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@ContextConfiguration(classes = VersionMapperTest.VersionMapperSpringTestConfig.class)
@RunWith(SpringJUnit4ClassRunner.class)
public class VersionMapperTest {

    @Configuration
    @ComponentScan(basePackageClasses = {VersionMapper.class, VersionStateMapper.class})
    public static class VersionMapperSpringTestConfig { }

    @Autowired
    VersionMapper versionMapper;


    @Test
    public void shouldMapVersionToWorkflowVersion() {
        Version version = createVersion();
        WorkflowVersion mappedWorkflowVersion = versionMapper.versionToWorkflowVersion(version);
        assertEquals(mappedWorkflowVersion.getId(), version.getId());
        assertEquals(mappedWorkflowVersion.getBaseId(), version.getBaseId());
        assertEquals(mappedWorkflowVersion.getDescription(), version.getDescription());
        assertEquals(mappedWorkflowVersion.getName(), version.getName());
        assertEquals(mappedWorkflowVersion.getCreationTime(), version.getCreationTime());
        assertEquals(mappedWorkflowVersion.getModificationTime(), version.getModificationTime());
    }

    @Test
    public void shouldMapWorkflowVersionToVersion() {
        WorkflowVersion workflowVersion = createWorkflowVersion();
        Version mappedVersion = versionMapper.workflowVersionToVersion(workflowVersion);
        assertEquals(mappedVersion.getId(), workflowVersion.getId());
        assertEquals(mappedVersion.getBaseId(), workflowVersion.getBaseId());
        assertEquals(mappedVersion.getDescription(), workflowVersion.getDescription());
        assertEquals(mappedVersion.getName(), workflowVersion.getName());
        assertEquals(mappedVersion.getCreationTime(), workflowVersion.getCreationTime());
        assertEquals(mappedVersion.getModificationTime(), workflowVersion.getModificationTime());

    }

    private Version createVersion() {
        Version version = new Version("version_id");
        version.setBaseId("base_version_id");
        version.setName("1.0");
        version.setCreationTime(new Date());
        version.setModificationTime(new Date());
        version.setDescription("version_description");
        version.setStatus(VersionStatus.Draft);

        return version;

    }

    private WorkflowVersion createWorkflowVersion() {
        WorkflowVersion workflowVersion = new WorkflowVersion();
        workflowVersion.setId("wf_version_id");
        workflowVersion.setBaseId("wf_base_version_id");
        workflowVersion.setName("1.0");
        workflowVersion.setCreationTime(new Date());
        workflowVersion.setModificationTime(new Date());
        workflowVersion.setDescription("version_description");
        workflowVersion.setState(WorkflowVersionState.CERTIFIED);

        return workflowVersion;
    }
}