unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: John Cummings <john@rootabega.net>
To: "50630@debbugs.gnu.org" <50630@debbugs.gnu.org>
Subject: bug#50630: [PATCH] Add tests for 'insert-directory'
Date: Thu, 11 Nov 2021 01:43:54 +0000	[thread overview]
Message-ID: <HLzGL62mnGPwMGSevMWSfChfk1sUTdZ4MDlaCd_oMAKHSy6ib3jnZW1gq3pNtPrV2t6O-hTErFo2mEQvqmMB9vk9B31n_Oa3ien6TKoSCas=@rootabega.net> (raw)
In-Reply-To: <aBs7q8Blh7yNi2iWuTB37DzPY569oKDfxI4vlDTa5boeqeEYqw3sma_9-EERi7_PeldJUFkji73sSkHocv__8WBAZr6mr81aLfj5UxU45Fs=@rootabega.net>

[-- Attachment #1: Type: text/plain, Size: 360 bytes --]

My copyright assignment is complete. Here is the patch to add tests,
signed from the same master key I used to sign the agreement:
D148 50A5 E6B1 45AE CD83  7983 16B9 CFB2 30B1 275C

This was generated against the emacs-28 branch. There will be a merge
conflict when merged to master, but these tests can just be added as
the last tests in files-tests.el

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Add-tests-for-insert-directory.patch --]
[-- Type: text/x-patch; name=0001-Add-tests-for-insert-directory.patch, Size: 5953 bytes --]

From 639ddbcc3f82304f7d5ca96441626bc451d8e92d Mon Sep 17 00:00:00 2001
From: John Cummings <john@rootabega.net>
Date: Wed, 10 Nov 2021 17:51:40 -0500
Subject: [PATCH] Add tests for 'insert-directory'

