aboutsummaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/test/java/org/onap/appc/adapter/chef/chefclient/TestChefApiClient.java
blob: 9e787b64d18c883091a1489c8f327ca07e723d4f (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
108
109
110
111
112
113
114
115
116
117
118
119
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.onap.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.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.time.temporal.ChronoUnit;
import java.util.Properties;
import org.junit.Before;
import org.junit.Test;
import org.onap.appc.adapter.chef.chefapi.ApiMethod;
import org.onap.appc.adapter.chef.chefapi.Delete;
import org.onap.appc.adapter.chef.chefapi.Get;
import org.onap.appc.adapter.chef.chefapi.Post;
import org.onap.appc.adapter.chef.chefapi.Put;

public class TestChefApiClient {

    private ChefApiClient client;
    private Properties props;
    private static DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss'Z'");

    @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.onap.appc.adapter.chef.chefclient.userId"),
                System.getProperty("user.dir") + props.getProperty("org.onap.appc.adapter.chef.chefclient.pemPath"),
                props.getProperty("org.onap.appc.adapter.chef.chefclient.endPoint"),
                props.getProperty("org.onap.appc.adapter.chef.chefclient.organizations"));
    }

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

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

        thenStringShouldMatch("PUT", response);
    }

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

        thenStringShouldMatch("POST", response);
    }

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

        thenStringShouldMatch("DELETE", response);
    }

    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]);
        checkTimestamp(response[3], 30000);
        assertEquals("X-Ops-UserId:test", response[4]);
    }

    private void checkTimestamp(String timeStampHeader, long maxDeltaMs) {
        assertTrue(timeStampHeader.startsWith("X-Ops-Timestamp:"));
        LocalDateTime ld1 = LocalDateTime.parse(timeStampHeader.replace("X-Ops-Timestamp:", ""), dtf);
        assertTrue(ChronoUnit.MILLIS.between(ld1, LocalDateTime.now(ZoneId.of("UTC"))) <= maxDeltaMs);
    }
}