Mercurial > hg > xemacs-beta
annotate tests/automated/md5-tests.el @ 5840:93a18dbcfd8c
Don't leave fields uninitialized.
author | Marcus Crestani <marcus@crestani.de> |
---|---|
date | Sat, 13 Dec 2014 14:20:17 +0100 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
428 | 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 XEmacs. | |
9 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
10 ;; XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
11 ;; under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
12 ;; Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
13 ;; option) any later version. |
428 | 14 |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
15 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
16 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
17 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
18 ;; for more details. |
428 | 19 |
20 ;; You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
21 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 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) | |
5136
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
57 (Assert (equal (md5 (car x)) (cdr x)))) |
428 | 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) | |
5136
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
67 (Assert (equal (md5 large-string count (+ count (length (car x)))) |
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
68 (cdr x))) |
428 | 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)) | |
5136
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
80 (Assert (equal (md5 (current-buffer)) (cdr x)))) |
428 | 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) | |
5136
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
91 (Assert (equal (md5 (current-buffer) point (+ point (length (car x)))) |
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
92 (cdr x))) |
428 | 93 (incf point (length (car x)))) |
94 md5-tests))) |