aboutsummaryrefslogtreecommitdiff
path: root/tests/echo.test
blob: 248454e768ac96eaa0e11ee8cf0f8eece159fb0e (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
32
33
34
35
36
37
38
39
40
#!/bin/bash

[ -f testing.sh ] && . testing.sh

# This one's tricky both because echo is a shell builtin (so $PATH is
# irrelevant) and because the "result" field is parsed with echo -e.
# To make it work, "$CMD" is an explicit path to the command being tested,
# so "result" keeps using the shell builtin but we test the one in toybox.

#testing "name" "command" "result" "infile" "stdin"

testcmd "echo" "&& echo yes" "\nyes\n" "" ""
testcmd "1 2 3" "one  two	three" "one two three\n" "" ""
testcmd "with spaces" "'one  two	three'" \
	"one  two	three\n" "" ""
testcmd "" "-n" "" "" ""
testcmd "" "-n one" "one" "" ""
testcmd "" "one -n" "one -n\n" "" ""
testcmd "-en" "-en 'one\ntwo'" "one\ntwo" "" ""
testcmd "" "--hello" "--hello\n" "" ""
testcmd "-e all" "-e '\a\b\c\f\n\r\t\v\\\0123' | xxd -p" "0708\n" "" ""
testcmd "-e all but \\c" "-e '"'\a\b\f\n\r\t\v\\\0123'"' | xxd -p" \
	"07080c0a0d090b5c530a\n" "" ""
testcmd "-nex hello" "-nex hello" "-nex hello\n" "" ""

# Octal formatting tests
testcmd "-e octal values" \
	"-ne '\01234 \0060 \060 \0130\0131\0132 \077\012'" \
	"S4 0 0 XYZ ?\n" "" ""

# Hexadecimal value tests
testcmd "-e hexadecimal values" \
	"-ne '\x534 \x30 \x58\x59\x5a \x3F\x0A'"\
	"S4 0 XYZ ?\n" "" ""

testcmd "-e \p" "-e '\\p'" "\\p\n" "" ""

# http://austingroupbugs.net/view.php?id=1222 added -E
testcmd "-En" "-En 'one\ntwo'" 'one\\ntwo' "" ""
testcmd "-eE" "-eE '\e'" '\\e\n' "" ""