blob: 5ed29fb12cd33e7ae5fe5e3577129961e934633d [file] [log] [blame]
Mike Frysingercaa79402009-11-04 18:41:22 -05001#!/bin/sh
Rob Landley16890752005-09-02 00:41:53 +00002
3# SUSv3 compliant sort tests.
4# Copyright 2005 by Rob Landley <rob@landley.net>
5# Licensed under GPL v2, see file LICENSE for details.
6
Mike Frysingercaa79402009-11-04 18:41:22 -05007. ./testing.sh
Rob Landley16890752005-09-02 00:41:53 +00008
Rob Landley16890752005-09-02 00:41:53 +00009# The basic tests. These should work even with the small busybox.
10
Rob Landley4bb1b042006-03-16 15:20:45 +000011testing "sort" "sort input" "a\nb\nc\n" "c\na\nb\n" ""
12testing "sort #2" "sort input" "010\n1\n3\n" "3\n1\n010\n" ""
13testing "sort stdin" "sort" "a\nb\nc\n" "" "b\na\nc\n"
14testing "sort numeric" "sort -n input" "1\n3\n010\n" "3\n1\n010\n" ""
15testing "sort reverse" "sort -r input" "wook\nwalrus\npoint\npabst\naargh\n" \
Rob Landley16890752005-09-02 00:41:53 +000016 "point\nwook\npabst\naargh\nwalrus\n" ""
17
18# These tests require the full option set.
19
Rob Landley48c61572005-11-07 08:50:53 +000020optional FEATURE_SORT_BIG
Rob Landley16890752005-09-02 00:41:53 +000021# Longish chunk of data re-used by the next few tests
22
23data="42 1 3 woot
2442 1 010 zoology
25egg 1 2 papyrus
267 3 42 soup
27999 3 0 algebra
28"
29
30# Sorting with keys
31
Rob Landley4bb1b042006-03-16 15:20:45 +000032testing "sort one key" "sort -k4,4 input" \
Rob Landley16890752005-09-02 00:41:53 +000033"999 3 0 algebra
34egg 1 2 papyrus
357 3 42 soup
3642 1 3 woot
3742 1 010 zoology
38" "$data" ""
39
Rob Landley4bb1b042006-03-16 15:20:45 +000040testing "sort key range with numeric option" "sort -k2,3n input" \
Rob Landley16890752005-09-02 00:41:53 +000041"42 1 010 zoology
4242 1 3 woot
43egg 1 2 papyrus
447 3 42 soup
45999 3 0 algebra
46" "$data" ""
47
Denys Vlasenko6ae64262009-07-18 16:22:26 +020048test x"$SKIP_KNOWN_BUGS" = x"" && {
49# Busybox is definitely doing these wrong. FIXME
Rob Landley16890752005-09-02 00:41:53 +000050testing "sort key range with numeric option and global reverse" \
Rob Landley4bb1b042006-03-16 15:20:45 +000051"sort -k2,3n -r input" \
Rob Landley16890752005-09-02 00:41:53 +000052"egg 1 2 papyrus
5342 1 3 woot
5442 1 010 zoology
55999 3 0 algebra
567 3 42 soup
57" "$data" ""
58
Rob Landley4bb1b042006-03-16 15:20:45 +000059testing "sort key range with multiple options" "sort -k2,3rn input" \
Rob Landley16890752005-09-02 00:41:53 +000060"7 3 42 soup
61999 3 0 algebra
6242 1 010 zoology
6342 1 3 woot
64egg 1 2 papyrus
65" "$data" ""
Denys Vlasenko6ae64262009-07-18 16:22:26 +020066}
Rob Landley16890752005-09-02 00:41:53 +000067
Denis Vlasenko54cf5112007-02-17 18:11:45 +000068testing "sort key range with two -k options" "sort -k 2,2n -k 1,1r input" "\
69d 2
70b 2
71c 3
72" "\
73c 3
74b 2
75d 2
76" ""
77
Denis Vlasenko8336f082007-01-07 00:21:41 +000078testing "sort with non-default leading delim 1" "sort -n -k2 -t/ input" "\
79/a/2
80/b/1
81" "\
82/a/2
83/b/1
84" ""
85
86testing "sort with non-default leading delim 2" "sort -n -k3 -t/ input" "\
87/b/1
88/a/2
89" "\
90/b/1
91/a/2
92" ""
93
94testing "sort with non-default leading delim 3" "sort -n -k3 -t/ input" "\
95//a/2
96//b/1
97" "\
98//a/2
99//b/1
100" ""
101
102testing "sort -u should consider field only when discarding" "sort -u -k2 input" "\
103a c
104" "\
105a c
106b c
107" ""
108
Denis Vlasenko3b92eaa2008-02-13 14:30:33 +0000109testing "sort -z outputs NUL terminated lines" "sort -z input" "\
110one\0three\0two\0\
111" "\
112one\0two\0three\0\
113" ""
114
Rob Landley39218932006-06-15 20:50:38 +0000115testing "sort key doesn't strip leading blanks, disables fallback global sort" \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000116"sort -n -k2 -t ' '" " a \n 1 \n 2 \n" "" " 2 \n 1 \n a \n"
Rob Landley39218932006-06-15 20:50:38 +0000117
Rob Landley16890752005-09-02 00:41:53 +0000118exit $FAILCOUNT