aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/impl/onboarding/OnboardingPackageProcessorUnitTest.java
blob: 795da7780ffed69f98eaac9523646ff3085c806c (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2021 Nokia
 *  ================================================================================
 *  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.
 *
 *  SPDX-License-Identifier: Apache-2.0
 *  ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.vendorsoftwareproduct.impl.onboarding;

import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.junit.Test;
import org.openecomp.sdc.heat.datatypes.manifest.FileData;
import org.openecomp.sdc.heat.datatypes.manifest.FileData.Type;
import org.openecomp.sdc.heat.datatypes.manifest.ManifestContent;
import org.openecomp.sdc.vendorsoftwareproduct.impl.onboarding.validation.CnfPackageValidator;


public class OnboardingPackageProcessorUnitTest {

    private OnboardingPackageProcessor processor = new OnboardingPackageProcessor("unitTestPackage",
        null, new CnfPackageValidator());

    @Test
    public void shouldValidateZipPackage_helmWithoutHeat() {
        assertThat(processor.validateZipPackage(manifest(withHelmWithoutHeat())).size(), is(0));
    }

    @Test
    public void shouldValidateZipPackage_withHelmAndHeat() {
        assertThat(processor.validateZipPackage(manifest(withHelmAndHeat())).size(), is(0));
    }

    @Test
    public void shouldValidateZipPackage_withHelmWithoutHeat() {
        assertThat(processor.validateZipPackage(manifest(withoutHelmWithoutHeat())).size(), is(0));
    }

    @Test
    public void shouldValidateZipPackage_helmInvalid() {
        assertThat(processor.validateZipPackage(manifest(withHelmInvalid())).size(), is(1));
    }

    @Test
    public void shouldValidateHelmPackage() {
        ManifestAnalyzer analyzer = new ManifestAnalyzer(manifest(withHelmWithoutHeat()));

       assertThat(processor.shouldValidateHelmPackage(analyzer), is(true));
    }

    @Test
    public void shouldNotValidateHelmPackage_emptyInput() {
        ManifestAnalyzer analyzer = new ManifestAnalyzer(manifest(empty()));

        assertThat(processor.shouldValidateHelmPackage(analyzer), is(false));
    }

    @Test
    public void shouldNotValidateHelmPackage_containsHeatModule() {
        ManifestAnalyzer analyzer = new ManifestAnalyzer(manifest(withHelmAndHeat()));

        assertThat(processor.shouldValidateHelmPackage(analyzer), is(false));
    }

    @Test
    public void shouldNotValidateHelmPackage_noHelmModule() {
        ManifestAnalyzer analyzer = new ManifestAnalyzer(manifest(withoutHelmWithoutHeat()));

        assertThat(processor.shouldValidateHelmPackage(analyzer), is(false));
    }

    private ManifestContent manifest(List<FileData> entries) {
        ManifestContent manifest = new ManifestContent();
        manifest.setData(entries);
        return  manifest;
    }

    private List<FileData> empty() {
        return Collections.emptyList();
    }

    private List<FileData> withHelmAndHeat() {
        List<FileData> entries = new ArrayList<>();

        entries.add(createFileData(Type.HEAT, true));
        entries.add(createFileData(Type.HELM, false));
        entries.add(createFileData(Type.PM_DICTIONARY, false));

        return entries;
    }

    private List<FileData> withHelmWithoutHeat() {
        List<FileData> entries = new ArrayList<>();

        entries.add(createFileData(Type.HELM, true));
        entries.add(createFileData(Type.CHEF, false));
        entries.add(createFileData(Type.PM_DICTIONARY, false));

        return entries;
    }

    private List<FileData> withHelmInvalid() {
        List<FileData> entries = new ArrayList<>();

        entries.add(createFileData(Type.HELM, false));
        entries.add(createFileData(Type.CHEF, false));
        entries.add(createFileData(Type.PM_DICTIONARY, false));

        return entries;
    }

    private List<FileData> withoutHelmWithoutHeat() {
        List<FileData> entries = new ArrayList<>();

        entries.add(createFileData(Type.CHEF, false));
        entries.add(createFileData(Type.PM_DICTIONARY, false));

        return entries;
    }


    private FileData createFileData(Type type, Boolean base) {
        FileData f = new FileData();
        f.setType(type);
        f.setBase(base);
        return f;
    }

}