Add tests for 'insert-directory' base functionality and regression tests for
the issue where free space was reported for the current directory instead of
the target of 'list-directory' (Bug#50630).
* test/lisp/files-tests.el: Add 'insert-directory' tests.
* test/lisp/files-resources/insert-directory/: Create directories and files to
use for testing 'insert-directory'.
---
 .../insert-directory/test_dir/bar             |  0
 .../insert-directory/test_dir/foo             |  0
 .../insert-directory/test_dir_other/bar       |  0
 .../insert-directory/test_dir_other/foo       |  0
 test/lisp/files-tests.el                      | 72 +++++++++++++++++++
 5 files changed, 72 insertions(+)
 create mode 100644 test/lisp/files-resources/insert-directory/test_dir/bar
 create mode 100644 test/lisp/files-resources/insert-directory/test_dir/foo
 create mode 100644 test/lisp/files-resources/insert-directory/test_dir_other/bar
 create mode 100644 test/lisp/files-resources/insert-directory/test_dir_other/foo

diff --git a/test/lisp/files-resources/insert-directory/test_dir/bar b/test/lisp/files-resources/insert-directory/test_dir/bar
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/test/lisp/files-resources/insert-directory/test_dir/foo b/test/lisp/files-resources/insert-directory/test_dir/foo
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/test/lisp/files-resources/insert-directory/test_dir_other/bar b/test/lisp/files-resources/insert-directory/test_dir_other/bar
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/test/lisp/files-resources/insert-directory/test_dir_other/foo b/test/lisp/files-resources/insert-directory/test_dir_other/foo
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/test/lisp/files-tests.el b/test/lisp/files-tests.el
index 9547ac2b69..ab9e3bdc4c 100644
--- a/test/lisp/files-tests.el
+++ b/test/lisp/files-tests.el
@@ -1807,6 +1807,78 @@ files-tests-save-buffers-kill-emacs--asks-to-save-buffers
          ;; `save-some-buffers-default-predicate' (i.e. the 2nd element) is ignored.
          (nil save-some-buffers-root ,nb-might-save))))))
 
+;;insert-directory output tests
+(let* ((data-dir "insert-directory")
+       (test-dir (file-name-as-directory
+                  (ert-resource-file
+                   (concat data-dir "/test_dir"))))
+       (test-dir-other (file-name-as-directory
+                        (ert-resource-file
+                         (concat data-dir "/test_dir_other"))))
+       (test-files `(,test-dir "foo" "bar")) ;expected files to be found
+       ;Free space test data for `insert-directory'.
+       ;Meaning: (path free-space-bytes-to-stub expected-free-space-string)
+       (free-data `((,test-dir 10 "available 10 B")
+                    (,test-dir-other 100 "available 100 B")
+                    (:default 999 "available 999 B"))))
+
+
+  (defun files-tests--look-up-free-data (path)
+    "Look up free space test data, with a default for unspecified paths."
+    (let ((path (file-name-as-directory path)))
+      (cdr (or (assoc path free-data)
+               (assoc :default free-data)))))
+
+  (defun files-tests--make-file-system-info-stub (&optional static-path)
+    "Return a stub for `file-system-info' using dynamic or static test data.
+If that data should be static, pass STATIC-PATH to choose which
+path's data to use."
+    (lambda (path)
+      (let* ((path (cond (static-path)
+                         ;; file-system-info knows how to handle ".", so we
+                         ;; do the same thing
+                         ((equal "." path) default-directory)
+                         (path)))
+             (return-size
+              (car (files-tests--look-up-free-data path))))
+        (list return-size return-size return-size))))
+
+  (defun files-tests--insert-directory-output (dir &optional verbose)
+    "Run `insert-directory' and return its output."
+    (with-current-buffer-window "files-tests--insert-directory" nil nil
+      (insert-directory dir "-l" nil t)
+      (buffer-substring-no-properties (point-min) (point-max))))
+
+  (ert-deftest files-tests-insert-directory-shows-files ()
+    "Verify `insert-directory' reports the files in the directory."
+    (let* ((test-dir (car test-files))
+           (files (cdr test-files))
+           (output (files-tests--insert-directory-output test-dir)))
+      (dolist (file files)
+        (should (string-match-p file output)))))
+
+  (defun files-tests--insert-directory-shows-given-free (dir &optional info-func)
+    "Run `insert-directory' and verify it reports the correct available space.
+Stub `file-system-info' to ensure the available space is consistent,
+either with the given stub function or a default one using test data."
+    (cl-letf (((symbol-function 'file-system-info)
+               (or info-func
+                   (files-tests--make-file-system-info-stub))))
+      (should (string-match-p (cadr
+                               (files-tests--look-up-free-data dir))
+                              (files-tests--insert-directory-output dir t)))))
+
+  (ert-deftest files-tests-insert-directory-shows-free ()
+    "Test that verbose `insert-directory' shows the correct available space."
+    (files-tests--insert-directory-shows-given-free
+     test-dir
+     (files-tests--make-file-system-info-stub test-dir)))
+
+  (ert-deftest files-tests-bug-50630 ()
+    "Verify verbose `insert-directory' shows free space of the target directory.
+The current directory at call time should not affect the result (Bug#50630)."
+    (let ((default-directory test-dir-other))
+      (files-tests--insert-directory-shows-given-free test-dir))))
 
 (provide 'files-tests)
 ;;; files-tests.el ends here
-- 
2.25.1


[-- Attachment #3: 0001-Add-tests-for-insert-directory.patch.asc --]
[-- Type: text/plain, Size: 833 bytes --]

-----BEGIN PGP SIGNATURE-----

iQIzBAABCgAdFiEEwTELQV1b85Q944JhtPO94M0H0gEFAmGMchIACgkQtPO94M0H
0gHdzxAA1EhkTnt4ms2zj7iyuYljbPxOyYOyTCVp1h+XNFyv0XvQQNW0P6XwQtbM
+md18+ASzFvnundH/cx8Pdy9tJ/8t7l77CrWdIlX8lkct9EIjLQf7vqbYY1Zogje
A/JHGR2yGTD+ZA48hQW3GvhibVddX4+5Jnir+0VxN7xoSbOT4WlOxsZmfa5SQC75
6s12vqz7oD1oLbbp/XoDsWTcBSD9A2i8yId8eJOFpnOGhrZVB94yaDvSneWMt68s
AMp3mcJ7r4vEP1UGBZhRFXgreQ8VoZYCe08CW7fclS16xKKnt5eK/HVi5IPS42jh
UAKWSZDazJSi1M+b7C8Sxty2KHQwbP8spvZ6Vl1bkUMjz1L4jl5DJlIsghFZTCfM
taCHc0sM8wB+ay/iMbsCt8c6xXatxR1dpj/z3gZFNzApLMv8l5/anJKB4lgmVajk
/9bT5pfpFAWPRK5EqZMv3+I1j//7h3b7QZOzrsE70I5reQuz+1wo+QgxpcteTCww
yNhLfzWPxpsTYRpZ88A1qDqqJJNhjiv8ulPzKTFjc+8kTPq5o5mN6dpH8kHEHOiO
mhg4MHQKSmXq2qrP3W5nR+Muizdq0HQjt+AbT+akryJfX03pY8tUicEcMCV/98oa
lGDNzNnn8sfHwvkdb6ql48kp+PHCGHvjs6MoegITZX7n97YuCY4=
=UU1M
-----END PGP SIGNATURE-----

       reply	other threads:[~2021-11-11  1:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <aBs7q8Blh7yNi2iWuTB37DzPY569oKDfxI4vlDTa5boeqeEYqw3sma_9-EERi7_PeldJUFkji73sSkHocv__8WBAZr6mr81aLfj5UxU45Fs=@rootabega.net>
2021-11-11  1:43 ` John Cummings [this message]
2021-11-11  3:38   ` bug#50630: [PATCH] Add tests for 'insert-directory' Lars Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='HLzGL62mnGPwMGSevMWSfChfk1sUTdZ4MDlaCd_oMAKHSy6ib3jnZW1gq3pNtPrV2t6O-hTErFo2mEQvqmMB9vk9B31n_Oa3ien6TKoSCas=@rootabega.net' \
    --to=john@rootabega.net \
    --cc=50630@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).