aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/babel/csar/fixture/ArtifactInfoBuilder.java
blob: cb706771bd49ee97c6cba4111c12e598b62d9bfa (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
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017-2018 European Software Marketing Ltd.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */
package org.onap.aai.babel.csar.fixture;

import java.util.ArrayList;
import java.util.List;
import org.onap.sdc.api.notification.IArtifactInfo;

/**
 * This class builds an instance of IArtifactInfo for test purposes.
 */
public class ArtifactInfoBuilder {

    /**
     * Builds an implementation of IArtifactInfo for test purposes.
     * <p/>
     *
     * @param type
     *            type of artifact
     * @param name
     *            name of artifact
     * @param description
     *            description of artifact
     * @param version
     *            version of artifact
     * @return IArtifactInfo implementation of IArtifactInfo from given parameters for test purposes
     */
    public static IArtifactInfo build(final String type, final String name, final String description,
            final String version) {
        IArtifactInfo artifact = new TestArtifactInfoImpl();

        ((TestArtifactInfoImpl) artifact).setArtifactType(type);
        ((TestArtifactInfoImpl) artifact).setArtifactName(name);
        ((TestArtifactInfoImpl) artifact).setArtifactDescription(description);
        ((TestArtifactInfoImpl) artifact).setArtifactVersion(version);

        return artifact;
    }

    /**
     * This method is responsible for building a collection of artifacts from a given set of info.
     * <p/>
     * The info supplied is a two dimensional array with each element of the first dimension representing a single
     * artifact and each element of the second dimension represents a property of the artifact.
     * <p/>
     * The method will call {@link #build(String, String, String, String)} to build each element in the first dimension
     * where the elements of the second dimension are the arguments to {@link #build(String, String, String, String)}.
     * <p/>
     *
     * @param artifactInfoBits
     *            a two dimensional array of data used to build the artifacts
     * @return List&lt;IArtifactInfo&gt; a list of artifacts built from the given array of info
     */
    static List<IArtifactInfo> buildArtifacts(final String[][] artifactInfoBits) {
        List<IArtifactInfo> artifacts = new ArrayList<>();

        for (String[] artifactInfoBit : artifactInfoBits) {
            artifacts.add(build(artifactInfoBit[0], artifactInfoBit[1], artifactInfoBit[2], artifactInfoBit[3]));
        }

        return artifacts;
    }
}