blob: 7b4b821d300c3ef15bc2b7f68b2aec2cfb6274ca [file] [log] [blame]
Divya Kotharia0f56be2014-06-26 07:25:20 -05001#!/bin/bash
2
3# Copyright 2013 Robin Mittal <robinmittal.it@gmail.com>
4# Copyright 2013 Divya Kothari <divya.s.kothari@gmail.com>
5
6[ -f testing.sh ] && . testing.sh
7
8#testing "name" "command" "result" "infile" "stdin"
Divya Kotharia0f56be2014-06-26 07:25:20 -05009
Rob Landleydd2cc652015-01-06 15:06:51 -060010# Disable shell builtin
11PRINTF="$(which printf)"
Rob Landleycc39d952015-01-06 12:07:20 -060012
Rob Landleydd2cc652015-01-06 15:06:51 -060013testing "printf text" "$PRINTF TEXT" "TEXT" "" ""
14testing "printf escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \
15 "one\ntwo\n\v\t\r\f\e\b\athree" "" ""
16testing "printf %b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \
17 "one\ntwo\n\v\t\r\f\e\b\athree" "" ""
18testing "printf null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" ""
19testing "printf trailing slash" "$PRINTF 'abc\'" 'abc\' "" ""
20testing "printf octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21testing "printf not octal" "$PRINTF '\9'" '\9' "" ""
22testing "printf hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \
23 ' 41 1b 2b 03 51 0a\n' "" ""
Rob Landley70cbfe82015-01-10 20:02:21 -060024testing "printf %x" "$PRINTF '%x\n' 0x2a" "2a\n" "" ""
Rob Landleydd2cc652015-01-06 15:06:51 -060025
26testing "printf %d 42" "$PRINTF %d 42" "42" "" ""
27testing "printf %d 0x2a" "$PRINTF %d 0x2a" "42" "" ""
28testing "printf %d 052" "$PRINTF %d 052" "42" "" ""
29
30testing "printf %s width precision" \
31 "$PRINTF '%3s,%.3s,%10s,%10.3s' abcde fghij klmno pqrst" \
32 "abcde,fgh, klmno, pqr" "" ""
Rob Landleycc39d952015-01-06 12:07:20 -060033
Rob Landley70cbfe82015-01-10 20:02:21 -060034# posix: "The format operand shall be reused as often as necessary to satisfy
35# the argument operands."
36
37testing "printf extra args" "$PRINTF 'abc%s!%ddef\n' X 42 ARG 36" \
38 "abcX!42def\nabcARG!36def\n" "" ""
39
40testing "printf '%3c'" "printf '%3c' x" " x" "" ""
41
Divya Kotharia0f56be2014-06-26 07:25:20 -050042testing "printf '%5d%4d' 1 21 321 4321 54321" \
Rob Landleydd2cc652015-01-06 15:06:51 -060043 "$PRINTF '%5d%4d' 1 21 321 4321 54321" " 1 21 321432154321 0" "" ""
44testing "printf '%c %c' 78 79" "$PRINTF '%c %c' 78 79" "7 7" "" ""
45testing "printf '%d %d' 78 79" "$PRINTF '%d %d' 78 79" "78 79" "" ""
46testing "printf '%f %f' 78 79" "$PRINTF '%f %f' 78 79" \
Divya Kotharia0f56be2014-06-26 07:25:20 -050047 "78.000000 79.000000" "" ""
Rob Landleydd2cc652015-01-06 15:06:51 -060048testing "printf 'f f' 78 79" "$PRINTF 'f f' 78 79" "f f" "" ""
49testing "printf '%i %i' 78 79" "$PRINTF '%i %i' 78 79" "78 79" "" ""
50testing "printf '%o %o' 78 79" "$PRINTF '%o %o' 78 79" "116 117" "" ""
51testing "printf '%u %u' 78 79" "$PRINTF '%u %u' 78 79" "78 79" "" ""
52testing "printf '%u %u' -1 -2" "$PRINTF '%u %u' -1 -2" \
Divya Kotharia0f56be2014-06-26 07:25:20 -050053 "18446744073709551615 18446744073709551614" "" ""
Rob Landleydd2cc652015-01-06 15:06:51 -060054testing "printf '%x %X' 78 79" "$PRINTF '%x %X' 78 79" "4e 4F" "" ""
55testing "printf '%g %G' 78 79" "$PRINTF '%g %G' 78 79" "78 79" "" ""
56testing "printf '%s %s' 78 79" "$PRINTF '%s %s' 78 79" "78 79" "" ""