summaryrefslogtreecommitdiffstats
path: root/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/util/TestSystemFunctions.java
blob: 749b249debca122350c5d87170fa9ff2d1768b27 (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
/*
 * Copyright 2016-2017, Nokia Corporation
 *
 * 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.
 */

package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util;

import java.util.Base64;
import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
import org.junit.Test;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.NokiaSvnfmApplication;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.Useless;
import org.springframework.boot.SpringApplication;

import static org.junit.Assert.*;

public class TestSystemFunctions {

    /**
     * test sleep
     */
    @Test
    public void testSleep() throws Exception {
        long start = System.currentTimeMillis();
        SystemFunctions.systemFunctions().sleep(123);
        long end = System.currentTimeMillis();
        assertTrue(end - start >= 123);
    }

    /**
     * test interrupted sleep
     */
    @Test
    @SuppressWarnings("squid:S2925") //testing asynchronous execution
    public void testInterruptedSleep() throws Exception {
        AtomicBoolean entered = new AtomicBoolean(false);
        long start = System.currentTimeMillis();
        Set<RuntimeException> exceptions = new HashSet<>();
        class Inter extends Thread {
            @Override
            public void run() {
                try {
                    entered.set(true);
                    SystemFunctions.systemFunctions().sleep(1000000);
                } catch (RuntimeException e) {
                    exceptions.add(e);
                    throw e;
                }
            }
        }
        Inter inter = new Inter();
        inter.start();
        //wait for thread to enter waiting
        while (!entered.get() && inter.getState() != Thread.State.TIMED_WAITING && (System.currentTimeMillis() < start + 60 * 1000)) {
            Thread.sleep(10);
        }
        if (!(System.currentTimeMillis() < start + 60 * 1000)) {
            throw new RuntimeException("Thread did not enter waiting state");
        }
        //when
        inter.interrupt();
        //verify
        while (exceptions.size() != 1 && (System.currentTimeMillis() < start + 60 * 1000)) {
            Thread.sleep(10);
        }
        assertEquals(1, exceptions.size());
        assertEquals("Interrupted while sleeping", exceptions.iterator().next().getMessage());
    }

    /**
     * test current time
     */
    @Test
    public void testCurrentTime() {
        long now = System.currentTimeMillis();
        long now2 = SystemFunctions.systemFunctions().currentTimeMillis();
        assertTrue(Math.abs(now2 - now) < 1000);
    }

    /**
     * test file load
     */
    @Test
    public void testFileLoad() {
        byte[] bytes = SystemFunctions.systemFunctions().loadFile("unittests/empty.zip");
        assertEquals("UEsFBgAAAAAAAAAAAAAAAAAAAAAAAA==", Base64.getEncoder().encodeToString(bytes));
    }

    /**
     * missing file results in error
     */
    @Test
    public void testMissingFileLoad() {
        try {
            SystemFunctions.systemFunctions().loadFile("unittests/missing");
            fail();
        } catch (Exception e) {
            assertEquals("Unable to load unittests/missing", e.getMessage());
        }
    }

    /**
     * Test standard stream wrapping
     */
    @Test
    public void testStandardStreams() {
        assertEquals(System.err, SystemFunctions.systemFunctions().err());
        assertEquals(System.out, SystemFunctions.systemFunctions().out());
        assertEquals(System.in, SystemFunctions.systemFunctions().in());
    }

    /**
     * Test HTTP client wrapping
     */
    @Test
    @Useless //more less already ensured by Java type safety
    public void testHttp() {
        assertNotNull(SystemFunctions.systemFunctions().getHttpClient());
    }

    /**
     * Test spring application wrapping
     */
    @Test
    public void testSpring() {
        SpringApplication springApplication = SystemFunctions.systemFunctions().newSpringApplication(NokiaSvnfmApplication.class);

        assertEquals(1, springApplication.getAllSources().size());
    }
}