summaryrefslogtreecommitdiffstats
path: root/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/util/TestSystemFunctions.java
blob: ec1ebd78c0f8e0d3dc343fcc5103687071b20c4e (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
/*
 * 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 org.junit.Test;

import java.util.Base64;
import java.util.HashSet;
import java.util.Set;

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
    public void testInterruptedSleep() throws Exception {
        long start = System.currentTimeMillis();
        Set<RuntimeException> exceptions = new HashSet<>();
        class Inter extends Thread {
            @Override
            public void run() {
                try {
                    SystemFunctions.systemFunctions().sleep(10000);
                } catch (RuntimeException e) {
                    exceptions.add(e);
                }
            }
        }
        Inter inter = new Inter();
        inter.start();
        //when
        inter.interrupt();

        //verify
        while (exceptions.size() != 1) {

        }
    }

    /**
     * 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
     * (semi useless test)
     */
    @Test
    public void testHttp() {
        assertNotNull(SystemFunctions.systemFunctions().getHttpClient());
    }
}