Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / md5sum / basic-1
1 #!/bin/sh
2 # Basic tests for "md5sum".
3
4 # Copyright (C) 1998, 1999, 2003, 2005 Free Software Foundation, Inc.
5
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 2 of the License, or
9 # (at your option) any later version.
10
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.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 : ${PERL=perl}
22 : ${srcdir=.}
23
24 $PERL -e 1 > /dev/null 2>&1 || {
25   echo 1>&2 "$0: configure didn't find a usable version of Perl," \
26     "so can't run this test"
27   exit 77
28 }
29
30 exec $PERL -w -I$srcdir/.. -MCoreutils -- - <<\EOF
31 require 5.003;
32 use strict;
33
34 (my $program_name = $0) =~ s|.*/||;
35
36 # Turn off localisation of executable's ouput.
37 @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
38
39 my $degenerate = "d41d8cd98f00b204e9800998ecf8427e";
40
41 my @Tests =
42     (
43      ['1', {IN=> {f=> ''}},     {OUT=>"$degenerate  f\n"}],
44      ['2', {IN=> {f=> 'a'}},    {OUT=>"0cc175b9c0f1b6a831c399e269772661  f\n"}],
45      ['3', {IN=> {f=> 'abc'}},  {OUT=>"900150983cd24fb0d6963f7d28e17f72  f\n"}],
46      ['4', {IN=> {f=> 'message digest'}},
47                                 {OUT=>"f96b697d7cb7938d525a2f31aaf161d0  f\n"}],
48      ['5', {IN=> {f=> 'abcdefghijklmnopqrstuvwxyz'}},
49                                 {OUT=>"c3fcd3d76192e4007dfb496cca67e13b  f\n"}],
50      ['6', {IN=> {f=> join ('', 'A'..'Z', 'a'..'z', '0'..'9')}},
51                                 {OUT=>"d174ab98d277d9f5a5611c2c9f419d9f  f\n"}],
52      ['7', {IN=> {f=> '1234567890' x 8}},
53                                 {OUT=>"57edf4a22be3c955ac49da2e2107b67a  f\n"}],
54      ['backslash', {IN=> {".\\foo"=> ''}},
55                                 {OUT=>"\\$degenerate  .\\\\foo\n"}],
56      ['check-1', '--check', {AUX=> {f=> ''}},
57                                 {IN=> {'f.md5' => "$degenerate  f\n"}},
58                                 {OUT=>"f: OK\n"}],
59      ['check-2', '--check', '--status', {IN=>{'f.md5' => "$degenerate  f\n"}},
60                                 {AUX=> {f=> 'foo'}}, {EXIT=> 1}],
61      # The sha1sum and md5sum drivers share a lot of code.
62      # Ensure that md5sum does *not* share the part that makes
63      # sha1sum accept BSD format.
64      ['check-bsd', '--check', {IN=> {'f.sha1' => "SHA1 (f) = $degenerate\n"}},
65                                 {AUX=> {f=> ''}},
66                                 {ERR=>"md5sum: f.sha1: no properly formatted "
67                                        . "MD5 checksum lines found\n"},
68                                 {EXIT=> 1}],
69      ['check-bsd2', '--check', {IN=> {'f.md5' => "MD5 (f) = $degenerate\n"}},
70                                 {AUX=> {f=> ''}}, {OUT=>"f: OK\n"}],
71      ['check-bsd3', '--check', '--status',
72                                 {IN=> {'f.md5' => "MD5 (f) = $degenerate\n"}},
73                                 {AUX=> {f=> 'bar'}}, {EXIT=> 1}],
74     );
75
76 # Insert the `--text' argument for each test.
77 my $t;
78 foreach $t (@Tests)
79   {
80     splice @$t, 1, 0, '--text' unless @$t[1] =~ /--check/;
81   }
82
83 my $save_temps = $ENV{DEBUG};
84 my $verbose = $ENV{VERBOSE};
85
86 my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
87 my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
88 exit $fail;
89 EOF