summaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/test/java/org/openecomp/appc/adapter/chef/chefclient/TestChefApiClient.java
blob: 3dc9ff20d3809a9e38f331ebad1560cb3b75526a (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package org.openecomp.appc.adapter.chef.chefclient;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;
import java.util.TimeZone;
import java.util.regex.Pattern;


import org.junit.Before;
import org.junit.Test;
import org.openecomp.appc.adapter.chef.chefapi.ApiMethod;
import org.openecomp.appc.adapter.chef.chefapi.Delete;
import org.openecomp.appc.adapter.chef.chefapi.Get;
import org.openecomp.appc.adapter.chef.chefapi.Post;
import org.openecomp.appc.adapter.chef.chefapi.Put;

public class TestChefApiClient {

    private ChefApiClient client;
    private Properties props;

    @Before
    public void setup() throws IllegalArgumentException, IllegalAccessException {
        props = new Properties();
        InputStream propStr = getClass().getResourceAsStream("/test.properties");
        if (propStr == null) {
            fail("src/test/resources/test.properties missing");
        }

        try {
            props.load(propStr);
            propStr.close();
        } catch (Exception e) {
            e.printStackTrace();
            fail("Could not initialize properties");
        }
        client = new ChefApiClient(
                props.getProperty("org.openecomp.appc.adapter.chef.chefclient.userId"),
                System.getProperty("user.dir") +
                        props.getProperty("org.openecomp.appc.adapter.chef.chefclient.pemPath"),
                props.getProperty("org.openecomp.appc.adapter.chef.chefclient.endPoint"),
                props.getProperty("org.openecomp.appc.adapter.chef.chefclient.organizations"));
    }

    @Test
    public void testGet(){
        Get get = client.get(props.getProperty("org.openecomp.appc.adapter.chef.chefclient.path"));
        ApiMethod method = get.createRequest();
        String[] response = method.test.split("\n");

        thenStringShouldMatch("GET", response);
    }

    @Test
    public void testPut(){
        Put put = client.put(props.getProperty("org.openecomp.appc.adapter.chef.chefclient.path"));
        ApiMethod method = put.createRequest();
        String[] response = method.test.split("\n");

        thenStringShouldMatch("PUT", response);
    }

    @Test
    public void testPost() {
        Post post = client.post(props.getProperty("org.openecomp.appc.adapter.chef.chefclient.path"));
        ApiMethod method = post.createRequest();
        String[] response = method.test.split("\n");

        thenStringShouldMatch("POST", response);
    }

    @Test
    public void testDelete(){
        Delete delete = client.delete(props.getProperty("org.openecomp.appc.adapter.chef.chefclient.path"));
        ApiMethod method = delete.createRequest();
        String[] response = method.test.split("\n");

        thenStringShouldMatch("DELETE", response);
    }

    private String timestamp(){
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
        String timeStamp = sdf.format(new Date());
        timeStamp = timeStamp.replace(" ", "T");
        timeStamp = timeStamp + "Z";
        return timeStamp;
    }

    private void thenStringShouldMatch(String method, String[] response){
        assertEquals("sb Method:" + method, response[0]);
        assertEquals("Hashed Path:+JEk1y2gXwqZRweNjXYtx4ojxW8=", response[1]);
        assertEquals("X-Ops-Content-Hash:2jmj7l5rSw0yVb/vlWAYkK/YBwk=", response[2]);
        String timestamp = timestamp().substring(0, timestamp().length() - 3);
        String regEx = "X-Ops-Timestamp:" +
                 timestamp +
                "...";
        assertTrue(Pattern.matches(regEx, response[3]));
        assertEquals("X-Ops-UserId:test", response[4]);
    }
}