aboutsummaryrefslogtreecommitdiffstats
path: root/security-tools/src/test/java/com/yahoo/vespa/security/tool/securityenv/MainTest.java
blob: b1d263a1a829e767837cee724804e3229dba60d3 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.security.tool.securityenv;

import com.yahoo.security.tls.MixedMode;
import com.yahoo.security.tls.TransportSecurityOptions;
import com.yahoo.security.tls.TransportSecurityUtils;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.Map;

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


/**
 * @author bjorncs
 */
public class MainTest {

    private final ByteArrayOutputStream stdOutBytes = new ByteArrayOutputStream();
    private final ByteArrayOutputStream stdErrBytes = new ByteArrayOutputStream();
    private final PrintStream stdOut = new PrintStream(stdOutBytes);
    private final PrintStream stdError = new PrintStream(stdErrBytes);

    @TempDir
    public File tmpFolder;

    @Test
    void prints_help_page_on_help_option() throws IOException {
        int exitCode = runMain(List.of("--help"), Map.of());
        assertThat(exitCode).isEqualTo(0);
        assertThat(stdOut()).isEqualTo(readTestResource("expected-help-output.txt"));
    }

    @Test
    void unsets_all_variables_when_no_security_config() throws IOException {
        int exitCode = runMain(List.of(), Map.of());
        assertThat(exitCode).isEqualTo(0);
        assertThat(stdErr()).isEmpty();
        assertThat(stdOut()).isEqualTo(readTestResource("no-security-output.txt"));
    }

    @Test
    void prints_security_variables_with_specified_shell() throws IOException {
        Path configFile = generateConfigFile();
        Map<String, String> env = Map.of(TransportSecurityUtils.CONFIG_FILE_ENVIRONMENT_VARIABLE, configFile.toString());
        int exitCode = runMain(List.of(), env);
        assertThat(exitCode).isEqualTo(0);
        assertThat(stdOut()).isEqualTo(readTestResource("bash-output.txt"));
    }

    @Test
    void prints_security_variables_with_auto_detected_shell() throws IOException {
        Path configFile = generateConfigFile();
        Map<String, String> env = Map.of(
                TransportSecurityUtils.CONFIG_FILE_ENVIRONMENT_VARIABLE, configFile.toString(),
                TransportSecurityUtils.INSECURE_MIXED_MODE_ENVIRONMENT_VARIABLE, MixedMode.TLS_CLIENT_MIXED_SERVER.configValue(),
                "SHELL", "/usr/local/bin/fish");
        int exitCode = runMain(List.of(), env);
        assertThat(exitCode).isEqualTo(0);
        assertThat(stdOut()).isEqualTo(readTestResource("csh-output.txt"));
    }


    @Test
    void prints_error_message_on_unknown_shell_name() {
        int exitCode = runMain(List.of("--shell", "invalid-shell-name"), Map.of());
        assertThat(exitCode).isEqualTo(1);
        assertThat(stdErr()).isEqualTo("Invalid command line arguments: Unknown shell: invalid-shell-name\n");
    }

    @Test
    void prints_error_message_on_unknown_command_line_parameter() {
        int exitCode = runMain(List.of("--unknown-parameter"), Map.of());
        assertThat(exitCode).isEqualTo(1);
        assertThat(stdErr()).isEqualTo("Failed to parse command line arguments: Unrecognized option: --unknown-parameter\n");
    }

    private int runMain(List<String> args, Map<String, String> env) {
        return new Main(stdOut, stdError).execute(args.toArray(new String[0]), env);
    }

    private String stdOut() {
        stdOut.flush();
        return stdOutBytes.toString();
    }

    private String stdErr() {
        stdError.flush();
        return stdErrBytes.toString();
    }

    private static String readTestResource(String fileName) throws IOException {
        return Files.readString(Paths.get(MainTest.class.getResource('/' + fileName).getFile()));
    }

    private Path generateConfigFile() throws IOException {
        TransportSecurityOptions options = new TransportSecurityOptions.Builder()
                .withCertificates(Paths.get("/path/to/certificate"), Paths.get("/path/to/key"))
                .withCaCertificates(Paths.get("/path/to/cacerts"))
                .withHostnameValidationDisabled(true)
                .build();
        Path configFile = File.createTempFile("junit", null, tmpFolder).toPath();
        options.toJsonFile(configFile);
        return configFile;
    }

}