Incorporate the ECOMP SDC Artefact Generator code
[aai/babel.git] / src / test / java / org / onap / aai / babel / csar / fixture / ArtifactInfoBuilder.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.babel.csar.fixture;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import org.openecomp.sdc.api.notification.IArtifactInfo;
26
27 /**
28  * This class builds an instance of IArtifactInfo for test purposes.
29  */
30 public class ArtifactInfoBuilder {
31
32     /**
33      * Builds an implementation of IArtifactInfo for test purposes.
34      * <p/>
35      *
36      * @param type type of artifact
37      * @param name name of artifact
38      * @param description description of artifact
39      * @param version version of artifact
40      * @return IArtifactInfo implementation of IArtifactInfo from given parameters for test purposes
41      */
42     public static IArtifactInfo build(final String type, final String name, final String description,
43             final String version) {
44         IArtifactInfo artifact = new TestArtifactInfoImpl();
45
46         ((TestArtifactInfoImpl) artifact).setArtifactType(type);
47         ((TestArtifactInfoImpl) artifact).setArtifactName(name);
48         ((TestArtifactInfoImpl) artifact).setArtifactDescription(description);
49         ((TestArtifactInfoImpl) artifact).setArtifactVersion(version);
50
51         return artifact;
52     }
53
54     /**
55      * This method is responsible for building a collection of artifacts from a given set of info.
56      * <p/>
57      * The info supplied is a two dimensional array with each element of the first dimension representing a single
58      * artifact and each element of the second dimension represents a property of the artifact.
59      * <p/>
60      * The method will call {@link #build(String, String, String, String)} to build each element in the first dimension
61      * where the elements of the second dimension are the arguments to {@link #build(String, String, String, String)}.
62      * <p/>
63      *
64      * @param artifactInfoBits a two dimensional array of data used to build the artifacts
65      * @return List<IArtifactInfo> a list of artifacts built from the given array of info
66      */
67     static List<IArtifactInfo> buildArtifacts(final String[][] artifactInfoBits) {
68         List<IArtifactInfo> artifacts = new ArrayList<>();
69
70         for (String[] artifactInfoBit : artifactInfoBits) {
71             artifacts.add(build(artifactInfoBit[0], artifactInfoBit[1], artifactInfoBit[2], artifactInfoBit[3]));
72         }
73
74         return artifacts;
75     }
76 }