annotate tests/automated/hash-table-tests.el @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 8626e4521993
children 697ef44129c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
1 ;; Copyright (C) 1998 Free Software Foundation, Inc.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
2
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
3 ;; Author: Martin Buchholz <martin@xemacs.org>
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
4 ;; Maintainer: Martin Buchholz <martin@xemacs.org>
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
5 ;; Created: 1998
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
6 ;; Keywords: tests, database
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
7
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
9
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
13 ;; any later version.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
14
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
18 ;; General Public License for more details.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
19
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
23 ;; 02111-1307, USA.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
24
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
25 ;;; Synched up with: Not in FSF.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
26
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
27 ;;; Commentary:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
28
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
29 ;;; Test hash tables implementation
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
30 ;;; See test-harness.el
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
31
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
32 (condition-case err
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
33 (require 'test-harness)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
34 (file-error
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
35 (when (and (boundp 'load-file-name) (stringp load-file-name))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
36 (push (file-name-directory load-file-name) load-path)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
37 (require 'test-harness))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
38
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
39 ;; Test all combinations of make-hash-table keywords
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
40 (dolist (test '(eq eql equal))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
41 (dolist (size '(0 1 100))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
42 (dolist (rehash-size '(1.1 9.9))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
43 (dolist (rehash-threshold '(0.2 .9))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
44 (dolist (weakness '(nil t key value))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
45 (dolist (data '(() (1 2) (1 2 3 4)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
46 (let ((ht (make-hash-table
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
47 :test test
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
48 :size size
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
49 :rehash-size rehash-size
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
50 :rehash-threshold rehash-threshold
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
51 :weakness weakness)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
52 (Assert (equal ht (car (let ((print-readably t))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
53 (read-from-string (prin1-to-string ht))))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
54 (Assert (eq test (hash-table-test ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
55 (Assert (<= size (hash-table-size ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
56 (Assert (eql rehash-size (hash-table-rehash-size ht)))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
57 (Assert (eql rehash-threshold (hash-table-rehash-threshold ht)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
58 (Assert (eq weakness (hash-table-weakness ht))))))))))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
59
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
60 (loop for (fun weakness) in '((make-hashtable nil)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
61 (make-weak-hashtable t)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
62 (make-key-weak-hashtable key)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
63 (make-value-weak-hashtable value))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
64 do (Assert (eq weakness (hash-table-weakness (funcall fun 10)))))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
65
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
66 (loop for (type weakness) in '((non-weak nil)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
67 (weak t)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
68 (key-weak key)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
69 (value-weak value))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
70 do (Assert (equal (make-hash-table :type type)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
71 (make-hash-table :weakness weakness))))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
72
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
73 (Assert (not (equal (make-hash-table :weakness nil)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
74 (make-hash-table :weakness t))))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
75
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
76 (let ((ht (make-hash-table :size 20 :rehash-threshold .75 :test 'eq))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
77 (size 80))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
78 (Assert (hashtablep ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
79 (Assert (hash-table-p ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
80 (Assert (eq 'eq (hash-table-test ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
81 (Assert (eq 'non-weak (hash-table-type ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
82 (Assert (eq 'non-weak (hashtable-type ht)))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
83 (Assert (eq 'nil (hash-table-weakness ht)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
84 (dotimes (j size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
85 (puthash j (- j) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
86 (Assert (eq (gethash j ht) (- j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
87 (Assert (= (hash-table-count ht) (1+ j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
88 (Assert (= (hashtable-fullness ht) (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
89 (puthash j j ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
90 (Assert (eq (gethash j ht 'foo) j))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
91 (Assert (= (hash-table-count ht) (1+ j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
92 (setf (gethash j ht) (- j))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
93 (Assert (eq (gethash j ht) (- j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
94 (Assert (= (hash-table-count ht) (1+ j))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
95
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
96 (clrhash ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
97 (Assert (= 0 (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
98
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
99 (dotimes (j size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
100 (puthash j (- j) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
101 (Assert (eq (gethash j ht) (- j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
102 (Assert (= (hash-table-count ht) (1+ j))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
103
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
104 (let ((k-sum 0) (v-sum 0))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
105 (maphash #'(lambda (k v) (incf k-sum k) (incf v-sum v)) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
106 (print k-sum)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
107 (print v-sum)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
108 (Assert (= k-sum (/ (* size (- size 1)) 2)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
109 (Assert (= v-sum (- k-sum))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
110
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
111 (let ((count size))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
112 (dotimes (j size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
113 (remhash j ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
114 (Assert (eq (gethash j ht) nil))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
115 (Assert (eq (gethash j ht 'foo) 'foo))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
116 (Assert (= (hash-table-count ht) (decf count))))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
117
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
118 (let ((ht (make-hash-table :size 30 :rehash-threshold .25 :test 'equal))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
119 (size 70))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
120 (Assert (hashtablep ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
121 (Assert (hash-table-p ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
122 (Assert (>= (hash-table-size ht) (/ 30 .25)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
123 (Assert (eql .25 (hash-table-rehash-threshold ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
124 (Assert (eq 'equal (hash-table-test ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
125 (Assert (eq (hash-table-test ht) (hashtable-test-function ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
126 (Assert (eq 'non-weak (hash-table-type ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
127 (dotimes (j size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
128 (puthash (int-to-string j) (- j) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
129 (Assert (eq (gethash (int-to-string j) ht) (- j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
130 (Assert (= (hash-table-count ht) (1+ j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
131 (puthash (int-to-string j) j ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
132 (Assert (eq (gethash (int-to-string j) ht 'foo) j))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
133 (Assert (= (hash-table-count ht) (1+ j))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
134
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
135 (clrhash ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
136 (Assert (= 0 (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
137 (Assert (equal ht (copy-hash-table ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
138
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
139 (dotimes (j size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
140 (setf (gethash (int-to-string j) ht) (- j))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
141 (Assert (eq (gethash (int-to-string j) ht) (- j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
142 (Assert (= (hash-table-count ht) (1+ j))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
143
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
144 (let ((count size))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
145 (dotimes (j size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
146 (remhash (int-to-string j) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
147 (Assert (eq (gethash (int-to-string j) ht) nil))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
148 (Assert (eq (gethash (int-to-string j) ht 'foo) 'foo))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
149 (Assert (= (hash-table-count ht) (decf count))))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
150
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
151 (let ((iterations 5) (one 1.0) (two 2.0))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
152 (flet ((check-copy
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
153 (ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
154 (let ((copy-of-ht (copy-hash-table ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
155 (Assert (equal ht copy-of-ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
156 (Assert (not (eq ht copy-of-ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
157 (Assert (eq (hash-table-count ht) (hash-table-count copy-of-ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
158 (Assert (eq (hash-table-type ht) (hash-table-type copy-of-ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
159 (Assert (eq (hash-table-size ht) (hash-table-size copy-of-ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
160 (Assert (eql (hash-table-rehash-size ht) (hash-table-rehash-size copy-of-ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
161 (Assert (eql (hash-table-rehash-threshold ht) (hash-table-rehash-threshold copy-of-ht))))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
162
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
163 (let ((ht (make-hash-table :size 100 :rehash-threshold .6 :test 'eq)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
164 (dotimes (j iterations)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
165 (puthash (+ one 0.0) t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
166 (puthash (+ two 0.0) t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
167 (puthash (concat "1" "2") t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
168 (puthash (concat "3" "4") t ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
169 (Assert (eq (hashtable-test-function ht) 'eq))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
170 (Assert (eq (hash-table-test ht) 'eq))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
171 (Assert (= (* iterations 4) (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
172 (Assert (eq nil (gethash 1.0 ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
173 (Assert (eq nil (gethash "12" ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
174 (check-copy ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
175 )
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
176
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
177 (let ((ht (make-hash-table :size 100 :rehash-threshold .6 :test 'eql)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
178 (dotimes (j iterations)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
179 (puthash (+ one 0.0) t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
180 (puthash (+ two 0.0) t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
181 (puthash (concat "1" "2") t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
182 (puthash (concat "3" "4") t ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
183 (Assert (eq (hashtable-test-function ht) 'eql))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
184 (Assert (eq (hash-table-test ht) 'eql))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
185 (Assert (= (+ 2 (* 2 iterations)) (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
186 (Assert (eq t (gethash 1.0 ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
187 (Assert (eq nil (gethash "12" ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
188 (check-copy ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
189 )
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
190
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
191 (let ((ht (make-hash-table :size 100 :rehash-threshold .6 :test 'equal)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
192 (dotimes (j iterations)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
193 (puthash (+ one 0.0) t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
194 (puthash (+ two 0.0) t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
195 (puthash (concat "1" "2") t ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
196 (puthash (concat "3" "4") t ht))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
197 (Assert (eq (hashtable-test-function ht) 'equal))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
198 (Assert (eq (hash-table-test ht) 'equal))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
199 (Assert (= 4 (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
200 (Assert (eq t (gethash 1.0 ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
201 (Assert (eq t (gethash "12" ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
202 (check-copy ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
203 )
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
204
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
205 ))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
206
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
207 ;; Test that weak hash-tables are properly handled
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
208 (loop for (weakness expected-count expected-k-sum expected-v-sum) in
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
209 '((nil 6 38 25)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
210 (t 3 6 9)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
211 (key 4 38 9)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
212 (value 4 6 25))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
213 do
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
214 (let* ((ht (make-hash-table :weakness weakness))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
215 (my-obj (cons ht ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
216 (garbage-collect)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
217 (puthash my-obj 1 ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
218 (puthash 2 my-obj ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
219 (puthash 4 8 ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
220 (puthash (cons ht ht) 16 ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
221 (puthash 32 (cons ht ht) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
222 (puthash (cons ht ht) (cons ht ht) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
223 (let ((k-sum 0) (v-sum 0))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
224 (maphash #'(lambda (k v)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
225 (when (integerp k) (incf k-sum k))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
226 (when (integerp v) (incf v-sum v)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
227 ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
228 (Assert (eq 38 k-sum))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
229 (Assert (eq 25 v-sum)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
230 (Assert (eq 6 (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
231 (garbage-collect)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
232 (Assert (eq expected-count (hash-table-count ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
233 (let ((k-sum 0) (v-sum 0))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
234 (maphash #'(lambda (k v)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
235 (when (integerp k) (incf k-sum k))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
236 (when (integerp v) (incf v-sum v)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
237 ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
238 (Assert (eq expected-k-sum k-sum))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
239 (Assert (eq expected-v-sum v-sum)))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
240
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
241 ;;; Test the ability to puthash and remhash the current elt of a maphash
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
242 (let ((ht (make-hash-table :test 'eql)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
243 (dotimes (j 100) (setf (gethash j ht) (- j)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
244 (maphash #'(lambda (k v)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
245 (if (oddp k) (remhash k ht) (puthash k (- v) ht)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
246 ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
247 (let ((k-sum 0) (v-sum 0))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
248 (maphash #'(lambda (k v) (incf k-sum k) (incf v-sum v)) ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
249 (Assert (= (* 50 49) k-sum))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
250 (Assert (= v-sum k-sum))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
251
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
252 ;;; Test reading and printing of hash-table objects
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
253 (let ((h1 #s(hashtable weakness t rehash-size 3.0 rehash-threshold .2 test eq data (1 2 3 4)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
254 (h2 #s(hash-table weakness t rehash-size 3.0 rehash-threshold .2 test eq data (1 2 3 4)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
255 (h3 (make-hash-table :weakness t :rehash-size 3.0 :rehash-threshold .2 :test 'eq)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
256 (Assert (equal h1 h2))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
257 (Assert (not (equal h1 h3)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
258 (puthash 1 2 h3)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
259 (puthash 3 4 h3)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
260 (Assert (equal h1 h3)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
261
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
262 ;;; Testing equality of hash tables
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
263 (Assert (equal (make-hash-table :test 'eql :size 300 :rehash-threshold .9 :rehash-size 3.0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
264 (make-hash-table :test 'eql)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
265 (Assert (not (equal (make-hash-table :test 'eq)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
266 (make-hash-table :test 'equal))))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
267 (let ((h1 (make-hash-table))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
268 (h2 (make-hash-table)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
269 (Assert (equal h1 h2))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
270 (Assert (not (eq h1 h2)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
271 (puthash 1 2 h1)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
272 (Assert (not (equal h1 h2)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
273 (puthash 1 2 h2)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
274 (Assert (equal h1 h2))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
275 (puthash 1 3 h2)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
276 (Assert (not (equal h1 h2)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
277 (clrhash h1)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
278 (Assert (not (equal h1 h2)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
279 (clrhash h2)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
280 (Assert (equal h1 h2))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents:
diff changeset
281 )
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
282
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
283 ;;; Test sxhash
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
284 (Assert (= (sxhash "foo") (sxhash "foo")))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
285 (Assert (= (sxhash '(1 2 3)) (sxhash '(1 2 3))))