aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-11-28 22:56:16 -0600
committerRob Landley <rob@landley.net>2012-11-28 22:56:16 -0600
commit4d904aa766f5052745ee4e5f8381b64bfde6a779 (patch)
treeba2821f22e7d7f60a75df33cf604a35a882e4f07
parent80aab262f1cb76477a31918b668110c2b0a11a22 (diff)
downloadtoybox-4d904aa766f5052745ee4e5f8381b64bfde6a779.tar.gz
md5sum tests from RFC 1321
-rwxr-xr-xscripts/test/md5sum.test22
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/test/md5sum.test b/scripts/test/md5sum.test
new file mode 100755
index 00000000..741ec62f
--- /dev/null
+++ b/scripts/test/md5sum.test
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+[ -f testing.sh ] && . testing.sh
+
+#testing "name" "command" "result" "infile" "stdin"
+
+# These tests are from RFC 1321 appendix 5, reshuffled slightly to test
+# varying argument numbers
+
+testing "md5sum ''" "md5sum" "d41d8cd98f00b204e9800998ecf8427e -\n" "" ""
+testing "md5sum infile" "md5sum input" \
+ "0cc175b9c0f1b6a831c399e269772661 input\n" "a" ""
+testing "md5sum two files" "md5sum - input" \
+ "900150983cd24fb0d6963f7d28e17f72 -\nf96b697d7cb7938d525a2f31aaf161d0 input\n" \
+ "message digest" "abc"
+testing "md5sum 4" "md5sum" "c3fcd3d76192e4007dfb496cca67e13b -\n" \
+ "" "abcdefghijklmnopqrstuvwxyz"
+testing "md5sum 5" "md5sum" "d174ab98d277d9f5a5611c2c9f419d9f -\n" \
+ "" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
+testing "md5sum 6" "md5sum" "57edf4a22be3c955ac49da2e2107b67a -\n" \
+ "" "12345678901234567890123456789012345678901234567890123456789012345678901234567890"
+