aboutsummaryrefslogtreecommitdiffstats
path: root/dmaap-bc/src/test/java/org/onap/dmaap/dbcapi/aaf/AafServiceFactoryTest.java
blob: 45ff2b13469fb30b88f1e3bdece89966f056dee6 (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
/*-
 * ============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 org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.onap.dmaap.dbcapi.aaf.AafService.ServiceType;
import org.onap.dmaap.dbcapi.util.DmaapConfig;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.BDDMockito.given;

@RunWith(MockitoJUnitRunner.class)
public class AafServiceFactoryTest {

    private static final String USE_AAF = "true";
    private static final String AAF_URL = "https://aaf.url/api";
    private static final String ADMIN_USER = "admin_user";
    private static final String TOPIC_MANAGER = "topic_manager";
    private static final String ADMIN_PASS = "admin_pass";
    private static final String MANAGER_PASS = "manager_pass";
    @Mock
    private DmaapConfig dmaapConfig;
    private AafServiceFactory aafServiceFactory;

    @Before
    public void setUp() throws Exception {
        aafServiceFactory = new AafServiceFactory(dmaapConfig);
    }

    @Test
    public void shouldBuildAafServiceForAafAdmin() {
        givenDmaapConfig();

        AafServiceImpl aafService = (AafServiceImpl) aafServiceFactory.initAafService(ServiceType.AAF_Admin);

        assertEquals(ADMIN_USER, aafService.getIdentity());
        assertEquals(AAF_URL, aafService.getAafUrl());
        assertTrue(aafService.isUseAAF());
    }

    @Test
    public void shouldBuildAafServiceForTopicManager() {
        givenDmaapConfig();

        AafServiceImpl aafService = (AafServiceImpl) aafServiceFactory.initAafService(ServiceType.AAF_TopicMgr);

        assertEquals(TOPIC_MANAGER, aafService.getIdentity());
        assertEquals(AAF_URL, aafService.getAafUrl());
        assertTrue(aafService.isUseAAF());
    }

    @Test
    public void shouldCorrectlyCreateCredentialsForAafAdmin() {
        givenDmaapConfig();

        AafServiceFactory.AafCred cred = aafServiceFactory.getCred(ServiceType.AAF_Admin);

        assertEquals(ADMIN_USER, cred.getIdentity());
        assertEquals(ADMIN_USER + ":" + new AafDecrypt().decrypt(ADMIN_PASS), cred.toString());
    }

    @Test
    public void shouldCorrectlyCreateCredentialsForTopicManager() {
        givenDmaapConfig();

        AafServiceFactory.AafCred cred = aafServiceFactory.getCred(ServiceType.AAF_TopicMgr);

        assertEquals(TOPIC_MANAGER, cred.getIdentity());
        assertEquals(TOPIC_MANAGER + ":" + new AafDecrypt().decrypt(MANAGER_PASS), cred.toString());
    }

    private void givenDmaapConfig() {
        given(dmaapConfig.getProperty("UseAAF", "false")).willReturn(USE_AAF);
        given(dmaapConfig.getProperty("aaf.URL", "https://authentication.domain.netset.com:8100/proxy/")).willReturn(AAF_URL);
        given(dmaapConfig.getProperty("aaf.AdminUser", "noMechId@domain.netset.com")).willReturn(ADMIN_USER);
        given(dmaapConfig.getProperty("aaf.TopicMgrUser", "noMechId@domain.netset.com")).willReturn(TOPIC_MANAGER);
        given(dmaapConfig.getProperty("aaf.AdminPassword", "notSet")).willReturn(ADMIN_PASS);
        given(dmaapConfig.getProperty("aaf.TopicMgrPassword", "notSet")).willReturn(MANAGER_PASS);
    }
}