aboutsummaryrefslogtreecommitdiffstats
path: root/integrity-audit/src/test/java/org/onap/policy/common/ia/AuditPeriodTest.java
blob: 9aad68635e569dd337f0ae53ca64ee43ed096467 (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
/*-
 * ============LICENSE_START=======================================================
 * Integrity Audit
 * ================================================================================
 * 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.common.ia;

import static org.junit.Assert.assertTrue;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicLong;

//import org.apache.commons.logging.Log;
//import org.apache.commons.logging.LogFactory;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.policy.common.logging.flexlogger.FlexLogger;
import org.onap.policy.common.logging.flexlogger.Logger;
import org.onap.policy.common.utils.test.log.logback.ExtractAppender;

/*
 * All JUnits are designed to run in the local development environment
 * where they have write privileges and can execute time-sensitive
 * tasks.
 */
public class AuditPeriodTest extends IntegrityAuditTestBase {

    private static Logger logger = FlexLogger.getLogger(AuditPeriodTest.class);

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        IntegrityAuditTestBase.setUpBeforeClass(DEFAULT_DB_URL_PREFIX + AuditPeriodTest.class.getSimpleName());
    }

    @AfterClass
    public static void tearDownAfterClass() {
        IntegrityAuditTestBase.tearDownAfterClass();
    }

    /**
     * Set up for test case.
     */
    @Override
    @Before
    public void setUp() {
        logger.info("setUp: Entering");

        super.setUp();

        logger.info("setUp: Exiting");

    }

    /**
     * Tear down after test cases.
     */
    @Override
    @After
    public void tearDown() {
        logger.info("tearDown: Entering");

        super.tearDown();

        logger.info("tearDown: Exiting");
    }

    /*
     * Verifies (via log parsing) that when a negative audit period is specified, the audit is
     * suppressed.
     */
    @Test
    public void testNegativeAuditPeriod() throws Exception {

        logger.info("testNegativeAuditPeriod: Entering");

        properties.put(IntegrityAuditProperties.AUDIT_PERIOD_SECONDS, "-1");

        ExtractAppender logA = watch(debugLogger, "Suppressing integrity audit, integrityAuditPeriodSeconds=([^,]*)");

        MyIntegrityAudit integrityAudit = makeAuditor("pdp1", A_SEQ_PU);

        /*
         * Sleep long enough to allow
         * 
         * 1) audit to immediately terminate.
         */
        waitThread(integrityAudit);

        verifyItemsInLog(logA, "-1");

        logger.info("testNegativeAuditPeriod: Exiting");

    }

    /*
     * Verifies (via log parsing) that when an audit period of zero is specified, the audit runs
     * continuously, generating a number of sleep/wake sequences in a short period of time (e.g.
     * 100ms).
     */
    @Test
    public void testZeroAuditPeriod() throws Exception {

        logger.info("testZeroAuditPeriod: Entering");

        properties.put(IntegrityAuditProperties.AUDIT_PERIOD_SECONDS, "0");

        final ExtractAppender logA = watch(debugLogger, "[Aa]waking from (0s) sleep");

        MyIntegrityAudit integrityAudit = makeAuditor("pdp1", A_SEQ_PU);

        /*
         * Wait for
         * 
         * 1) audit to generate a bunch of sleep wake sequences.
         */
        String[] awakings = new String[10];
        for (int x = 0; x < awakings.length; ++x) {
            awakings[x] = "0s";
            runAudit(integrityAudit);
        }

        // run a couple more audits
        runAudit(integrityAudit);
        runAudit(integrityAudit);

        /*
         * We should get at least 10 sleep/wake sequences.
         */

        verifyItemsInLog(logA, awakings);

        logger.info("testZeroAuditPeriod: Exiting");

    }

    /**
     * Verifies that when different audit periods are specified, there is an appropriate interval
     * between the audits.
     */
    @Test
    public void testLongAuditPeriod() throws Exception {

        logger.info("testLongAuditPeriod: Entering");

        testAuditPeriod(100);
        testAuditPeriod(200);

        logger.info("testLongAuditPeriod: Exiting");
    }

    /**
     * Verifies that audits actually take as long as expected, even with multiple auditors running
     * simultaneously.
     * 
     * @param periodSec audit period, in seconds
     * @throws Exception if an error occurs
     * @throws InterruptedException if the thread is interrupted
     */
    private void testAuditPeriod(long periodSec) throws Exception, InterruptedException {

        properties.put(IntegrityAuditProperties.AUDIT_PERIOD_SECONDS, String.valueOf(periodSec));

        /*
         * Start several auditors.
         */
        MyIntegrityAudit[] ia = new MyIntegrityAudit[3];
        for (int x = 0; x < ia.length; ++x) {
            ia[x] = makeAuditor("pdp" + x, A_SEQ_PU);
        }

        /*
         * Run an audit on all of them.
         */
        runAudit(ia);

        /*
         * Now run again and ensure it waited long enough between runs.
         */
        long tmin = minAuditTime(ia);
        assertTrue(tmin >= periodSec + AuditThread.AUDIT_COMPLETION_INTERVAL * AuditThread.AUDIT_RESET_CYCLES);

        /*
         * Now run again and ensure it waited long enough between runs.
         */
        tmin = minAuditTime(ia);
        assertTrue(tmin >= periodSec + AuditThread.AUDIT_COMPLETION_INTERVAL * AuditThread.AUDIT_RESET_CYCLES);
    }

    /**
     * Runs simultaneous audits on several auditors.
     * 
     * @param auditors the auditors
     * @return the minimum time, in milliseconds, elapsed for any given auditor
     * @throws InterruptedException if the thread is interrupted
     */
    private long minAuditTime(MyIntegrityAudit... auditors) throws InterruptedException {
        List<Thread> threads = new ArrayList<>(auditors.length);
        AtomicLong tmin = new AtomicLong(Long.MAX_VALUE);

        // create the threads
        for (MyIntegrityAudit p : auditors) {
            Thread auditThread = new Thread() {

                @Override
                public void run() {
                    try {
                        long tbegin = p.getTimeInMillis();
                        runAudit(p);
                        long elapsed = p.getTimeInMillis() - tbegin;
                        
                        synchronized (tmin) {
                            tmin.set(Math.min(tmin.get(), elapsed));
                        }

                    } catch (InterruptedException e) {
                        ;
                    }
                }
            };

            auditThread.setDaemon(true);
            threads.add(auditThread);
        }

        // start the threads
        for (Thread t : threads) {
            t.start();
        }

        // wait for them to complete
        for (Thread t : threads) {
            t.join();
        }

        return tmin.get();
    }
}