2 # Basic tests for "md5sum".
4 # Copyright (C) 1998-2017 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 # Turn off localization of executable's output.
24 @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x
3;
26 my $degenerate = "d41d8cd98f00b204e9800998ecf8427e";
28 my $try_help = "Try 'md5sum --help' for more information.\n";
32 ['1', {IN
=> {f
=> ''}}, {OUT
=>"$degenerate f\n"}],
33 ['2', {IN
=> {f
=> 'a'}}, {OUT
=>"0cc175b9c0f1b6a831c399e269772661 f\n"}],
34 ['3', {IN
=> {f
=> 'abc'}}, {OUT
=>"900150983cd24fb0d6963f7d28e17f72 f\n"}],
35 ['4', {IN
=> {f
=> 'message digest'}},
36 {OUT
=>"f96b697d7cb7938d525a2f31aaf161d0 f\n"}],
37 ['5', {IN
=> {f
=> 'abcdefghijklmnopqrstuvwxyz'}},
38 {OUT
=>"c3fcd3d76192e4007dfb496cca67e13b f\n"}],
39 ['6', {IN
=> {f
=> join ('', 'A'..'Z', 'a'..'z', '0'..'9')}},
40 {OUT
=>"d174ab98d277d9f5a5611c2c9f419d9f f\n"}],
41 ['7', {IN
=> {f
=> '1234567890' x
8}},
42 {OUT
=>"57edf4a22be3c955ac49da2e2107b67a f\n"}],
43 ['backslash-1', {IN
=> {".\nfoo"=> ''}},
44 {OUT
=>"\\$degenerate .\\nfoo\n"}],
45 ['backslash-2', {IN
=> {".\\foo"=> ''}},
46 {OUT
=>"\\$degenerate .\\\\foo\n"}],
47 ['check-1', '--check', {AUX
=> {f
=> ''}},
48 {IN
=> {'f.md5' => "$degenerate f\n"}},
51 # Same as above, but with an added empty line, to provoke --strict.
52 ['ck-strict-1', '--check --strict', {AUX
=> {f
=> ''}},
53 {IN
=> {'f.md5' => "$degenerate f\n\n"}},
56 . "WARNING: 1 line is improperly formatted\n"},
59 # As above, but with the invalid line first, to ensure that following
60 # lines are processed in spite of the preceding invalid input line.
61 ['ck-strict-2', '--check --strict', {AUX
=> {f
=> ''}},
62 {IN
=> {'in.md5' => "\n$degenerate f\n"}},
65 . "WARNING: 1 line is improperly formatted\n"},
67 ['check-2', '--check', '--status', {IN
=>{'f.md5' => "$degenerate f\n"}},
68 {AUX
=> {f
=> 'foo'}}, {EXIT
=> 1}],
69 ['check-quiet1', '--check', '--quiet', {AUX
=> {f
=> ''}},
70 {IN
=> {'f.md5' => "$degenerate f\n"}},
72 ['check-quiet2', '--check', '--quiet',
73 {IN
=>{'f.md5' => "$degenerate f\n"}},
74 {AUX
=> {f
=> 'foo'}}, {OUT
=>"f: FAILED\n"},
75 {ERR
=>"md5sum: WARNING: 1 computed"
76 . " checksum did NOT match\n"},
78 # Exercise new-after-8.6, easier-to-translate diagnostics.
79 ['check-multifail', '--check',
85 {OUT
=>"f: FAILED\nf: FAILED\n"},
86 {ERR
=>"md5sum: WARNING: 1 line is improperly formatted\n"
87 . "md5sum: WARNING: 2 computed checksums did NOT match\n"},
89 # Similar to the above, but use --warn to evoke one more diagnostic.
90 ['check-multifail-warn', '--check', '--warn',
96 {OUT
=>"f: FAILED\nf: FAILED\n"},
97 {ERR
=>"md5sum: f.md5: 3: "
98 . "improperly formatted MD5 checksum line\n"
99 . "md5sum: WARNING: 1 line is improperly formatted\n"
100 . "md5sum: WARNING: 2 computed checksums did NOT match\n"},
102 # The sha1sum and md5sum drivers share a lot of code.
103 # Ensure that md5sum does *not* share the part that makes
104 # sha1sum accept BSD format.
105 ['check-bsd', '--check', {IN
=> {'f.sha1' => "SHA1 (f) = $degenerate\n"}},
107 {ERR
=>"md5sum: f.sha1: no properly formatted "
108 . "MD5 checksum lines found\n"},
110 ['check-bsd2', '--check', {IN
=> {'f.md5' => "MD5 (f) = $degenerate\n"}},
111 {AUX
=> {f
=> ''}}, {OUT
=>"f: OK\n"}],
112 ['check-bsd3', '--check', '--status',
113 {IN
=> {'f.md5' => "MD5 (f) = $degenerate\n"}},
114 {AUX
=> {f
=> 'bar'}}, {EXIT
=> 1}],
115 ['check-openssl', '--check', {IN
=> {'f.sha1' => "SHA1(f)= $degenerate\n"}},
117 {ERR
=>"md5sum: f.sha1: no properly formatted "
118 . "MD5 checksum lines found\n"},
120 ['check-openssl2', '--check', {IN
=> {'f.md5' => "MD5(f)= $degenerate\n"}},
121 {AUX
=> {f
=> ''}}, {OUT
=>"f: OK\n"}],
122 ['check-openssl3', '--check', '--status',
123 {IN
=> {'f.md5' => "MD5(f)= $degenerate\n"}},
124 {AUX
=> {f
=> 'bar'}}, {EXIT
=> 1}],
125 ['check-ignore-missing-1', '--check', '--ignore-missing',
127 {IN
=> {'f.md5' => "$degenerate f\n".
128 "$degenerate f.missing\n"}},
130 ['check-ignore-missing-2', '--check', '--ignore-missing',
132 {IN
=> {'f.md5' => "$degenerate f\n".
133 "$degenerate f.missing\n"}},
135 ['check-ignore-missing-3', '--check', '--quiet', '--ignore-missing',
137 {IN
=> {'f.md5' => "$degenerate missing/f\n".
140 ['check-ignore-missing-4', '--ignore-missing',
142 {ERR
=>"md5sum: the --ignore-missing option is ".
143 "meaningful only when verifying checksums\n".
146 ['check-ignore-missing-5', '--check', '--ignore-missing',
148 {IN
=> {'f.md5' => "$degenerate missing\n"}},
150 "md5sum: f.md5: no file was verified\n"},
152 # coreutils-8.25 with --ignore-missing treated checksums starting with 00
153 # as if the file was not present
154 ['check-ignore-missing-6', '--check', '--ignore-missing',
157 "006999e6df389641adf1fa3a74801d9d f\n"}},
159 ['bsd-segv', '--check', {IN
=> {'z' => "MD5 ("}}, {EXIT
=> 1},
160 {ERR
=> "$prog: z: no properly formatted MD5 checksum lines found\n"}],
162 # Ensure that when there's a NUL byte among the checksum hex digits
163 # we detect the invalid formatting and don't even open the file.
164 # Up to coreutils-6.10, this would report:
166 # md5sum: WARNING: 1 of 1 computed checksum did NOT match
167 ['nul-in-cksum', '--check', {IN
=> {'h'=>("\0"x32
)." h\n"}}, {EXIT
=> 1},
168 {ERR
=> "$prog: h: no properly formatted MD5 checksum lines found\n"}],
171 # Insert the '--text' argument for each test.
175 splice @
$t, 1, 0, '--text' unless @
$t[1] =~ /--check/;
178 my $save_temps = $ENV{DEBUG
};
179 my $verbose = $ENV{VERBOSE
};
181 my $fail = run_tests
($prog, $prog, \
@Tests, $save_temps, $verbose);