mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-03 20:24:29 +00:00
bc511a64f6
Most of this change is to boilerplate commentary such as license URLs. This change was prompted by ftp://ftp.gnu.org's going-away party, planned for November. Change these FTP URLs to https://ftp.gnu.org instead. Make similar changes for URLs to other organizations moving away from FTP. Also, change HTTP to HTTPS for URLs to gnu.org and fsf.org when this works, as this will further help defend against man-in-the-middle attacks (for this part I omitted the MS-DOS and MS-Windows sources and the test tarballs to keep the workload down). HTTPS is not fully working to lists.gnu.org so I left those URLs alone for now.
93 lines
3.2 KiB
EmacsLisp
93 lines
3.2 KiB
EmacsLisp
;;; obarray-tests.el --- Tests for obarray -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2015-2017 Free Software Foundation, Inc.
|
|
|
|
;; Author: Przemysław Wojnowski <esperanto@cumego.com>
|
|
|
|
;; 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
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(require 'obarray)
|
|
(require 'ert)
|
|
|
|
(ert-deftest obarrayp-test ()
|
|
"Should assert that given object is an obarray."
|
|
(should-not (obarrayp 42))
|
|
(should-not (obarrayp "aoeu"))
|
|
(should-not (obarrayp '()))
|
|
(should-not (obarrayp []))
|
|
(should (obarrayp (make-vector 7 0))))
|
|
|
|
(ert-deftest obarrayp-unchecked-content-test ()
|
|
"Should fail to check content of passed obarray."
|
|
:expected-result :failed
|
|
(should-not (obarrayp ["a" "b" "c"]))
|
|
(should-not (obarrayp [1 2 3])))
|
|
|
|
(ert-deftest obarray-make-default-test ()
|
|
(let ((table (obarray-make)))
|
|
(should (obarrayp table))
|
|
(should (eq (obarray-size table) obarray-default-size))))
|
|
|
|
(ert-deftest obarray-make-with-size-test ()
|
|
;; FIXME: Actually, `wrong-type-argument' is not the right error to signal,
|
|
;; so we shouldn't enforce this misbehavior in tests!
|
|
(should-error (obarray-make -1) :type 'wrong-type-argument)
|
|
(should-error (obarray-make 0) :type 'wrong-type-argument)
|
|
(let ((table (obarray-make 1)))
|
|
(should (obarrayp table))
|
|
(should (eq (obarray-size table) 1))))
|
|
|
|
(ert-deftest obarray-get-test ()
|
|
(let ((table (obarray-make 3)))
|
|
(should-not (obarray-get table "aoeu"))
|
|
(intern "aoeu" table)
|
|
(should (string= "aoeu" (obarray-get table "aoeu")))))
|
|
|
|
(ert-deftest obarray-put-test ()
|
|
(let ((table (obarray-make 3)))
|
|
(should-not (obarray-get table "aoeu"))
|
|
(should (string= "aoeu" (obarray-put table "aoeu")))
|
|
(should (string= "aoeu" (obarray-get table "aoeu")))))
|
|
|
|
(ert-deftest obarray-remove-test ()
|
|
(let ((table (obarray-make 3)))
|
|
(should-not (obarray-get table "aoeu"))
|
|
(should-not (obarray-remove table "aoeu"))
|
|
(should (string= "aoeu" (obarray-put table "aoeu")))
|
|
(should (string= "aoeu" (obarray-get table "aoeu")))
|
|
(should (obarray-remove table "aoeu"))
|
|
(should-not (obarray-get table "aoeu"))))
|
|
|
|
(ert-deftest obarray-map-test ()
|
|
"Should execute function on all elements of obarray."
|
|
(let* ((table (obarray-make 3))
|
|
(syms '())
|
|
(collect-names (lambda (sym) (push (symbol-name sym) syms))))
|
|
(obarray-map collect-names table)
|
|
(should (null syms))
|
|
(obarray-put table "a")
|
|
(obarray-put table "b")
|
|
(obarray-put table "c")
|
|
(obarray-map collect-names table)
|
|
(should (equal (sort syms #'string<) '("a" "b" "c")))))
|
|
|
|
(provide 'obarray-tests)
|
|
;;; obarray-tests.el ends here
|