Merge branch 'bldchn/diag' into next
[sxemacs] / tests / automated / md5-tests.el
1 ;; Copyright (C) 1998 Free Software Foundation, Inc.
2
3 ;; Author: Hrvoje Niksic <hniksic@xemacs.org>
4 ;; Maintainer: Hrvoje Niksic <hniksic@xemacs.org>
5 ;; Created: 1998
6 ;; Keywords: tests
7
8 ;; This file is part of SXEmacs.
9
10 ;; SXEmacs is free software: you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by the
12 ;; Free Software Foundation, either version 3 of the License, or (at your
13 ;; option) any later version.
14
15 ;; SXEmacs is distributed in the hope that it will be
16 ;; useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>. 
22
23 ;;; Synched up with: Not in FSF.
24
25 ;;; Commentary:
26
27 ;; Test basic md5 functionality.
28 ;; See test-harness.el for instructions on how to run these tests.
29
30 (eval-when-compile
31   (condition-case nil
32       (require 'test-harness)
33     (file-error
34      (push "." load-path)
35      (when (and (boundp 'load-file-name) (stringp load-file-name))
36        (push (file-name-directory load-file-name) load-path))
37      (require 'test-harness))))
38
39 (defconst md5-tests
40   '(
41     ;; Test samples from rfc1321:
42     ("" . "d41d8cd98f00b204e9800998ecf8427e")
43     ("a" . "0cc175b9c0f1b6a831c399e269772661")
44     ("abc" . "900150983cd24fb0d6963f7d28e17f72")
45     ("message digest" . "f96b697d7cb7938d525a2f31aaf161d0")
46     ("abcdefghijklmnopqrstuvwxyz" . "c3fcd3d76192e4007dfb496cca67e13b")
47     ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
48      . "d174ab98d277d9f5a5611c2c9f419d9f")
49     ("12345678901234567890123456789012345678901234567890123456789012345678901234567890"
50      . "57edf4a22be3c955ac49da2e2107b67a")))
51
52 ;;-----------------------------------------------------
53 ;; Test `md5' on strings
54 ;;-----------------------------------------------------
55
56 (mapcar (lambda (x)
57           (Assert-Equal (md5 (car x)) (cdr x)))
58         md5-tests)
59
60 ;;-----------------------------------------------------
61 ;; Test `md5' on portions of strings
62 ;;-----------------------------------------------------
63
64 (let ((large-string (mapconcat #'car md5-tests "")))
65   (let ((count 0))
66     (mapcar (lambda (x)
67               (Assert-Equal (md5 large-string count (+ count (length (car x))))
68                              (cdr x))
69               (incf count (length (car x))))
70             md5-tests)))
71
72 ;;-----------------------------------------------------
73 ;; Test `md5' on buffer
74 ;;-----------------------------------------------------
75
76 (with-temp-buffer
77   (mapcar (lambda (x)
78             (erase-buffer)
79             (insert (car x))
80             (Assert-Equal (md5 (current-buffer)) (cdr x)))
81           md5-tests))
82
83 ;;-----------------------------------------------------
84 ;; Test `md5' on portions of buffer
85 ;;-----------------------------------------------------
86
87 (with-temp-buffer
88   (insert (mapconcat #'car md5-tests ""))
89   (let ((point 1))
90     (mapcar (lambda (x)
91               (Assert-Equal (md5 (current-buffer) point (+ point (length (car x))))
92                              (cdr x))
93               (incf point (length (car x))))
94             md5-tests)))