aboutsummaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/config/MainToTest.java
blob: ae2eec8d52e491745e5f5292ae5fbbbc3764910b (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
package org.openecomp.sdc.ci.tests.config;


import fj.data.Either;
import org.apache.commons.io.IOUtils;
import org.json.JSONObject;
import org.openecomp.sdc.be.model.Service;
import org.openecomp.sdc.ci.tests.datatypes.enums.UserRoleEnum;
import org.openecomp.sdc.ci.tests.datatypes.http.RestResponse;
import org.openecomp.sdc.ci.tests.utils.general.AtomicOperationUtils;
import org.openecomp.sdc.ci.tests.utils.general.FileHandling;
import org.yaml.snakeyaml.Yaml;

import java.io.*;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.Map;

public class MainToTest {

    private static final String CREDENTIALS_FILE = "credentials.yaml";

//    public static void main(String[] args) throws Exception {
//        System.out.println("Hello World!"); // Display the string.
//        System.out.println("user.dir: " + System.getProperty("user.dir"));
//        System.out.println(UserRoleEnum.DESIGNER.getFirstName());
//        String file = readFile();
//        convertToJson(file);
//        Either<Service, RestResponse> createDefaultService1e = AtomicOperationUtils.createDefaultService(UserRoleEnum.DESIGNER, true);
//
//
//
//    }

    private static String convertToJson(String yamlString) {
        Yaml yaml = new Yaml();
        Map<String, Object> map = (Map<String, Object>) yaml.load(yamlString);

        JSONObject jsonObject = new JSONObject(map);
        return jsonObject.toString();
    }

    private static String readFile() {

    File credentialsFileLocal = new File(FileHandling.getSdcVnfsPath() + File.separator + "conf"
            + File.separator + CREDENTIALS_FILE);

        InputStream inputStream = null;
        try {
            inputStream = new FileInputStream(credentialsFileLocal);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        finally {
            try {
                String mystr = IOUtils.toString(inputStream, Charset.forName("UTF-8"));
                inputStream.close();
                return mystr;
            } catch(IOException e) {
            }
        }

        return null;
    }


}