[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/urgrep 2ef7daa448 093/115: Reorganize tests a bit
|
From: |
ELPA Syncer |
|
Subject: |
[elpa] externals/urgrep 2ef7daa448 093/115: Reorganize tests a bit |
|
Date: |
Wed, 10 May 2023 03:00:48 -0400 (EDT) |
branch: externals/urgrep
commit 2ef7daa4484b72257417b3ef7515e9a137383359
Author: Jim Porter <jporterbugs@gmail.com>
Commit: Jim Porter <jporterbugs@gmail.com>
Reorganize tests a bit
---
urgrep-tests.el | 269 +++++++++++++++++++++++++++++---------------------------
1 file changed, 137 insertions(+), 132 deletions(-)
diff --git a/urgrep-tests.el b/urgrep-tests.el
index 47e97fc635..31c16d23e0 100644
--- a/urgrep-tests.el
+++ b/urgrep-tests.el
@@ -34,7 +34,7 @@
(unless (fboundp 'always)
(defun always (&rest _) t))
-(defun urgrep-tests-remote-accessible-p ()
+(defun urgrep-tests/remote-accessible-p ()
"Return whether a test involving remote files can proceed."
(let ((inhibit-message t))
(ignore-errors
@@ -43,11 +43,35 @@
(file-directory-p ert-remote-temporary-file-directory)
(file-writable-p ert-remote-temporary-file-directory)))))
-(ert-deftest urgrep-tests-common-prefix ()
+(defun urgrep-tests/check-command (command expected-arguments)
+ "Ensure that COMMAND is equivalent to EXPECTED-ARGUMENTS.
+EXPECTED-ARGUMENTS should be a list, which will be quoted and
+joined to compare against COMMAND."
+ (should (string= command (mapconcat #'urgrep--maybe-shell-quote-argument
+ expected-arguments " "))))
+
+(defun urgrep-tests/check-match-at-point ()
+ "In a Urgrep buffer, check that the match at point is consistent."
+ (let* ((line (string-to-number (current-word)))
+ (loc (compilation--message->loc
+ (get-text-property (point) 'compilation-message)))
+ (text-start (re-search-forward ":"))
+ (text-end (line-end-position))
+ (match-start (text-property-any text-start text-end 'font-lock-face
+ 'urgrep-match)))
+ (should (equal (caar (compilation--loc->file-struct loc))
+ "urgrep-tests.el"))
+ (should (equal (compilation--loc->line loc) line))
+ (should (equal (compilation--loc->col loc)
+ (- match-start text-start)))))
+
+;;; Tests:
+
+(ert-deftest urgrep-tests/common-prefix ()
(should (equal (urgrep--common-prefix "foo" "bar") ""))
(should (equal (urgrep--common-prefix "bar" "baz") "ba")))
-(ert-deftest urgrep-tests-wildcards-to-regexp ()
+(ert-deftest urgrep-tests/wildcards-to-regexp ()
(should (equal (urgrep--wildcards-to-regexp nil 'pcre) "^$"))
(should (equal (urgrep--wildcards-to-regexp '("*.el") 'pcre)
"^[^\\000]*\\.el$"))
@@ -58,349 +82,345 @@
(should (equal (urgrep--wildcards-to-regexp '("*.[ab]cpp" "*.[ab]c") 'pcre)
"^[^\\000]*\\.([ab]cpp|[ab]c)$")))
-(defun urgrep-test--check-command (command expected-arguments)
- (should (string= command (mapconcat #'urgrep--maybe-shell-quote-argument
- expected-arguments " "))))
-
-(ert-deftest urgrep-tests-command-ugrep ()
+(ert-deftest urgrep-tests/command/ugrep ()
(let ((tool (assq 'ugrep urgrep-tools))
(common-args '("ugrep" "--color=always"
"--colors=mt=01;31:fn=35:ln=:bn=:se=:sl=:cx=:ne"
"-n" "--ignore-files")))
;; String/case
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--heading" "--break" "-i" "-F" "-e" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool)
(append common-args '("--heading" "--break" "-F" "-e" "Foo")))
(let ((case-fold-search nil))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--heading" "--break" "-F" "-e" "foo"))))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold t)
(append common-args '("--heading" "--break" "-i" "-F" "-e" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold nil)
(append common-args '("--heading" "--break" "-F" "-e" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold 'smart)
(append common-args '("--heading" "--break" "-i" "-F" "-e" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool :case-fold 'smart)
(append common-args '("--heading" "--break" "-F" "-e" "Foo")))
;; Group
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :group nil)
(append common-args '("-i" "-F" "-e" "foo")))
;; Regexp
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp t)
(append common-args '("--heading" "--break" "-i" "-G" "-e" "(foo)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'bre)
(append common-args '("--heading" "--break" "-i" "-G" "-e" "(foo)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'ere)
(append common-args '("--heading" "--break" "-i" "-E" "-e" "(foo)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'pcre)
(append common-args '("--heading" "--break" "-i" "-P" "-e" "(foo)")))
;; Context
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context 3)
(append common-args '("--heading" "--break" "-C3" "-i" "-F" "-e" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(3 . 3))
(append common-args '("--heading" "--break" "-C3" "-i" "-F" "-e" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(2 . 4))
(append common-args '("--heading" "--break" "-B2" "-A4" "-i" "-F" "-e"
"foo")))
;; File wildcard
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files "*.el")
(append common-args '("--include=*.el" "--heading" "--break" "-i" "-F"
"-e"
"foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files '("*.c" "*.h"))
(append common-args '("--include=*.c" "--include=*.h" "--heading"
"--break"
"-i" "-F" "-e" "foo")))
;; Color
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :color nil)
(append '("ugrep" "--color=never" "-n" "--ignore-files" "--heading"
"--break" "-i" "-F" "-e" "foo")))))
-(ert-deftest urgrep-tests-command-ripgrep ()
+(ert-deftest urgrep-tests/command/ripgrep ()
(let ((tool (assq 'ripgrep urgrep-tools))
(common-args '("rg" "--color" "always" "--colors" "path:fg:magenta"
"--colors" "match:fg:red" "--colors"
"match:style:bold")))
;; String/case
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--heading" "-i" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool)
(append common-args '("--heading" "-F" "--" "Foo")))
(let ((case-fold-search nil))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--heading" "-F" "--" "foo"))))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold t)
(append common-args '("--heading" "-i" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold nil)
(append common-args '("--heading" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold 'smart)
(append common-args '("--heading" "-i" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool :case-fold 'smart)
(append common-args '("--heading" "-F" "--" "Foo")))
;; Group
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :group nil)
(append common-args '("--no-heading" "-i" "-F" "--" "foo")))
;; Regexp
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp t)
(append common-args '("--heading" "-i" "--" "\\(foo\\)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'bre)
(append common-args '("--heading" "-i" "--" "\\(foo\\)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'ere)
(append common-args '("--heading" "-i" "--" "(foo)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'pcre)
(append common-args '("--heading" "-i" "--" "(foo)")))
;; Context
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context 3)
(append common-args '("--heading" "-C3" "-i" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(3 . 3))
(append common-args '("--heading" "-C3" "-i" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(2 . 4))
(append common-args '("--heading" "-B2" "-A4" "-i" "-F" "--" "foo")))
;; File wildcard
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files "*.el")
(append common-args '("-g" "*.el" "--heading" "-i" "-F" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files '("*.c" "*.h"))
(append common-args '("-g" "*.c" "-g" "*.h" "--heading" "-i" "-F" "--"
"foo")))
;; Color
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :color nil)
(append '("rg" "--color" "never" "--heading" "-i" "-F" "--" "foo")))))
-(ert-deftest urgrep-tests-command-ag ()
+(ert-deftest urgrep-tests/command/ag ()
(let ((tool (assq 'ag urgrep-tools))
(common-args '("ag" "--color-path" "35" "--color-match" "1;31")))
;; String/case
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--group" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool)
(append common-args '("--group" "-s" "-Q" "--" "Foo")))
(let ((case-fold-search nil))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--group" "-s" "-Q" "--" "foo"))))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold t)
(append common-args '("--group" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold nil)
(append common-args '("--group" "-s" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold 'smart)
(append common-args '("--group" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool :case-fold 'smart)
(append common-args '("--group" "-s" "-Q" "--" "Foo")))
;; Group
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :group nil)
(append common-args '("--nogroup" "-i" "-Q" "--" "foo")))
;; Regexp
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp t)
(append common-args '("--group" "-i" "--" "\\(foo\\)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'bre)
(append common-args '("--group" "-i" "--" "\\(foo\\)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'ere)
(append common-args '("--group" "-i" "--" "(foo)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'pcre)
(append common-args '("--group" "-i" "--" "(foo)")))
;; Context
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context 3)
(append common-args '("--group" "-C3" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(3 . 3))
(append common-args '("--group" "-C3" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(2 . 4))
(append common-args '("--group" "-B2" "-A4" "-i" "-Q" "--" "foo")))
;; File wildcard
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files "*.el")
(append common-args '("-G" "^[^\\000]*\\.el$" "--group" "-i" "-Q" "--"
"foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files '("*.c" "*.h"))
(append common-args '("-G" "^[^\\000]*\\.(c|h)$" "--group" "-i" "-Q" "--"
"foo")))
;; Color
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :color nil)
(append '("ag" "--nocolor" "--group" "-i" "-Q" "--" "foo")))))
-(ert-deftest urgrep-tests-command-ack ()
+(ert-deftest urgrep-tests/command/ack ()
(let ((tool (assq 'ack urgrep-tools))
(common-args '("ack" "--color-filename" "magenta" "--color-match"
"bold red")))
;; String/case
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--group" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool)
(append common-args '("--group" "-Q" "--" "Foo")))
(let ((case-fold-search nil))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args '("--group" "-Q" "--" "foo"))))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold t)
(append common-args '("--group" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold nil)
(append common-args '("--group" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold 'smart)
(append common-args '("--group" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool :case-fold 'smart)
(append common-args '("--group" "-Q" "--" "Foo")))
;; Group
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :group nil)
(append common-args '("--nogroup" "-i" "-Q" "--" "foo")))
;; Regexp
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp t)
(append common-args '("--group" "-i" "--" "\\(foo\\)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'bre)
(append common-args '("--group" "-i" "--" "\\(foo\\)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'ere)
(append common-args '("--group" "-i" "--" "(foo)")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'pcre)
(append common-args '("--group" "-i" "--" "(foo)")))
;; Context
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context 3)
(append common-args '("--group" "-C3" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(3 . 3))
(append common-args '("--group" "-C3" "-i" "-Q" "--" "foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(2 . 4))
(append common-args '("--group" "-B2" "-A4" "-i" "-Q" "--" "foo")))
;; File wildcard
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files "*.el")
(append common-args '("-G" "^[^\\000]*\\.el$" "--group" "-i" "-Q" "--"
"foo")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files '("*.c" "*.h"))
(append common-args '("-G" "^[^\\000]*\\.(c|h)$" "--group" "-i" "-Q" "--"
"foo")))
;; Color
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :color nil)
(append '("ack" "--nocolor" "--group" "-i" "-Q" "--" "foo")))))
-(ert-deftest urgrep-tests-command-git-grep ()
+(ert-deftest urgrep-tests/command/git-grep ()
(let ((tool (assq 'git-grep urgrep-tools))
(common-args '("git" "--no-pager" "-c" "color.grep.filename=magenta"
"-c" "color.grep.match=bold red" "grep" "--color"
"--no-index" "--exclude-standard" "-n"))
(group-args '("--heading" "--break")))
;; String/case
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args group-args '("-i" "-F" "-e" "foo" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool)
(append common-args group-args '("-F" "-e" "Foo" "--")))
(let ((case-fold-search nil))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool)
(append common-args group-args '("-F" "-e" "foo" "--"))))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold t)
(append common-args group-args '("-i" "-F" "-e" "foo" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold nil)
(append common-args group-args '("-F" "-e" "foo" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :case-fold 'smart)
(append common-args group-args '("-i" "-F" "-e" "foo" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "Foo" :tool tool :case-fold 'smart)
(append common-args group-args '("-F" "-e" "Foo" "--")))
;; Group
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :group nil)
(append common-args '("-i" "-F" "-e" "foo" "--")))
;; Regexp
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp t)
(append common-args group-args '("-i" "-G" "-e" "(foo)" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'bre)
(append common-args group-args '("-i" "-G" "-e" "(foo)" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'ere)
(append common-args group-args '("-i" "-E" "-e" "(foo)" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "(foo)" :tool tool :regexp 'pcre)
(append common-args group-args '("-i" "-P" "-e" "(foo)" "--")))
;; Context
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context 3)
(append common-args group-args '("-C3" "-i" "-F" "-e" "foo" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(3 . 3))
(append common-args group-args '("-C3" "-i" "-F" "-e" "foo" "--")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :context '(2 . 4))
(append common-args group-args '("-B2" "-A4" "-i" "-F" "-e" "foo" "--")))
;; File wildcard
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files "*.el")
(append common-args group-args '("-i" "-F" "-e" "foo" "--" "*.el")))
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :files '("*.c" "*.h"))
(append common-args group-args '("-i" "-F" "-e" "foo" "--" "*.c" "*.h")))
;; Color
- (urgrep-test--check-command
+ (urgrep-tests/check-command
(urgrep-command "foo" :tool tool :color nil)
(append
'("git" "--no-pager" "grep" "--no-color" "--no-index"
@@ -408,7 +428,7 @@
group-args
'("-i" "-F" "-e" "foo" "--")))))
-(ert-deftest urgrep-tests-command-grep ()
+(ert-deftest urgrep-tests/command/grep ()
(let ((tool (assq 'grep urgrep-tools))
(template (concat "^find \\(\\|.+ \\)\\. \\(\\|.+ \\)%s\\(\\|.+ \\)"
"grep %s\\(\\|.+ \\)%s"))
@@ -465,7 +485,7 @@
(should (string-match (format template "" "+-i -F" "foo")
(urgrep-command "foo" :tool tool :color nil)))))
-(ert-deftest urgrep-tests-get-tool-default ()
+(ert-deftest urgrep-tests/get-tool/default ()
(cl-letf (((symbol-function #'executable-find) #'always))
(let* ((urgrep--host-defaults)
(tool (urgrep-get-tool)))
@@ -473,7 +493,7 @@
(should (equal (urgrep--get-prop 'executable-name tool) "ugrep"))
(should (equal urgrep--host-defaults `((localhost . ,tool)))))))
-(ert-deftest urgrep-tests-get-tool-default-cached ()
+(ert-deftest urgrep-tests/get-tool/default-cached ()
(cl-letf (((symbol-function #'executable-find) #'always))
(let* ((ag (assq 'ag urgrep-tools))
(urgrep--host-defaults `((localhost . ,ag)))
@@ -482,7 +502,7 @@
(should (equal (urgrep--get-prop 'executable-name tool) "ag"))
(should (equal urgrep--host-defaults `((localhost . ,ag)))))))
-(ert-deftest urgrep-tests-get-tool-preferred ()
+(ert-deftest urgrep-tests/get-tool/preferred ()
(cl-letf (((symbol-function #'executable-find) #'always))
(let* ((urgrep--host-defaults)
(urgrep-preferred-tools '(ag grep))
@@ -491,7 +511,7 @@
(should (equal (urgrep--get-prop 'executable-name tool) "ag"))
(should (equal urgrep--host-defaults `((localhost . ,tool)))))))
-(ert-deftest urgrep-tests-get-tool-preferred-cons ()
+(ert-deftest urgrep-tests/get-tool/preferred-cons ()
(cl-letf (((symbol-function #'executable-find) #'always))
(let* ((urgrep--host-defaults)
(urgrep-preferred-tools '((ag . "/usr/bin/ag")))
@@ -500,7 +520,7 @@
(should (equal (urgrep--get-prop 'executable-name tool) "/usr/bin/ag"))
(should (equal urgrep--host-defaults `((localhost . ,tool)))))))
-(ert-deftest urgrep-tests-get-tool-key ()
+(ert-deftest urgrep-tests/get-tool/key ()
(cl-letf (((symbol-function #'executable-find) #'always))
(let* ((urgrep--host-defaults)
(tool (urgrep-get-tool 'ag)))
@@ -508,7 +528,7 @@
(should (equal (urgrep--get-prop 'executable-name tool) "ag"))
(should (equal urgrep--host-defaults nil)))))
-(ert-deftest urgrep-tests-get-tool-cons ()
+(ert-deftest urgrep-tests/get-tool/cons ()
(cl-letf (((symbol-function #'executable-find) #'always))
(let* ((urgrep--host-defaults)
(tool (urgrep-get-tool '(goofy (executable-name . "gf")))))
@@ -516,8 +536,8 @@
(should (equal (urgrep--get-prop 'executable-name tool) "gf"))
(should (equal urgrep--host-defaults nil)))))
-(ert-deftest urgrep-tests-get-tool-remote-host ()
- (skip-unless (urgrep-tests-remote-accessible-p))
+(ert-deftest urgrep-tests/get-tool/remote-host ()
+ (skip-unless (urgrep-tests/remote-accessible-p))
(connection-local-set-profile-variables
'urgrep-test-ripgrep
'((urgrep-preferred-tools . (ripgrep))))
@@ -540,22 +560,7 @@
(should (equal (car tool) 'ugrep))
(should (equal (urgrep--get-prop 'executable-name tool) "ugrep")))))
-(defun urgrep-tests--check-match-at-point ()
- (let* ((line (string-to-number (current-word)))
- (loc
- (compilation--message->loc
- (get-text-property (point) 'compilation-message)))
- (text-start (re-search-forward ":"))
- (text-end (line-end-position))
- (match-start (text-property-any text-start text-end 'font-lock-face
- 'urgrep-match)))
- (should (equal (caar (compilation--loc->file-struct loc))
- "urgrep-tests.el"))
- (should (equal (compilation--loc->line loc) line))
- (should (equal (compilation--loc->col loc)
- (- match-start text-start)))))
-
-(ert-deftest urgrep-tests-urgrep-group ()
+(ert-deftest urgrep-tests/urgrep/group ()
(switch-to-buffer (urgrep "urgrep"))
(should (and (equal urgrep-current-tool (urgrep-get-tool))
(local-variable-p 'urgrep-current-tool)))
@@ -566,9 +571,9 @@
(goto-char (point-min))
(re-search-forward "urgrep-tests.el")
(beginning-of-line 2)
- (urgrep-tests--check-match-at-point))
+ (urgrep-tests/check-match-at-point))
-(ert-deftest urgrep-tests-urgrep-nogroup ()
+(ert-deftest urgrep-tests/urgrep/no-group ()
(switch-to-buffer (urgrep "urgrep" :group nil))
(should (and (equal urgrep-current-tool (urgrep-get-tool))
(local-variable-p 'urgrep-current-tool)))
@@ -578,9 +583,9 @@
(sit-for 0.01))
(goto-char (point-min))
(re-search-forward "urgrep-tests.el:")
- (urgrep-tests--check-match-at-point))
+ (urgrep-tests/check-match-at-point))
-(ert-deftest urgrep-tests-urgrep-run-command ()
+(ert-deftest urgrep-tests/urgrep-run-command ()
(switch-to-buffer (urgrep-run-command (urgrep-command "urgrep") nil nil))
(should (and (equal urgrep-current-tool (urgrep-get-tool))
(local-variable-p 'urgrep-current-tool)))
@@ -591,6 +596,6 @@
(goto-char (point-min))
(re-search-forward "urgrep-tests.el")
(beginning-of-line 2)
- (urgrep-tests--check-match-at-point))
+ (urgrep-tests/check-match-at-point))
;;; urgrep-tests.el ends here
- [elpa] externals/urgrep 3370860a1b 043/115: Add support for toggling color output, (continued)
- [elpa] externals/urgrep 3370860a1b 043/115: Add support for toggling color output, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep c97985820d 048/115: Minor typographical fixes, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 136b1845d7 020/115: Add support for various regexp syntaxes, defaulting to BRE, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 496647e748 019/115: Add our own toolbar so we get better tooltips, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep ff96211f26 058/115: Update comment, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep d93a565190 060/115: Simplify implementation of 'urgrep', ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 0270e11849 072/115: Allow directory for `urgrep' and `urgrep-run-command' to be relative, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 86e7055ce5 063/115: Typo, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 5aabe4ffa9 066/115: Remove debug code, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 7fd67f1db5 092/115: Run CI against Emacs 28.2, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 2ef7daa448 093/115: Reorganize tests a bit,
ELPA Syncer <=
- [elpa] externals/urgrep 500c01092d 086/115: Fix display override for null character in context lines, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 229ae0bfb5 110/115: Use a version identifier compatible with 'version-to-string', ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 6aefc895bc 113/115: Set system-type to gnu/linux when making the Urgrep command for Eshell, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 83e62357da 018/115: Provide a friendly default value when searching, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 98e20f0630 021/115: Use pcase macros for filling in optional arguments, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep bf24dac2ac 025/115: Allow for separate before/after contexts, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep f2ba643f35 028/115: Typo, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep c26ff9b22b 029/115: Add note about grep issues on MS Windows, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 6f50ef99d3 032/115: Remove urgrep--to-command, ELPA Syncer, 2023/05/10
- [elpa] externals/urgrep 3599ad1a56 033/115: Update comment, ELPA Syncer, 2023/05/10