aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/process/ProcessFactoryImplTest.java
blob: 58429f9f08489090cfacb4ceeeb06fd34e94d61e (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.process;

import com.yahoo.vespa.hosted.node.admin.task.util.file.UnixPath;
import com.yahoo.jdisc.test.TestTimer;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.attribute.FileAttribute;
import java.nio.file.attribute.PosixFilePermission;
import java.nio.file.attribute.PosixFilePermissions;
import java.util.List;
import java.util.Optional;
import java.util.Set;

import static com.yahoo.yolean.Exceptions.uncheck;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

public class ProcessFactoryImplTest {
    private final ProcessStarter starter = mock(ProcessStarter.class);
    private final TestTimer timer = new TestTimer();
    private final ProcessFactoryImpl processFactory = new ProcessFactoryImpl(starter, timer);

    @Test
    void testSpawn() {
        CommandLine commandLine = mock(CommandLine.class);
        when(commandLine.getArguments()).thenReturn(List.of("program"));
        when(commandLine.getRedirectStderrToStdoutInsteadOfDiscard()).thenReturn(true);
        when(commandLine.programName()).thenReturn("program");
        Path outputPath;
        try (ChildProcess2Impl child = processFactory.spawn(commandLine)) {
            outputPath = child.getOutputPath();
            assertTrue(Files.exists(outputPath));
            assertEquals("rw-------", new UnixPath(outputPath).getPermissions());
            ArgumentCaptor<ProcessBuilder> processBuilderCaptor =
                    ArgumentCaptor.forClass(ProcessBuilder.class);
            verify(starter).start(processBuilderCaptor.capture());
            ProcessBuilder processBuilder = processBuilderCaptor.getValue();
            assertTrue(processBuilder.redirectErrorStream());
            ProcessBuilder.Redirect redirect = processBuilder.redirectOutput();
            assertEquals(ProcessBuilder.Redirect.Type.WRITE, redirect.type());
            assertEquals(outputPath.toFile(), redirect.file());
        }

        assertFalse(Files.exists(outputPath));
    }

    @Test
    void testSpawnWithPersistentOutputFile() {

        class TemporaryFile implements AutoCloseable {
            private final Path path;

            private TemporaryFile() {
                String outputFileName = ProcessFactoryImplTest.class.getSimpleName() + "-temporary-test-file.out";
                FileAttribute<Set<PosixFilePermission>> fileAttribute = PosixFilePermissions.asFileAttribute(
                        PosixFilePermissions.fromString("rw-------"));
                path = uncheck(() -> Files.createTempFile(outputFileName, ".out", fileAttribute));
            }

            @Override
            public void close() {
                uncheck(() -> Files.deleteIfExists(path));
            }
        }

        try (TemporaryFile outputPath = new TemporaryFile()) {
            CommandLine commandLine = mock(CommandLine.class);
            when(commandLine.getArguments()).thenReturn(List.of("program"));
            when(commandLine.programName()).thenReturn("program");
            when(commandLine.getOutputFile()).thenReturn(Optional.of(outputPath.path));
            try (ChildProcess2Impl child = processFactory.spawn(commandLine)) {
                assertEquals(outputPath.path, child.getOutputPath());
                assertTrue(Files.exists(outputPath.path));
                assertEquals("rw-------", new UnixPath(outputPath.path).getPermissions());
            }

            assertTrue(Files.exists(outputPath.path));
        }

    }

}