diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-09-25 16:15:16 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-09-25 16:15:16 -0400 |
commit | 650c20f1ca4e07591a727e1cfcc74b3363d15985 (patch) | |
tree | 85d11f6437cde22f410c25e0e5f71a3131ebd07d /test/lisp/char-fold-tests.el | |
parent | 8869332684c2302b5ba1ead4568bbc7ba1c0183e (diff) | |
parent | 4b85ae6a24380fb67a3315eaec9233f17a872473 (diff) | |
download | emacs-650c20f1ca4e07591a727e1cfcc74b3363d15985.tar.gz emacs-650c20f1ca4e07591a727e1cfcc74b3363d15985.tar.bz2 emacs-650c20f1ca4e07591a727e1cfcc74b3363d15985.zip |
Merge 'master' into noverlay
Diffstat (limited to 'test/lisp/char-fold-tests.el')
-rw-r--r-- | test/lisp/char-fold-tests.el | 157 |
1 files changed, 125 insertions, 32 deletions
diff --git a/test/lisp/char-fold-tests.el b/test/lisp/char-fold-tests.el index 83d6fa79b1e..e7f5ff6fd2f 100644 --- a/test/lisp/char-fold-tests.el +++ b/test/lisp/char-fold-tests.el @@ -1,21 +1,23 @@ ;;; char-fold-tests.el --- Tests for char-fold.el -*- lexical-binding: t; -*- -;; Copyright (C) 2013-2017 Free Software Foundation, Inc. +;; Copyright (C) 2013-2022 Free Software Foundation, Inc. ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> -;; This program is free software; you can redistribute it and/or modify +;; 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. -;; This program is distributed in the hope that it will be useful, +;; 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 this program. If not, see <https://www.gnu.org/licenses/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Code: @@ -24,7 +26,35 @@ (defun char-fold--random-word (n) (mapconcat (lambda (_) (string (+ 9 (random 117)))) - (make-list n nil) "")) + (make-list n nil))) + +(defun char-fold--ascii-upcase (string) + "Like `upcase' but acts on ASCII characters only." + (replace-regexp-in-string "[a-z]+" 'upcase string)) + +(defun char-fold--ascii-downcase (string) + "Like `downcase' but acts on ASCII characters only." + (replace-regexp-in-string "[a-z]+" 'downcase string)) + +(defun char-fold--test-match-exactly (string &rest strings-to-match) + (let ((re (concat "\\`" (char-fold-to-regexp string) "\\'"))) + (dolist (it strings-to-match) + (should (string-match re it))) + ;; Case folding + (let ((case-fold-search t)) + (dolist (it strings-to-match) + (should (string-match (char-fold--ascii-upcase re) (downcase it))) + (should (string-match (char-fold--ascii-downcase re) (upcase it))))))) + +(defun char-fold--test-no-match-exactly (string &rest strings-to-match) + (let ((re (concat "\\`" (char-fold-to-regexp string) "\\'"))) + (dolist (it strings-to-match) + (should-not (string-match re it))) + ;; Case folding + (let ((case-fold-search t)) + (dolist (it strings-to-match) + (should-not (string-match (char-fold--ascii-upcase re) (downcase it))) + (should-not (string-match (char-fold--ascii-downcase re) (upcase it))))))) (defun char-fold--test-search-with-contents (contents string) (with-temp-buffer @@ -35,6 +65,11 @@ (should (char-fold-search-forward string nil 'noerror)) (should (char-fold-search-backward string nil 'noerror)))) +(defun char-fold--permutation (strings) + (mapcar (lambda (string) + (cons string (remove string strings))) + strings)) + (ert-deftest char-fold--test-consistency () (dotimes (n 30) @@ -54,25 +89,7 @@ (concat w1 "\s\n\s\t\f\t\n\r\t" w2) (concat w1 (make-string 10 ?\s) w2))))) -(defun char-fold--ascii-upcase (string) - "Like `upcase' but acts on ASCII characters only." - (replace-regexp-in-string "[a-z]+" 'upcase string)) - -(defun char-fold--ascii-downcase (string) - "Like `downcase' but acts on ASCII characters only." - (replace-regexp-in-string "[a-z]+" 'downcase string)) - -(defun char-fold--test-match-exactly (string &rest strings-to-match) - (let ((re (concat "\\`" (char-fold-to-regexp string) "\\'"))) - (dolist (it strings-to-match) - (should (string-match re it))) - ;; Case folding - (let ((case-fold-search t)) - (dolist (it strings-to-match) - (should (string-match (char-fold--ascii-upcase re) (downcase it))) - (should (string-match (char-fold--ascii-downcase re) (upcase it))))))) - -(ert-deftest char-fold--test-some-defaults () +(ert-deftest char-fold--test-multi-defaults () (dolist (it '(("ffl" . "ffl") ("ffi" . "ffi") ("fi" . "fi") ("ff" . "ff") ("ä" . "ä"))) @@ -82,6 +99,14 @@ (set-char-table-extra-slot char-fold-table 0 multi) (char-fold--test-match-exactly (car it) (cdr it))))) +(ert-deftest char-fold--test-multi-lax () + (dolist (it '(("f" . "fi") ("f" . "ff"))) + (with-temp-buffer + (insert (cdr it)) + (goto-char (point-min)) + (should (search-forward-regexp + (char-fold-to-regexp (car it) 'lax) nil 'noerror))))) + (ert-deftest char-fold--test-fold-to-regexp () (let ((char-fold-table (make-char-table 'char-fold-table)) (multi (make-char-table 'char-fold-table))) @@ -102,31 +127,99 @@ (char-fold--test-match-exactly "a1" "xx44" "99") (char-fold--test-match-exactly "a12" "77" "xx442" "992") ;; Support for this case is disabled. See function definition or: - ;; https://lists.gnu.org/archive/html/emacs-devel/2015-11/msg02562.html + ;; https://lists.gnu.org/r/emacs-devel/2015-11/msg02562.html ;; (char-fold--test-match-exactly "a12" "xxyy") )) (ert-deftest char-fold--speed-test () (dolist (string (append '("tty-set-up-initial-frame-face" "tty-set-up-initial-frame-face-frame-faceframe-faceframe-faceframe-face") - (mapcar #'char-fold--random-word '(10 50 100 - 50 100)))) - (message "Testing %s" string) + (mapcar #'char-fold--random-word '(10 50 100 50 100)))) ;; Make sure we didn't just fallback on the trivial search. (should-not (string= (regexp-quote string) (char-fold-to-regexp string))) (with-temp-buffer (save-excursion (insert string)) - (let ((time (time-to-seconds (current-time)))) + (let ((time (time-to-seconds))) ;; Our initial implementation of case-folding in char-folding ;; created a lot of redundant paths in the regexp. Because of ;; that, if a really long string "almost" matches, the regexp ;; engine took a long time to realize that it doesn't match. (should-not (char-fold-search-forward (concat string "c") nil 'noerror)) ;; Ensure it took less than a second. - (should (< (- (time-to-seconds (current-time)) - time) - 1)))))) + (should (< (- (time-to-seconds) time) 1)))))) + +(ert-deftest char-fold--test-without-customization () + (let* ((matches + '( + ("'" "’") + ("e" "ℯ" "ḗ" "ë" "ë") + ("ι" + "ί" ;; 1 level decomposition + "ί" ;; 2 level decomposition + "ΐ" ;; 3 level decomposition + ) + ("ß" "ss") + )) + (no-matches + '( + ("и" "й") + ))) + (dolist (strings matches) + (apply 'char-fold--test-match-exactly strings)) + (dolist (strings no-matches) + (apply 'char-fold--test-no-match-exactly strings)))) + +(ert-deftest char-fold--test-with-customization () + :tags '(:expensive-test) + ;; FIXME: move some language-specific settings to defaults + (let ((char-fold-include + (append char-fold-include + '( + (?o "ø") ;; da no nb nn + (?l "ł") ;; pl + (?æ "ae") + (?→ "->") + (?⇒ "=>") + ))) + (char-fold-exclude + (append char-fold-exclude + '( + (?a "å") ;; da no nb nn sv + (?a "ä") ;; et fi sv + (?o "ö") ;; et fi sv + (?n "ñ") ;; es + ))) + (char-fold-symmetric t) + (matches + '( + ("e" "ℯ" "ḗ" "ë" "ë") + ("е" "ё" "ё") + ("ι" "ί" "ί" "ΐ") + ("ß" "ss") + ("o" "ø") + ("l" "ł") + ("æ" "ae") + ("→" "->") + ("⇒" "=>") + )) + (no-matches + '( + ("a" "å") + ("a" "ä") + ("o" "ö") + ("n" "ñ") + ("и" "й") + )) + ;; Don't override global value by char-fold-update-table below + char-fold-table) + (char-fold-update-table) + (dolist (strings matches) + (dolist (permutation (char-fold--permutation strings)) + (apply 'char-fold--test-match-exactly permutation))) + (dolist (strings no-matches) + (dolist (permutation (char-fold--permutation strings)) + (apply 'char-fold--test-no-match-exactly permutation))))) (provide 'char-fold-tests) ;;; char-fold-tests.el ends here |