aboutsummaryrefslogtreecommitdiff
path: root/tests/strings.test
blob: 8becc2f580c27e994e86fcc262172d25f400f5e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

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

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

testing "stdin" "strings" "foobar\n" "" "foobar\n"
testing "file" "strings input" "foobar\n" "foobar\n" ""
testing "string to the end" "strings input" "foobar\n" "foobar" ""
testing "short strings" "strings input" "" "foo\nbar\n" ""
testing "-n6" "strings -n6 input" "foobar\n" "foobar\nbaz\n" ""
testing "string and nulls" "strings input" "foobar\nbazfoo\n" \
	"\0foobar\0\0bazfoo\0foo" ""
testing "-f" "strings -f input" "input: foobar\n" "foobar\n" ""
testing "-o" "strings -o input | sed 's/^ *//'" "6 foobar\n" \
	"\0\0\0\0\0\0foobar\n" ""
testing "-o, multiple strings" "strings -n3 -o input | sed 's/^ *//'" \
	"1 foo\n7 bar\n" "\0foo\0b\0bar\n" ""
testing "-fo" "strings -fo input | sed 's/: */: /'" "input: 6 foobar\n" \
	"\0\0\0\0\0\0foobar\n" ""