aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/pnfsimulator/src/test/java/org/onap/pnfsimulator/SimulatorParamsProviderTest.java
blob: 96397eae1663b330d225d0b38235e8f512121407 (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
package org.onap.pnfsimulator;

import org.apache.commons.cli.ParseException;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.onap.pnfsimulator.cli.SimulatorParamsProvider;
import org.onap.pnfsimulator.cli.SimulatorParams;

import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.assertj.core.api.Java6Assertions.assertThat;

public class SimulatorParamsProviderTest {

    SimulatorParamsProvider parser;

    @BeforeEach
    public void setUp() {
        parser = new SimulatorParamsProvider();
    }

    @Test
    public void whenParserReceiveArgLisWithTwoCorrectParametersShouldReturnCorrectStructOfParams()
        throws ParseException {
        String[] arg = new String[]{
            "-address", "http://localhost:808/eventListner/v5",
            "-config", "config.json"};
        SimulatorParams params = parser.parse(arg);
        assertThat(params.getConfigFilePath()).isEqualToIgnoringCase("config.json");
        assertThat(params.getVesAddress()).isEqualToIgnoringCase("http://localhost:808/eventListner/v5");
    }
}