aboutsummaryrefslogtreecommitdiffstats
path: root/applications/common/src/test/java/org/onap/policy/pdp/xacml/application/common/std/StdMatchablePolicyRequestTest.java
blob: 00c86f25a43d164a3e9b4b60e62ad8757188a941 (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
/*-
 * ============LICENSE_START=======================================================
 * Copyright (C) 2019 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.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.pdp.xacml.application.common.std;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.when;

import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.TreeMap;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.onap.policy.models.decisions.concepts.DecisionRequest;

public class StdMatchablePolicyRequestTest {
    private static final String ACTION = "my-action";
    private static final String ONAP_NAME = "my-name";
    private static final String ONAP_INSTANCE = "my-instance";
    private static final String ONAP_COMPONENT = "my-component";
    private static final String POLICY_SCOPE = "my-scope";
    private static final String POLICY_TYPE = "my-type";

    @Mock
    private DecisionRequest decreq;

    private Map<String, Object> resources;

    private StdMatchablePolicyRequest stdreq;

    /**
     * Initializes objects.
     */
    @Before
    public void setUp() {
        MockitoAnnotations.initMocks(this);

        resources = new TreeMap<>();

        when(decreq.getResource()).thenReturn(resources);
        when(decreq.getAction()).thenReturn(ACTION);
        when(decreq.getOnapComponent()).thenReturn(ONAP_COMPONENT);
        when(decreq.getOnapInstance()).thenReturn(ONAP_INSTANCE);
        when(decreq.getOnapName()).thenReturn(ONAP_NAME);
    }

    @Test
    public void testCreateInstance() {
        resources.put(StdMatchablePolicyRequest.POLICY_SCOPE_KEY, 100);
        resources.put(StdMatchablePolicyRequest.POLICY_TYPE_KEY, 101);

        stdreq = StdMatchablePolicyRequest.createInstance(decreq);

        assertNotNull(stdreq);

        assertEquals(ACTION, stdreq.getAction());
        assertEquals(ONAP_COMPONENT, stdreq.getOnapComponent());
        assertEquals(ONAP_INSTANCE, stdreq.getOnapInstance());
        assertEquals(ONAP_NAME, stdreq.getOnapName());

        assertTrue(stdreq.getPolicyScopes().isEmpty());
        assertTrue(stdreq.getPolicyTypes().isEmpty());
    }

    @Test
    public void testCreateInstance_StringValues() {
        resources.put(StdMatchablePolicyRequest.POLICY_SCOPE_KEY, POLICY_SCOPE);
        resources.put(StdMatchablePolicyRequest.POLICY_SCOPE_KEY + "-x", "unused value");
        resources.put(StdMatchablePolicyRequest.POLICY_TYPE_KEY, POLICY_TYPE);

        stdreq = StdMatchablePolicyRequest.createInstance(decreq);

        Collection<String> res = stdreq.getPolicyScopes();
        assertFalse(res.isEmpty());
        assertEquals(POLICY_SCOPE, res.iterator().next());

        res = stdreq.getPolicyTypes();
        assertFalse(res.isEmpty());
        assertEquals(POLICY_TYPE, res.iterator().next());
    }

    @Test
    public void testCreateInstance_Collections() {
        resources.put(StdMatchablePolicyRequest.POLICY_SCOPE_KEY, Collections.singleton(POLICY_SCOPE));
        resources.put(StdMatchablePolicyRequest.POLICY_TYPE_KEY, Collections.singleton(POLICY_TYPE));

        stdreq = StdMatchablePolicyRequest.createInstance(decreq);

        Collection<String> res = stdreq.getPolicyScopes();
        assertFalse(res.isEmpty());
        assertEquals(POLICY_SCOPE, res.iterator().next());

        res = stdreq.getPolicyTypes();
        assertFalse(res.isEmpty());
        assertEquals(POLICY_TYPE, res.iterator().next());
    }

}