neovim/test/functional/fixtures/shell-test.c
Jack Bracewell 2ea7bfc627 terminal: Support extra arguments in 'shell'. #4504
Tokenize p_sh if used as default in ex_terminal(). Previously p_sh was
used as the first arg in a list when calling termopen(), this would try
to call an untokenized version of shell, meaning if you had an argument
in 'shell':
    set shell=/bin/bash\ --login
the command would fail.

Helped-by: oni-link <knil.ino@gmail.com>

Closes #3999
2017-03-17 17:47:33 +01:00

74 lines
2.1 KiB
C

#include <stdio.h>
#include <string.h>
#include <stdint.h>
static void help(void)
{
puts("A simple implementation of a shell for testing termopen().");
puts("");
puts("Usage:");
puts(" shell-test --help");
puts(" Prints this help to stdout.");
puts(" shell-test");
puts(" shell-test EXE");
puts(" Prints \"ready $ \" to stderr.");
puts(" shell-test -t {prompt text}");
puts(" Prints \"{prompt text} $ \" to stderr.");
puts(" shell-test EXE \"prog args...\"");
puts(" Prints \"ready $ prog args...\\n\" to stderr.");
puts(" shell-test -t {prompt text} EXE \"prog args...\"");
puts(" Prints \"{prompt text} $ progs args...\" to stderr.");
puts(" shell-test REP {byte} \"line line line\"");
puts(" Prints \"{lnr}: line line line\\n\" to stdout {byte} times.");
puts(" I.e. for `shell-test REP ab \"test\"'");
puts(" 0: test");
puts(" ...");
puts(" 96: test");
puts(" will be printed because byte `a' is equal to 97.");
}
int main(int argc, char **argv)
{
if (argc == 2 && strcmp(argv[1], "--help") == 0) {
help();
}
if (argc >= 2) {
if (strcmp(argv[1], "-t") == 0) {
if (argc < 3) {
fprintf(stderr,"Missing prompt text for -t option\n");
return 5;
} else {
fprintf(stderr, "%s $ ", argv[2]);
if (argc >= 5 && (strcmp(argv[3], "EXE") == 0)) {
fprintf(stderr, "%s\n", argv[4]);
}
}
} else if (strcmp(argv[1], "EXE") == 0) {
fprintf(stderr, "ready $ ");
if (argc >= 3) {
fprintf(stderr, "%s\n", argv[2]);
}
} else if (strcmp(argv[1], "REP") == 0) {
if (argc < 4) {
fprintf(stderr, "Not enough REP arguments\n");
return 4;
}
uint8_t number = (uint8_t) *argv[2];
for (uint8_t i = 0; i < number; i++) {
printf("%d: %s\n", (int) i, argv[3]);
}
} else {
fprintf(stderr, "Unknown first argument\n");
return 3;
}
return 0;
} else if (argc == 1) {
fprintf(stderr, "ready $ ");
return 0;
} else {
fprintf(stderr, "Missing first argument\n");
return 2;
}
}