Refactor babel-related code to not update parameter values
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / 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.modelloader.fixture;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import org.onap.aai.modelloader.service.ArtifactInfoImpl;
26 import org.onap.sdc.api.notification.IArtifactInfo;
27
28 /**
29  * This class builds an instance of IArtifactInfo for test purposes.
30  */
31 public class ArtifactInfoBuilder {
32
33     /**
34      * Builds an implementation of IArtifactInfo for test purposes.
35      * <p/>
36      *
37      * @param type type of artifact
38      * @param name name of artifact
39      * @param description description of artifact
40      * @param version version of artifact
41      * @return IArtifactInfo implementation of IArtifactInfo from given parameters for test purposes
42      */
43     public static IArtifactInfo build(final String type, final String name, final String description,
44             final String version) {
45         ArtifactInfoImpl artifact = new ArtifactInfoImpl();
46
47         artifact.setArtifactType(type);
48         artifact.setArtifactName(name);
49         artifact.setArtifactDescription(description);
50         artifact.setArtifactVersion(version);
51
52         return artifact;
53     }
54
55     /**
56      * This method is responsible for building a collection of artifacts from a given set of info.
57      * <p/>
58      * The info supplied is a two dimensional array with each element of the first dimension representing a single
59      * artifact and each element of the second dimension represents a property of the artifact.
60      * <p/>
61      * The method will call {@link #build(String, String, String, String)} to build each element in the first dimension
62      * where the elements of the second dimension are the arguments to {@link #build(String, String, String, String)}.
63      * <p/>
64      *
65      * @param artifactInfoBits a two dimensional array of data used to build the artifacts
66      * @return List&lt;IArtifactInfo&gt; a list of artifacts built from the given array of info
67      */
68     static List<IArtifactInfo> buildArtifacts(final String[][] artifactInfoBits) {
69         List<IArtifactInfo> artifacts = new ArrayList<>();
70
71         for (String[] artifactInfoBit : artifactInfoBits) {
72             artifacts.add(build(artifactInfoBit[0], artifactInfoBit[1], artifactInfoBit[2], artifactInfoBit[3]));
73         }
74
75         return artifacts;
76     }
77 }