X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Flist.lisp;h=ad5eb62188d4bc4e122ee1f6c5b05aa5993f28e5;hb=8de6bd35930e6f3c3e37b9800955faf81882971d;hp=ae986d86dbd31b51461b4ae3a3160dfaa136edcc;hpb=e9d1e5d8ec631a10386cd727ed427bf2240350e6;p=jscl.git diff --git a/tests/list.lisp b/tests/list.lisp index ae986d8..ad5eb62 100644 --- a/tests/list.lisp +++ b/tests/list.lisp @@ -1,11 +1,84 @@ -; Tests for list functions +;; Tests for list functions -(test (let* ((foo '((1 2) (3 4))) +;; TODO: EQUAL doesn't compare lists correctly at the moment. +;; Once it does the lists can be compared directly in many of these tests + +; COPY-TREE +(test (let* ((foo (list '(1 2) '(3 4))) (bar (copy-tree foo))) ;; (SETF (CAR (CAR FOO)) 0) doesn't work in the test for some reason, ;; despite working fine in the REPL (rplaca (car foo) 0) - ;; TODO: EQUAL doesn't compare lists correctly at the moment. - ;; Once it does the lists can be compared directly (not (= (car (car foo)) (car (car bar)))))) + +; TREE-EQUAL +(test (tree-equal '(1 2 3) '(1 2 3))) +(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))))) + +; FIRST to TENTH +(let ((nums '(1 2 3 4 5 6 7 8 9 10))) + (test (= (first nums) 1)) + (test (= (second nums) 2)) + (test (= (third nums) 3)) + (test (= (fourth nums) 4)) + (test (= (fifth nums) 5)) + (test (= (sixth nums) 6)) + (test (= (seventh nums) 7)) + (test (= (eighth nums) 8)) + (test (= (ninth nums) 9)) + (test (= (tenth nums) 10))) + +; TAILP +(let* ((a (list 1 2 3)) + (b (cdr a))) + (test (tailp b a)) + (test (tailp a a))) +(test (tailp 'a (cons 'b 'a))) + +; ACONS +(test (equal '((1 . 2) (3 . 4)) + (acons 1 2 '((3 . 4))))) +(test (equal '((1 . 2)) (acons 1 2 ()))) + +; PAIRLIS +(test (equal '((1 . 3) (0 . 2)) + (pairlis '(0 1) '(2 3)))) +(test (equal '((1 . 2) (a . b)) + (pairlis '(1) '(2) '((a . b))))) + +; COPY-ALIST +(let* ((alist '((1 . 2) (3 . 4))) + (copy (copy-alist alist))) + (test (not (eql alist copy))) + (test (not (eql (car alist) (car copy)))) + (test (equal alist copy))) + +; ASSOC and RASSOC +(let ((alist '((1 . 2) (3 . 4)))) + (test (equal (assoc 1 alist) '(1 . 2))) + (test (equal (rassoc 2 alist) '(1 . 2))) + (test (not (assoc 2 alist))) + (test (not (rassoc 1 alist)))) + +; 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)) + +; INTERSECTION +(test (equal (intersection '(1 2) '(2 3)) '(2))) +(test (not (intersection '(1 2 3) '(4 5 6)))) +(test (equal (intersection '((1) (2)) '((2) (3)) :test #'equal) '((2)))) + +; SUBST +; Can't really test this until EQUAL works properly on lists + +; POP +(test (let* ((foo '(1 2 3)) + (bar (pop foo))) + (and (= bar 1) + (= (car foo) 2))))