summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/clamp/clds/config/CldsUserJsonDecoderTest.java
blob: 5f73ac161960a325e301e554d77b5496358f0256 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP CLAMP
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights
 *                             reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END============================================
 * ===================================================================
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */

package org.onap.clamp.clds.config;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;

import org.junit.Test;
import org.onap.clamp.clds.service.CldsUser;

public class CldsUserJsonDecoderTest {
    private String   user1                      = "admin1";
    private String   user2                      = "admin2";
    private String   password                   = "5f4dcc3b5aa765d61d8327deb882cf99";
    private String[] normalPermissionsArray     = { "permission-type-cl|dev|read", "permission-type-cl|dev|update",
            "permission-type-cl-manage|dev|*", "permission-type-filter-vf|dev|*", "permission-type-template|dev|read",
            "permission-type-template|dev|update" };
    private String[] incompletePermissionsArray = { "permission-type-cl|dev|*", "permission-type-cl|dev|*",
            "permission-type-cl-manage|dev|*", "permission-type-filter-vf|dev|*", "permission-type-template|dev|read",
            "permission-type-template|dev|update" };

    @Test
    public void testDecodingDoubleUsers() {
        CldsUser[] usersArray = CldsUserJsonDecoder
                .decodeJson(CldsUserJsonDecoderTest.class.getResourceAsStream("/clds/clds-users-two-users.json"));
        assertEquals(usersArray.length, 2);
        assertEquals(usersArray[0].getUser(), user1);
        assertEquals(usersArray[1].getUser(), user2);
        assertEquals(usersArray[0].getPassword(), password);
        assertEquals(usersArray[1].getPassword(), password);
        assertArrayEquals(usersArray[0].getPermissionsString(), normalPermissionsArray);
        assertArrayEquals(usersArray[1].getPermissionsString(), normalPermissionsArray);
    }

    @Test
    public void testDecodingNoPermission() {
        CldsUser[] usersArray = CldsUserJsonDecoder
                .decodeJson(this.getClass().getResourceAsStream("/clds/clds-users-no-permission.json"));
        assertEquals(usersArray.length, 1);
        assertEquals(usersArray[0].getUser(), user1);
        assertEquals(usersArray[0].getPassword(), null);
        assertArrayEquals(usersArray[0].getPermissionsString(), new String[0]);
    }

    @Test
    public void testDecodingIncompletePermissions() {
        CldsUser[] usersArray = CldsUserJsonDecoder
                .decodeJson(this.getClass().getResourceAsStream("/clds/clds-users-incomplete-permissions.json"));
        assertEquals(usersArray.length, 1);
        assertEquals(usersArray[0].getUser(), user1);
        assertEquals(usersArray[0].getPassword(), password);
        assertArrayEquals(usersArray[0].getPermissionsString(), incompletePermissionsArray);
    }
}