2020-04-28 16:33:08 +02:00
|
|
|
;;; pcase-tests.el --- Test suite for pcase macro. -*- lexical-binding:t -*-
|
2014-09-22 10:30:47 -04:00
|
|
|
|
2021-01-01 01:13:56 -08:00
|
|
|
;; Copyright (C) 2012-2021 Free Software Foundation, Inc.
|
2014-09-22 10:30:47 -04:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2014-09-22 10:30:47 -04:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'ert)
|
2014-09-22 12:22:50 -04:00
|
|
|
(require 'cl-lib)
|
2014-09-22 10:30:47 -04:00
|
|
|
|
2014-09-22 12:22:50 -04:00
|
|
|
(ert-deftest pcase-tests-base ()
|
2014-09-22 10:30:47 -04:00
|
|
|
"Test pcase code."
|
|
|
|
(should (equal (pcase '(1 . 2) ((app car '2) 6) ((app car '1) 5)) 5)))
|
|
|
|
|
2014-09-27 00:27:14 -04:00
|
|
|
(ert-deftest pcase-tests-bugs ()
|
|
|
|
(should (equal (pcase '(2 . 3) ;bug#18554
|
|
|
|
(`(,hd . ,(and (pred atom) tl)) (list hd tl))
|
|
|
|
((pred consp) nil))
|
2021-01-16 10:15:47 -05:00
|
|
|
'(2 3)))
|
|
|
|
(should (equal (pcase '(2 . 3)
|
|
|
|
(`(,hd . ,(and (pred (not consp)) tl)) (list hd tl))
|
|
|
|
((pred consp) nil))
|
2014-09-27 00:27:14 -04:00
|
|
|
'(2 3))))
|
|
|
|
|
2014-09-22 12:22:50 -04:00
|
|
|
(pcase-defmacro pcase-tests-plus (pat n)
|
|
|
|
`(app (lambda (v) (- v ,n)) ,pat))
|
|
|
|
|
|
|
|
(ert-deftest pcase-tests-macro ()
|
|
|
|
(should (equal (pcase 5 ((pcase-tests-plus x 3) x)) 2)))
|
|
|
|
|
|
|
|
(defun pcase-tests-grep (fname exp)
|
|
|
|
(when (consp exp)
|
|
|
|
(or (eq fname (car exp))
|
|
|
|
(cl-some (lambda (exp) (pcase-tests-grep fname exp)) (cdr exp)))))
|
|
|
|
|
|
|
|
(ert-deftest pcase-tests-tests ()
|
|
|
|
(should (pcase-tests-grep 'memq '(or (+ 2 3) (memq x y))))
|
|
|
|
(should-not (pcase-tests-grep 'memq '(or (+ 2 3) (- x y)))))
|
|
|
|
|
|
|
|
(ert-deftest pcase-tests-member ()
|
|
|
|
(should (pcase-tests-grep
|
2019-05-21 12:19:38 +02:00
|
|
|
'memq (macroexpand-all '(pcase x ((or 'a 'b 'c) body)))))
|
2014-09-22 12:22:50 -04:00
|
|
|
(should (pcase-tests-grep
|
2019-05-21 12:19:38 +02:00
|
|
|
'memql (macroexpand-all '(pcase x ((or 1 2 3 'a) body)))))
|
|
|
|
(should (pcase-tests-grep
|
|
|
|
'member (macroexpand-all '(pcase x ((or "a" 2 3 'a) body)))))
|
2014-09-22 12:22:50 -04:00
|
|
|
(should-not (pcase-tests-grep
|
|
|
|
'memq (macroexpand-all '(pcase x ((or "a" 2 3) body)))))
|
2019-03-12 13:19:35 +01:00
|
|
|
(should-not (pcase-tests-grep
|
|
|
|
'memql (macroexpand-all '(pcase x ((or "a" 2 3) body)))))
|
2014-09-22 12:22:50 -04:00
|
|
|
(let ((exp (macroexpand-all
|
|
|
|
'(pcase x
|
|
|
|
("a" body1)
|
|
|
|
(2 body2)
|
|
|
|
((or "a" 2 3) body)))))
|
|
|
|
(should-not (pcase-tests-grep 'memq exp))
|
|
|
|
(should-not (pcase-tests-grep 'member exp))))
|
|
|
|
|
2014-09-22 14:05:22 -04:00
|
|
|
(ert-deftest pcase-tests-vectors ()
|
|
|
|
(should (equal (pcase [1 2] (`[,x] 1) (`[,x ,y] (+ x y))) 3)))
|
2014-09-22 12:22:50 -04:00
|
|
|
|
2021-03-01 14:07:05 -05:00
|
|
|
(ert-deftest pcase-tests-bug14773 ()
|
|
|
|
(let ((f (lambda (x)
|
|
|
|
(pcase 'dummy
|
|
|
|
((and (let var x) (guard var)) 'left)
|
|
|
|
((and (let var (not x)) (guard var)) 'right)))))
|
|
|
|
(should (equal (funcall f t) 'left))
|
|
|
|
(should (equal (funcall f nil) 'right))))
|
|
|
|
|
2021-03-01 15:35:51 -05:00
|
|
|
(ert-deftest pcase-tests-bug46786 ()
|
|
|
|
(let ((self 'outer))
|
2021-03-01 23:57:34 -05:00
|
|
|
(ignore self)
|
2021-03-01 15:35:51 -05:00
|
|
|
(should (equal (cl-macrolet ((show-self () `(list 'self self)))
|
2021-03-01 23:57:34 -05:00
|
|
|
(pcase-let ((`(,self ,_self2) '(inner "2")))
|
2021-03-01 15:35:51 -05:00
|
|
|
(show-self)))
|
|
|
|
'(self inner)))))
|
|
|
|
|
2021-03-01 23:57:34 -05:00
|
|
|
(ert-deftest pcase-tests-or-vars ()
|
|
|
|
(let ((f (lambda (v)
|
|
|
|
(pcase v
|
|
|
|
((or (and 'b1 (let x1 4) (let x2 5))
|
|
|
|
(and 'b2 (let y1 8) (let y2 9)))
|
|
|
|
(list x1 x2 y1 y2))))))
|
|
|
|
(should (equal (funcall f 'b1) '(4 5 nil nil)))
|
|
|
|
(should (equal (funcall f 'b2) '(nil nil 8 9)))))
|
2014-09-22 10:30:47 -04:00
|
|
|
|
2020-03-09 13:01:32 -05:00
|
|
|
(ert-deftest pcase-tests-cl-type ()
|
|
|
|
(should (equal (pcase 1
|
|
|
|
((cl-type integer) 'integer))
|
|
|
|
'integer))
|
|
|
|
(should (equal (pcase 1
|
|
|
|
((cl-type (integer 0 2)) 'integer-0<=n<=2))
|
|
|
|
'integer-0<=n<=2))
|
|
|
|
(should-error (pcase 1
|
|
|
|
((cl-type notatype) 'integer))))
|
|
|
|
|
2021-08-12 11:04:30 -04:00
|
|
|
(ert-deftest pcase-tests-setq ()
|
2021-08-11 23:54:31 +02:00
|
|
|
(should (equal (let (a b)
|
|
|
|
(pcase-setq `((,a) (,b)) '((1) (2)))
|
|
|
|
(list a b))
|
|
|
|
(list 1 2)))
|
|
|
|
|
2021-08-12 11:04:30 -04:00
|
|
|
(should (equal (list nil nil)
|
2021-08-11 23:54:31 +02:00
|
|
|
(let ((a 'unset)
|
|
|
|
(b 'unset))
|
2021-08-12 11:04:30 -04:00
|
|
|
(pcase-setq `(head ,a ,b) nil)
|
2021-08-11 23:54:31 +02:00
|
|
|
(list a b))))
|
|
|
|
|
|
|
|
(should (equal (let (a b)
|
|
|
|
(pcase-setq `[,a ,b] [1 2])
|
|
|
|
(list a b))
|
|
|
|
'(1 2)))
|
|
|
|
|
2021-08-12 11:04:30 -04:00
|
|
|
(should-error (let (a b)
|
|
|
|
(pcase-setq `[,a ,b] nil)
|
|
|
|
(list a b)))
|
|
|
|
|
2021-08-11 23:54:31 +02:00
|
|
|
(should (equal (let (a b)
|
|
|
|
(pcase-setq a 1 b 2)
|
|
|
|
(list a b))
|
|
|
|
'(1 2)))
|
|
|
|
|
|
|
|
(should (= (let (a)
|
|
|
|
(pcase-setq a 1 `(,a) '(2))
|
|
|
|
a)
|
|
|
|
2))
|
|
|
|
|
|
|
|
(should (equal (let (array list-item array-copy)
|
|
|
|
(pcase-setq (or `(,list-item) array) [1 2 3]
|
|
|
|
array-copy array
|
|
|
|
;; This re-sets `array' to nil.
|
|
|
|
(or `(,list-item) array) '(4))
|
|
|
|
(list array array-copy list-item))
|
|
|
|
'(nil [1 2 3] 4)))
|
|
|
|
|
|
|
|
(let ((a nil))
|
|
|
|
(should-error (pcase-setq a 1 b)
|
|
|
|
:type '(wrong-number-of-arguments))
|
|
|
|
(should (eq a nil)))
|
|
|
|
|
|
|
|
(should-error (pcase-setq a)
|
|
|
|
:type '(wrong-number-of-arguments)))
|
|
|
|
|
2014-09-22 10:30:47 -04:00
|
|
|
;;; pcase-tests.el ends here.
|