aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/guard/src/test/java/org/onap/policy/guard/PIPEngineGetHistoryTest.java
blob: f1fd599613ffb6fc3e17977edb4fe2035a338147 (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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*-
 * ============LICENSE_START=======================================================
 * guard
 * ================================================================================
 * Copyright (C) 2017-2018 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=========================================================
 */

package org.onap.policy.guard;

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

import com.att.research.xacml.api.Attribute;
import com.att.research.xacml.api.AttributeValue;
import com.att.research.xacml.api.Identifier;
import com.att.research.xacml.api.Status;
import com.att.research.xacml.api.pip.PIPEngine;
import com.att.research.xacml.api.pip.PIPException;
import com.att.research.xacml.api.pip.PIPFinder;
import com.att.research.xacml.api.pip.PIPRequest;
import com.att.research.xacml.api.pip.PIPResponse;
import com.att.research.xacml.std.IdentifierImpl;
import com.att.research.xacml.std.StdAttribute;
import com.att.research.xacml.std.StdAttributeValue;
import com.att.research.xacml.std.StdStatus;
import com.att.research.xacml.std.StdStatusCode;
import com.att.research.xacml.std.pip.StdPIPRequest;
import com.att.research.xacml.std.pip.StdPIPResponse;
import com.att.research.xacml.std.pip.finders.EngineFinder;
import com.att.research.xacml.util.FactoryException;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Properties;
import java.util.UUID;

import javax.persistence.EntityManager;
import javax.persistence.Persistence;
import javax.persistence.Query;

import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.policy.drools.system.PolicyEngine;

public class PIPEngineGetHistoryTest {
    static PIPEngineGetHistory pegh;
    private static final String ISSUER = "issuerIntw:mid:end";

    /**
     * Set up test class.
     */
    @BeforeClass
    public static void testPipEngineGetHistory() {
        pegh = null;
        try {
            pegh = new PIPEngineGetHistory();
        } catch (Exception e) {
            fail("PIPEngineGetHistory constructor failed");
        }
    }

    @Test
    public void testAttributesRequired() {
        assertTrue(pegh.attributesRequired().isEmpty());
    }

    @Test
    public void testAttributesProvided() {
        assertTrue(pegh.attributesProvided().isEmpty());
    }

    @Test
    public void testGetAttributes() {
        StdPIPRequest mockPipRequest = mock(StdPIPRequest.class);
        EngineFinder mockPipFinder = mock(EngineFinder.class);

        // Test issuer null
        when(mockPipRequest.getIssuer()).thenReturn(null);
        try {
            assertEquals(StdPIPResponse.PIP_RESPONSE_EMPTY, pegh.getAttributes(mockPipRequest, mockPipFinder));
        } catch (Exception e) {
            fail("getAttributes failed");
        }

        // Test issuer not equal to our issuer
        pegh.setIssuer(ISSUER);
        when(mockPipRequest.getIssuer()).thenReturn("something else");
        try {
            assertEquals(StdPIPResponse.PIP_RESPONSE_EMPTY, pegh.getAttributes(mockPipRequest, mockPipFinder));
        } catch (Exception e) {
            fail("getAttributes failed");
        }

        // Test issuer equal to our issuer
        when(mockPipRequest.getIssuer()).thenReturn(ISSUER);
        try {
            assertNotNull(pegh.getAttributes(mockPipRequest, mockPipFinder));
        } catch (Exception e) {
            // Normal to catch exception
        }
    }

    @Test
    public void testGetCountFromDb() {
        // Set PU
        System.setProperty(Util.PU_KEY, Util.JUNITPU);

        // Enter dummy props to avoid nullPointerException
        PolicyEngine.manager.setEnvironmentProperty(Util.ONAP_KEY_URL, "a");
        PolicyEngine.manager.setEnvironmentProperty(Util.ONAP_KEY_USER, "b");
        PolicyEngine.manager.setEnvironmentProperty(Util.ONAP_KEY_PASS, "c");

        // Connect to in-mem db
        EntityManager em = null;
        try {
            em = Persistence.createEntityManagerFactory(Util.JUNITPU).createEntityManager();
        } catch (Exception e) {
            fail(e.getLocalizedMessage());
        }

        String sql = "CREATE TABLE `operationshistory10` (" + "`CLNAME` varchar(255)," + "`requestID` varchar(100),"
                + "`actor` varchar(50) ," + "`operation` varchar(50)," + "`target` varchar(50),"
                + "`starttime` timestamp," + "`outcome` varchar(50)," + "`message` varchar(255),"
                + "`subrequestId` varchar(100)," + "`endtime` timestamp" + ")";
        // Create necessary table
        Query nq = em.createNativeQuery(sql);
        em.getTransaction().begin();
        nq.executeUpdate();
        em.getTransaction().commit();

        // Use reflection to run getCountFromDB
        Method method = null;
        int count = -1;
        try {
            method = PIPEngineGetHistory.class.getDeclaredMethod("getCountFromDb", String.class, String.class,
                    String.class, String.class);
            method.setAccessible(true);
            count = (int) method.invoke(null, "actor", "op", "target", "1 MINUTE");
        } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException
                | NoSuchMethodException e) {
            fail(e.getLocalizedMessage());
        }
        // No entries yet
        assertEquals(0, count);

        // Add an entry
        String addEntry = "insert into operationshistory10 (outcome, CLNAME, actor, operation, target, endtime)"
                + "values('success','testcl', 'actor', 'op', 'target', CURRENT_TIMESTAMP())";
        Query nq2 = em.createNativeQuery(addEntry);
        em.getTransaction().begin();
        nq2.executeUpdate();
        em.getTransaction().commit();
        em.close();

        try {
            count = (int) method.invoke(null, "actor", "op", "target", "1 MINUTE");
        } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
            fail(e.getLocalizedMessage());
        }
        // Should count 1 entry now
        assertEquals(1, count);
    }

    @Test
    public void testConfigure() throws PIPException {
        PIPEngineGetHistory pegh = new PIPEngineGetHistory();
        pegh.configure("Dorothy", new Properties());

        pegh.setDescription(null);
        pegh.setIssuer(null);
        pegh.configure("Dorothy", new Properties());
    }

    @Test
    public void getAttributesTest() throws URISyntaxException, PIPException, FactoryException {
        PIPEngineGetHistory pegh = new PIPEngineGetHistory();
        pegh.setIssuer("Dorothy");

        Identifier identifierCategory = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/category"));;
        Identifier identifierAttribute = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/atrtribute"));;
        Identifier identifierDataType = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/datatype"));;
        PIPRequest pipRequest = new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType,
                "Dorothy,tw:1000:SECOND");

        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));


        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinderPipException()));
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinderResponseStatusNok()));
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinderResponseEmptyAttrs()));
    }

    @Test
    public void timeWindowTest() throws URISyntaxException, PIPException, FactoryException {
        PIPEngineGetHistory pegh = new PIPEngineGetHistory();
        pegh.setIssuer("Dorothy");

        Identifier identifierCategory = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/category"));;
        Identifier identifierAttribute = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/atrtribute"));;
        Identifier identifierDataType = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/datatype"));;

        PIPRequest pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:SECOND");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:MINUTE");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:HOUR");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:DAY");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:WEEK");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:MONTH");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest = new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType,
                "Dorothy,tw:100:QUARTER");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest =
                new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType, "Dorothy,tw:100:YEAR");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest = new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType,
                "Dorothy,tw:100:FORTNIGHT");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        pipRequest = new StdPIPRequest(identifierCategory, identifierAttribute, identifierDataType,
                "Dorothy,tw:100:FORT NIGHT");
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinder()));

        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinderPipException()));
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinderResponseStatusNok()));
        assertNotNull(pegh.getAttributes(pipRequest, new DummyPipFinderResponseEmptyAttrs()));
    }

    private class DummyPipFinder implements PIPFinder {
        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            try {
                List<Attribute> attributeList = new ArrayList<>();
                Identifier categoryIdIn = new IdentifierImpl(new URI("http://somewhere.over.the.rainbow/category"));
                Identifier dataTypeIdIn = new IdentifierImpl(new URI("http://www.w3.org/2001/XMLSchema#string"));

                Identifier attributeIdIn0 = new IdentifierImpl(new URI(UUID.randomUUID().toString()));
                AttributeValue<String> valueIn0 = new StdAttributeValue<String>(dataTypeIdIn, "ActorDorothy");
                Attribute attribute0 = new StdAttribute(categoryIdIn, attributeIdIn0, valueIn0);
                attributeList.add(attribute0);

                Identifier attributeIdIn1 = new IdentifierImpl(new URI(UUID.randomUUID().toString()));
                AttributeValue<String> valueIn1 = new StdAttributeValue<String>(dataTypeIdIn, "OperationHomeFromOZ");
                Attribute attribute1 = new StdAttribute(categoryIdIn, attributeIdIn1, valueIn1);
                attributeList.add(attribute1);

                Identifier attributeIdIn2 = new IdentifierImpl(new URI(UUID.randomUUID().toString()));
                AttributeValue<String> valueIn2 = new StdAttributeValue<String>(dataTypeIdIn, "TargetWickedWitch");
                Attribute attribute2 = new StdAttribute(categoryIdIn, attributeIdIn2, valueIn2);
                attributeList.add(attribute2);

                return new StdPIPResponse(attributeList);
            } catch (Exception e) {
                return null;
            }
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public Collection<PIPEngine> getPIPEngines() {
            return null;
        }
    }

    private class DummyPipFinderPipException implements PIPFinder {
        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            throw new PIPException();
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public Collection<PIPEngine> getPIPEngines() {
            return null;
        }
    }

    private class DummyPipFinderResponseStatusNok implements PIPFinder {
        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            Status status = new StdStatus(StdStatusCode.STATUS_CODE_PROCESSING_ERROR, "Processing Error");
            return new StdPIPResponse(status);
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public Collection<PIPEngine> getPIPEngines() {
            return null;
        }
    }

    private class DummyPipFinderResponseEmptyAttrs implements PIPFinder {
        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude) throws PIPException {
            List<Attribute> attributeList = new ArrayList<>();
            return new StdPIPResponse(attributeList);
        }

        @Override
        public PIPResponse getMatchingAttributes(PIPRequest pipRequest, PIPEngine exclude, PIPFinder pipFinderParent)
                throws PIPException {
            return null;
        }

        @Override
        public Collection<PIPEngine> getPIPEngines() {
            return null;
        }
    }
}