use of io.kestra.core.tasks.scripts.ScriptOutput in project kestra by kestra-io.
the class AbstractBashTest method preventRelativeFile.
@Test
void preventRelativeFile() throws Exception {
URL resource = AbstractBashTest.class.getClassLoader().getResource("application.yml");
URI put = storageInterface.put(new URI("/file/storage/get.yml"), new FileInputStream(Objects.requireNonNull(resource).getFile()));
assertThrows(IllegalArgumentException.class, () -> {
Bash bash = configure(Bash.builder().commands(new String[] { "echo 1" }).inputFiles(Map.of("{{ inputs.vars }}", put.toString()))).build();
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, bash, ImmutableMap.of("vars", "../../test.txt"));
bash.run(runContext);
});
assertThrows(IllegalArgumentException.class, () -> {
Bash bash = configure(Bash.builder().commands(new String[] { "echo 1" }).inputFiles(Map.of("{{ inputs.vars }}", put.toString()))).build();
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, bash, ImmutableMap.of("vars", "../../test.txt"));
bash.run(runContext);
});
// we allow dot file starting with a .
Bash bash = configure(Bash.builder().commands(new String[] { "echo 1" }).inputFiles(Map.of("{{ inputs.vars }}", put.toString()))).build();
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, bash, ImmutableMap.of("vars", ".test.txt"));
ScriptOutput run = bash.run(runContext);
assertThat(run.getExitCode(), is(0));
}
use of io.kestra.core.tasks.scripts.ScriptOutput in project kestra by kestra-io.
the class AbstractBashTest method files.
@Test
void files() throws Exception {
Bash bash = configure(Bash.builder().outputFiles(Arrays.asList("xml", "csv")).inputFiles(ImmutableMap.of("files/in/in.txt", "I'm here")).commands(new String[] { "echo '::{\"outputs\": {\"extract\":\"'$(cat files/in/in.txt)'\"}}::'", "echo 1 >> {{ outputFiles.xml }}", "echo 2 >> {{ outputFiles.csv }}", "echo 3 >> {{ outputFiles.xml }}" })).build();
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, bash, ImmutableMap.of());
ScriptOutput run = bash.run(runContext);
assertThat(run.getExitCode(), is(0));
assertThat(run.getStdErrLineCount(), is(0));
assertThat(run.getStdOutLineCount(), is(1));
assertThat(run.getVars().get("extract"), is("I'm here"));
InputStream get = storageInterface.get(run.getOutputFiles().get("xml"));
assertThat(CharStreams.toString(new InputStreamReader(get)), is("1\n3\n"));
get = storageInterface.get(run.getOutputFiles().get("csv"));
assertThat(CharStreams.toString(new InputStreamReader(get)), is("2\n"));
}
use of io.kestra.core.tasks.scripts.ScriptOutput in project kestra by kestra-io.
the class AbstractBashTest method useInputFiles.
@Test
void useInputFiles() throws Exception {
Map<String, String> files = new HashMap<>();
files.put("test.sh", "tst() { echo '::{\"outputs\": {\"extract\":\"testbash\"}}::' ; echo '{{workingDir}}'; }");
List<String> commands = new ArrayList<>();
commands.add("source {{workingDir}}/test.sh && tst");
Bash bash = configure(Bash.builder().interpreter("/bin/bash").commands(commands.toArray(String[]::new)).inputFiles(files)).build();
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, bash, ImmutableMap.of());
ScriptOutput run = bash.run(runContext);
assertThat(run.getExitCode(), is(0));
assertThat(run.getVars().get("extract"), is("testbash"));
}
use of io.kestra.core.tasks.scripts.ScriptOutput in project kestra by kestra-io.
the class AbstractBashTest method run.
@Test
void run() throws Exception {
Bash bash = configure(Bash.builder().commands(new String[] { "echo 0", "echo 1", ">&2 echo 2", ">&2 echo 3" })).build();
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, bash, ImmutableMap.of());
ScriptOutput run = bash.run(runContext);
assertThat(run.getExitCode(), is(0));
assertThat(run.getStdOutLineCount(), is(2));
assertThat(run.getStdErrLineCount(), is(2));
}
use of io.kestra.core.tasks.scripts.ScriptOutput in project kestra by kestra-io.
the class NodeTest method fileInSubFolders.
@Test
void fileInSubFolders() throws Exception {
RunContext runContext = runContextFactory.of();
Map<String, String> files = new HashMap<>();
files.put("main.js", "console.log('::{\"outputs\": {\"extract\":\"' + (require('fs').readFileSync('./sub/folder/file/test.txt', 'utf-8')) + '\"}}::')");
files.put("sub/folder/file/test.txt", "OK");
files.put("sub/folder/file/test1.txt", "OK");
Node node = Node.builder().id("test-node-task").nodePath("node").inputFiles(files).build();
ScriptOutput run = node.run(runContext);
assertThat(run.getExitCode(), is(0));
assertThat(run.getVars().get("extract"), is("OK"));
}
Aggregations