aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dmaap/dbcapi/aaf/AafServiceImplTest.java
blob: fd70a16e05fa1be13fdc4a3c147021dfca049c47 (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*-
 * ============LICENSE_START=======================================================
 * org.onap.dmaap
 * ================================================================================
 * Copyright (C) 2019 Nokia 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=========================================================
 */

package org.onap.dmaap.dbcapi.aaf;

import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;

import static org.junit.Assert.assertEquals;
import static org.mockito.BDDMockito.given;
import static org.mockito.BDDMockito.then;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.verifyZeroInteractions;

@RunWith(JUnitParamsRunner.class)
public class AafServiceImplTest {

    private static final String AAF_URL = "https://aaf.url/";
    private static final String IDENTITY = "dmaap-bc@onap.org";
    private static final boolean USE_AAF = true;
    private static final int CREATED = 201;
    private static final int OK = 200;
    @Mock
    private AafConnection aafConnection;
    private AafServiceImpl aafService;

    @Before
    public void setUp() throws Exception {
        MockitoAnnotations.initMocks(this);
        given(aafConnection.postAaf(any(AafObject.class), anyString())).willReturn(CREATED);
        given(aafConnection.delAaf(any(AafObject.class), anyString())).willReturn(OK);
        aafService = new AafServiceImpl(USE_AAF, AAF_URL, IDENTITY, aafConnection);
    }

    @Test
    public void shouldReturnCorrectIdentity() {

        assertEquals(IDENTITY, aafService.getIdentity());
    }

    @Test
    public void shouldAddPermission() {
        DmaapPerm perm = new DmaapPerm("perm", "type", "action");

        int status = aafService.addPerm(perm);

        then(aafConnection).should().postAaf(perm, AAF_URL + "authz/perm");
        assertEquals(CREATED, status);
    }


    @Test
    public void shouldAddDmaapGrant() {
        DmaapGrant grant = new DmaapGrant(new DmaapPerm("perm", "type", "action"), "roles");

        int status = aafService.addGrant(grant);

        then(aafConnection).should().postAaf(grant, AAF_URL + "authz/role/perm");
        assertEquals(CREATED, status);
    }

    @Test
    public void shouldAddUserRole() {
        AafUserRole userRole = new AafUserRole("ident", "role");

        int status = aafService.addUserRole(userRole);

        then(aafConnection).should().postAaf(userRole, AAF_URL + "authz/userRole");
        assertEquals(CREATED, status);
    }

    @Test
    public void shouldAddRole() {
        AafRole role = new AafRole("ns", "role");

        int status = aafService.addRole(role);

        then(aafConnection).should().postAaf(role, AAF_URL + "authz/role");
        assertEquals(CREATED, status);
    }

    @Test
    public void shouldAddNamespace() {
        AafNamespace ns = new AafNamespace("ns", "ident");

        int status = aafService.addNamespace(ns);

        then(aafConnection).should().postAaf(ns, AAF_URL + "authz/ns");
        assertEquals(CREATED, status);
    }

    @Test
    public void shouldDeleteDmaapGrant() {
        DmaapGrant grant = new DmaapGrant(new DmaapPerm("perm", "type", "action"), "roles");

        int status = aafService.delGrant(grant);

        then(aafConnection).should().delAaf(grant, AAF_URL + "authz/role/:" + grant.getRole() + "/perm");
        assertEquals(OK, status);
    }

    @Test
    public void shouldNotConnectToAafDuringCreate() {
        aafService = new AafServiceImpl(false, AAF_URL, IDENTITY, aafConnection);
        DmaapPerm perm = new DmaapPerm("perm", "type", "action");

        int status = aafService.addPerm(perm);

        verifyZeroInteractions(aafConnection);
        assertEquals(CREATED, status);
    }

    @Test
    public void shouldNotConnectToAafDuringDelete() {
        aafService = new AafServiceImpl(false, AAF_URL, IDENTITY, aafConnection);
        DmaapGrant grant = new DmaapGrant(new DmaapPerm("perm", "type", "action"), "roles");

        int status = aafService.delGrant(grant);

        verifyZeroInteractions(aafConnection);
        assertEquals(OK, status);
    }

    @Test
    @Parameters({"401", "403", "409", "200", "500"})
    public void shouldHandleErrorDuringCreate(int aafServiceReturnedCode) {
        given(aafConnection.postAaf(any(AafObject.class), anyString())).willReturn(aafServiceReturnedCode);
        DmaapPerm perm = new DmaapPerm("perm", "type", "action");

        int status = aafService.addPerm(perm);

        assertEquals(aafServiceReturnedCode, status);
    }

    @Test
    @Parameters({"401", "403", "404", "200", "500"})
    public void shouldHandleErrorDuringDelete(int aafServiceReturnedCode) {
        given(aafConnection.delAaf(any(AafObject.class), anyString())).willReturn(aafServiceReturnedCode);
        DmaapGrant grant = new DmaapGrant(new DmaapPerm("perm", "type", "action"), "roles");

        int status = aafService.delGrant(grant);

        assertEquals(aafServiceReturnedCode, status);
    }
}