Fix for APPC-1263
[appc.git] / appc-config / appc-config-params / provider / src / test / java / org / onap / sdnc / config / params / transformer / TestArtifactTransformer.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2018 Ericsson
6  * =============================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * 
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.sdnc.config.params.transformer;
23
24 import java.io.File;
25 import java.io.IOException;
26 import java.nio.charset.Charset;
27 import org.apache.commons.io.FileUtils;
28 import org.hamcrest.CoreMatchers;
29 import org.junit.Assert;
30 import org.junit.Rule;
31 import org.junit.Test;
32 import org.junit.rules.TemporaryFolder;
33 import org.onap.sdnc.config.params.transformer.ArtificatTransformer;
34
35 public class TestArtifactTransformer {
36     @Rule
37     public TemporaryFolder temporaryFolder = new TemporaryFolder();
38
39     @Test
40     public void testArtifactTransformerYAMLtoJSON() throws IOException {
41         ArtificatTransformer transformer = new ArtificatTransformer();
42         String pdString = FileUtils.readFileToString(
43                 new File("src/test/resources/tosca/ExamplePropertyDefinition.yml"), 
44                 Charset.defaultCharset());
45         String output = transformer.transformYamlToJson(pdString);
46         Assert.assertThat(output, CoreMatchers.containsString("response-keys"));
47     }
48 }