Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / misc / sha512sum
1 #!/bin/sh
2 # Test "sha512sum".
3
4 # Copyright (C) 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 $sha_degenerate = "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e";
40
41 my @Tests =
42     (
43      ['s1', {IN=> {f=> ''}},
44                         {OUT=>"$sha_degenerate  f\n"}],
45      ['s2', {IN=> {f=> 'a'}},
46                         {OUT=>"1f40fc92da241694750979ee6cf582f2d5d7d28e18335de05abc54d0560e0f5302860c652bf08d560252aa5e74210546f369fbbbce8c12cfc7957b2652fe9a75  f\n"}],
47      ['s3', {IN=> {f=> 'abc'}},
48                         {OUT=>"ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f  f\n"}],
49      ['s4',
50       {IN=> {f=> 'abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu'}},
51                         {OUT=>"8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909  f\n"}],
52      ['s8', {IN=> {f=> 'a' x 1000000}},
53                         {OUT=>"e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973ebde0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b  f\n"}],
54     );
55
56 # Insert the `--text' argument for each test.
57 my $t;
58 foreach $t (@Tests)
59   {
60     splice @$t, 1, 0, '--text' unless @$t[1] =~ /--check/;
61   }
62
63 my $save_temps = $ENV{DEBUG};
64 my $verbose = $ENV{VERBOSE};
65
66 my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
67 my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
68 exit $fail;
69 EOF