X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Flist.lisp;h=ac6ae909c5b56c158be851eeede693e6dca93c99;hb=22ffe93c538d797bc59b91324d3d8a308242a428;hp=f002e1eb430fc3e5f620490d5af8432139549c65;hpb=6b1ca8628e9818fb891fcbef20d090ec244d3593;p=jscl.git diff --git a/tests/list.lisp b/tests/list.lisp index f002e1e..ac6ae90 100644 --- a/tests/list.lisp +++ b/tests/list.lisp @@ -93,6 +93,22 @@ (test (equal (sublis '(("two" . 2)) tree2 :test 'equal) '("one" ("one" 2) (("one" "Two" "three")))))) +;; SUBST +(let ((tree1 '(1 (1 2) (1 2 3) (1 2 3 4)))) + (test (equal (subst "two" 2 tree1) '(1 (1 "two") (1 "two" 3) (1 "two" 3 4)))) + (test (equal (subst "five" 5 tree1) '(1 (1 2) (1 2 3) (1 2 3 4)))) + (test (eq tree1 (subst "five" 5 tree1))) ; Implementation dependent + (test (equal tree1 '(1 (1 2) (1 2 3) (1 2 3 4))))) +(test (equal (subst 'tempest 'hurricane + '(shakespeare wrote (the hurricane))) + '(SHAKESPEARE WROTE (THE TEMPEST)))) +(test (equal (subst 'foo 'nil '(shakespeare wrote (twelfth night))) + '(SHAKESPEARE WROTE (TWELFTH NIGHT . FOO) . FOO))) +(test (equal (subst '(a . cons) '(old . pair) + '((old . spice) ((old . shoes) old . pair) (old . pair)) + :test #'equal) + '((OLD . SPICE) ((OLD . SHOES) A . CONS) (A . CONS)))) + ; COPY-TREE (test (let* ((foo (list '(1 2) '(3 4))) (bar (copy-tree foo))) @@ -104,9 +120,11 @@ ; TREE-EQUAL (test (tree-equal '(1 2 3) '(1 2 3))) +(test (not (tree-equal '(1 2 3) '(3 2 1)))) (test (tree-equal '(1 (2 (3 4) 5) 6) '(1 (2 (3 4) 5) 6))) -(test (tree-equal (cons 1 2) (cons 2 3) - :test (lambda (a b) (not (= a b))))) +(test (tree-equal (cons 1 2) (cons 2 3) :test (lambda (a b) (not (= a b))))) +(test (tree-equal '(1 . 2) '(2 . 1) :test-not #'eql)) +(test (not (tree-equal '(1 . 2) '(1 . 2) :test-not #'eql))) ; FIRST to TENTH (let ((nums '(1 2 3 4 5 6 7 8 9 10))) @@ -151,13 +169,18 @@ (test (equal (assoc 1 alist) '(1 . 2))) (test (equal (rassoc 2 alist) '(1 . 2))) (test (not (assoc 2 alist))) - (test (not (rassoc 1 alist)))) + (test (not (rassoc 1 alist))) + (test (equal (assoc 3 alist :test-not #'=) '(1 . 2))) + (test (equal (rassoc 4 alist :test-not #'=) '(1 . 2))) + (test (equal (assoc 1 alist :key (lambda (x) (/ x 3))) '(3 . 4))) + (test (equal (rassoc 2 alist :key (lambda (x) (/ x 2))) '(3 . 4)))) ; MEMBER (test (equal (member 2 '(1 2 3)) '(2 3))) (test (not (member 4 '(1 2 3)))) (test (equal (member 4 '((1 . 2) (3 . 4)) :key #'cdr) '((3 . 4)))) (test (member '(2) '((1) (2) (3)) :test #'equal)) +(test (member 1 '(1 2 3) :test-not #'eql)) ; ADJOIN (test (equal (adjoin 1 '(2 3)) '(1 2 3))) @@ -169,8 +192,6 @@ (test (not (intersection '(1 2 3) '(4 5 6)))) (test (equal (intersection '((1) (2)) '((2) (3)) :test #'equal) '((2)))) -; SUBST - ; POP (test (let* ((foo '(1 2 3)) (bar (pop foo)))