2013-07-04 09:43:17 +00:00
|
|
|
;;; file-notify-tests.el --- Tests of file notifications
|
|
|
|
|
2014-01-01 07:43:34 +00:00
|
|
|
;; Copyright (C) 2013-2014 Free Software Foundation, Inc.
|
2013-07-04 09:43:17 +00:00
|
|
|
|
|
|
|
;; Author: Michael Albinus <michael.albinus@gmx.de>
|
|
|
|
|
|
|
|
;; This program 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, 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 `http://www.gnu.org/licenses/'.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2014-04-24 08:21:58 +00:00
|
|
|
;; Some of the tests require access to a remote host files. Since
|
|
|
|
;; this could be problematic, a mock-up connection method "mock" is
|
|
|
|
;; used. Emulating a remote connection, it simply calls "sh -i".
|
|
|
|
;; Tramp's file name handler still run, so this test is sufficient
|
|
|
|
;; except for connection establishing.
|
|
|
|
|
|
|
|
;; If you want to test a real Tramp connection, set
|
|
|
|
;; $REMOTE_TEMPORARY_FILE_DIRECTORY to a suitable value in order to
|
|
|
|
;; overwrite the default value. If you want to skip tests accessing a
|
|
|
|
;; remote host, set this environment variable to "/dev/null" or
|
|
|
|
;; whatever is appropriate on your system.
|
2013-07-05 14:06:14 +00:00
|
|
|
|
2013-11-27 14:23:32 +00:00
|
|
|
;; When running the tests in batch mode, it must NOT require an
|
|
|
|
;; interactive password prompt unless the environment variable
|
|
|
|
;; $REMOTE_ALLOW_PASSWORD is set.
|
|
|
|
|
|
|
|
;; A whole test run can be performed calling the command `file-notify-test-all'.
|
2013-07-04 09:43:17 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'ert)
|
|
|
|
(require 'filenotify)
|
2014-04-24 08:21:58 +00:00
|
|
|
(require 'tramp)
|
2013-07-04 09:43:17 +00:00
|
|
|
|
2013-07-05 14:06:14 +00:00
|
|
|
;; There is no default value on w32 systems, which could work out of the box.
|
|
|
|
(defconst file-notify-test-remote-temporary-file-directory
|
2013-11-27 14:23:32 +00:00
|
|
|
(cond
|
|
|
|
((getenv "REMOTE_TEMPORARY_FILE_DIRECTORY"))
|
|
|
|
((eq system-type 'windows-nt) null-device)
|
2014-04-24 08:21:58 +00:00
|
|
|
(t (add-to-list
|
|
|
|
'tramp-methods
|
|
|
|
'("mock"
|
|
|
|
(tramp-login-program "sh")
|
|
|
|
(tramp-login-args (("-i")))
|
|
|
|
(tramp-remote-shell "/bin/sh")
|
|
|
|
(tramp-remote-shell-args ("-c"))
|
|
|
|
(tramp-connection-timeout 10)))
|
|
|
|
(format "/mock::%s" temporary-file-directory)))
|
2013-07-05 14:06:14 +00:00
|
|
|
"Temporary directory for Tramp tests.")
|
|
|
|
|
|
|
|
(defvar file-notify--test-tmpfile nil)
|
|
|
|
(defvar file-notify--test-tmpfile1 nil)
|
|
|
|
(defvar file-notify--test-results nil)
|
|
|
|
(defvar file-notify--test-event nil)
|
|
|
|
|
|
|
|
(setq tramp-verbose 0
|
|
|
|
tramp-message-show-message nil)
|
2013-11-27 14:23:32 +00:00
|
|
|
|
|
|
|
;; Disable interactive passwords in batch mode.
|
|
|
|
(when (and noninteractive (not (getenv "REMOTE_ALLOW_PASSWORD")))
|
|
|
|
(defalias 'tramp-read-passwd 'ignore))
|
|
|
|
|
2013-11-08 09:31:15 +00:00
|
|
|
;; This shall happen on hydra only.
|
|
|
|
(when (getenv "NIX_STORE")
|
|
|
|
(add-to-list 'tramp-remote-path 'tramp-own-remote-path))
|
2013-07-05 14:06:14 +00:00
|
|
|
|
2013-07-24 13:56:19 +00:00
|
|
|
;; We do not want to try and fail `file-notify-add-watch'.
|
2013-10-24 07:38:45 +00:00
|
|
|
(defun file-notify--test-local-enabled ()
|
|
|
|
"Whether local file notification is enabled.
|
|
|
|
This is needed for local `temporary-file-directory' only, in the
|
|
|
|
remote case we return always `t'."
|
|
|
|
(or file-notify--library
|
2014-01-21 13:31:39 +00:00
|
|
|
(file-remote-p temporary-file-directory)))
|
2013-10-24 07:38:45 +00:00
|
|
|
|
|
|
|
(defvar file-notify--test-remote-enabled-checked nil
|
|
|
|
"Cached result of `file-notify--test-remote-enabled'.
|
|
|
|
If the function did run, the value is a cons cell, the `cdr'
|
|
|
|
being the result.")
|
2013-07-24 13:56:19 +00:00
|
|
|
|
|
|
|
(defun file-notify--test-remote-enabled ()
|
|
|
|
"Whether remote file notification is enabled."
|
2013-10-24 07:38:45 +00:00
|
|
|
(unless (consp file-notify--test-remote-enabled-checked)
|
|
|
|
(let (desc)
|
|
|
|
(unwind-protect
|
|
|
|
(ignore-errors
|
|
|
|
(and
|
|
|
|
(file-remote-p file-notify-test-remote-temporary-file-directory)
|
|
|
|
(file-directory-p file-notify-test-remote-temporary-file-directory)
|
|
|
|
(file-writable-p file-notify-test-remote-temporary-file-directory)
|
|
|
|
(setq desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify-test-remote-temporary-file-directory
|
|
|
|
'(change) 'ignore))))
|
|
|
|
;; Unwind forms.
|
|
|
|
(setq file-notify--test-remote-enabled-checked (cons t desc))
|
|
|
|
(when desc (file-notify-rm-watch desc)))))
|
|
|
|
;; Return result.
|
|
|
|
(cdr file-notify--test-remote-enabled-checked))
|
2013-07-24 13:56:19 +00:00
|
|
|
|
2013-07-05 14:06:14 +00:00
|
|
|
(defmacro file-notify--deftest-remote (test docstring)
|
|
|
|
"Define ert `TEST-remote' for remote files."
|
2013-10-24 07:38:45 +00:00
|
|
|
`(ert-deftest ,(intern (concat (symbol-name test) "-remote")) ()
|
|
|
|
,docstring
|
|
|
|
(let* ((temporary-file-directory
|
|
|
|
file-notify-test-remote-temporary-file-directory)
|
|
|
|
(ert-test (ert-get-test ',test)))
|
|
|
|
(skip-unless (file-notify--test-remote-enabled))
|
2013-11-27 14:23:32 +00:00
|
|
|
(tramp-cleanup-connection
|
|
|
|
(tramp-dissect-file-name temporary-file-directory) nil 'keep-password)
|
2013-10-24 07:38:45 +00:00
|
|
|
(funcall (ert-test-body ert-test)))))
|
2013-07-05 14:06:14 +00:00
|
|
|
|
|
|
|
(ert-deftest file-notify-test00-availability ()
|
|
|
|
"Test availability of `file-notify'."
|
2013-10-24 07:38:45 +00:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
2013-07-24 13:56:19 +00:00
|
|
|
(let (desc)
|
|
|
|
;; Check, that different valid parameters are accepted.
|
|
|
|
(should (setq desc (file-notify-add-watch
|
|
|
|
temporary-file-directory '(change) 'ignore)))
|
|
|
|
(file-notify-rm-watch desc)))
|
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test00-availability
|
|
|
|
"Test availability of `file-notify' for remote files.")
|
2013-07-04 09:43:17 +00:00
|
|
|
|
2013-10-24 07:38:45 +00:00
|
|
|
(ert-deftest file-notify-test01-add-watch ()
|
|
|
|
"Check `file-notify-add-watch'."
|
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
(let (desc)
|
|
|
|
;; Check, that different valid parameters are accepted.
|
|
|
|
(should (setq desc (file-notify-add-watch
|
|
|
|
temporary-file-directory '(change) 'ignore)))
|
|
|
|
(file-notify-rm-watch desc)
|
|
|
|
(should (setq desc (file-notify-add-watch
|
|
|
|
temporary-file-directory
|
|
|
|
'(attribute-change) 'ignore)))
|
|
|
|
(file-notify-rm-watch desc)
|
|
|
|
(should (setq desc (file-notify-add-watch
|
|
|
|
temporary-file-directory
|
|
|
|
'(change attribute-change) 'ignore)))
|
|
|
|
(file-notify-rm-watch desc)
|
2013-07-04 09:43:17 +00:00
|
|
|
|
2013-10-24 07:38:45 +00:00
|
|
|
;; Check error handling.
|
|
|
|
(should-error (file-notify-add-watch 1 2 3 4)
|
|
|
|
:type 'wrong-number-of-arguments)
|
|
|
|
(should
|
|
|
|
(equal (should-error (file-notify-add-watch 1 2 3))
|
|
|
|
'(wrong-type-argument 1)))
|
|
|
|
(should
|
|
|
|
(equal (should-error (file-notify-add-watch
|
|
|
|
temporary-file-directory 2 3))
|
|
|
|
'(wrong-type-argument 2)))
|
|
|
|
(should
|
|
|
|
(equal (should-error (file-notify-add-watch
|
|
|
|
temporary-file-directory '(change) 3))
|
|
|
|
'(wrong-type-argument 3)))))
|
2013-07-09 07:52:25 +00:00
|
|
|
|
2013-10-24 07:38:45 +00:00
|
|
|
(file-notify--deftest-remote file-notify-test01-add-watch
|
|
|
|
"Check `file-notify-add-watch' for remote files.")
|
2013-07-04 09:43:17 +00:00
|
|
|
|
2013-07-05 14:06:14 +00:00
|
|
|
(defun file-notify--test-event-test ()
|
|
|
|
"Ert test function to be called by `file-notify--test-event-handler'.
|
|
|
|
We cannot pass arguments, so we assume that `file-notify--test-event'
|
2013-07-04 09:43:17 +00:00
|
|
|
is bound somewhere."
|
2013-07-05 14:06:14 +00:00
|
|
|
;(message "Event %S" file-notify--test-event)
|
2013-07-04 09:43:17 +00:00
|
|
|
;; Check the file name.
|
|
|
|
(should
|
2013-07-05 14:06:14 +00:00
|
|
|
(string-equal (file-notify--event-file-name file-notify--test-event)
|
|
|
|
file-notify--test-tmpfile))
|
2013-07-04 09:43:17 +00:00
|
|
|
;; Check the second file name if exists.
|
2013-07-05 14:06:14 +00:00
|
|
|
(when (eq (nth 1 file-notify--test-event) 'renamed)
|
2013-07-04 09:43:17 +00:00
|
|
|
(should
|
|
|
|
(string-equal
|
2013-07-05 14:06:14 +00:00
|
|
|
(file-notify--event-file1-name file-notify--test-event)
|
|
|
|
file-notify--test-tmpfile1))))
|
|
|
|
|
|
|
|
(defun file-notify--test-event-handler (file-notify--test-event)
|
|
|
|
"Run a test over FILE-NOTIFY--TEST-EVENT.
|
|
|
|
Save the result in `file-notify--test-results', for later analysis."
|
|
|
|
(let ((result
|
|
|
|
(ert-run-test (make-ert-test :body 'file-notify--test-event-test))))
|
|
|
|
(setq file-notify--test-results
|
|
|
|
(append file-notify--test-results `(,result)))))
|
|
|
|
|
|
|
|
(defun file-notify--test-make-temp-name ()
|
2013-07-04 09:43:17 +00:00
|
|
|
"Create a temporary file name for test."
|
|
|
|
(expand-file-name
|
|
|
|
(make-temp-name "file-notify-test") temporary-file-directory))
|
|
|
|
|
2014-01-21 13:31:39 +00:00
|
|
|
(defmacro file-notify--wait-for-events (timeout until)
|
|
|
|
"Wait for file notification events until form UNTIL is true.
|
2014-01-27 19:10:02 +00:00
|
|
|
TIMEOUT is the maximum time to wait for, in seconds."
|
2014-01-21 13:31:39 +00:00
|
|
|
`(with-timeout (,timeout (ignore))
|
|
|
|
(while (null ,until)
|
2014-02-04 11:41:20 +00:00
|
|
|
(read-event nil nil 0.1))))
|
2014-01-21 13:31:39 +00:00
|
|
|
|
2013-10-24 07:38:45 +00:00
|
|
|
(ert-deftest file-notify-test02-events ()
|
|
|
|
"Check file creation/removal notifications."
|
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
(let (desc)
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq file-notify--test-results nil
|
|
|
|
file-notify--test-tmpfile (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-tmpfile1 (file-notify--test-make-temp-name)
|
|
|
|
desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) 'file-notify--test-event-handler))
|
|
|
|
|
|
|
|
;; Check creation and removal.
|
2013-11-13 15:36:12 +00:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2013-10-24 07:38:45 +00:00
|
|
|
(delete-file file-notify--test-tmpfile)
|
2014-02-04 11:41:20 +00:00
|
|
|
(sleep-for 0.1)
|
2013-10-24 07:38:45 +00:00
|
|
|
|
|
|
|
;; Check copy and rename.
|
2013-11-13 15:36:12 +00:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2013-10-24 07:38:45 +00:00
|
|
|
(copy-file file-notify--test-tmpfile file-notify--test-tmpfile1)
|
|
|
|
(delete-file file-notify--test-tmpfile)
|
|
|
|
(delete-file file-notify--test-tmpfile1)
|
2014-02-04 11:41:20 +00:00
|
|
|
(sleep-for 0.1)
|
2013-10-24 07:38:45 +00:00
|
|
|
|
2013-11-13 15:36:12 +00:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2013-10-24 07:38:45 +00:00
|
|
|
(rename-file file-notify--test-tmpfile file-notify--test-tmpfile1)
|
2014-01-21 13:31:39 +00:00
|
|
|
(delete-file file-notify--test-tmpfile1)
|
2014-02-04 11:41:20 +00:00
|
|
|
(sleep-for 0.1))
|
2013-10-24 07:38:45 +00:00
|
|
|
|
|
|
|
;; Wait for events, and exit.
|
2014-01-21 13:31:39 +00:00
|
|
|
(file-notify--wait-for-events 5 file-notify--test-results)
|
2013-10-24 07:38:45 +00:00
|
|
|
(file-notify-rm-watch desc)
|
|
|
|
(ignore-errors (delete-file file-notify--test-tmpfile))
|
|
|
|
(ignore-errors (delete-file file-notify--test-tmpfile1))))
|
2013-07-09 07:52:25 +00:00
|
|
|
|
2014-01-26 16:20:13 +00:00
|
|
|
(should file-notify--test-results)
|
2013-10-24 07:38:45 +00:00
|
|
|
(dolist (result file-notify--test-results)
|
|
|
|
;(message "%s" (ert-test-result-messages result))
|
|
|
|
(when (ert-test-failed-p result)
|
|
|
|
(ert-fail (cadr (ert-test-result-with-condition-condition result))))))
|
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test02-events
|
|
|
|
"Check file creation/removal notifications for remote files.")
|
2013-07-04 09:43:17 +00:00
|
|
|
|
|
|
|
(defvar auto-revert-remote-files)
|
2013-11-28 16:14:13 +00:00
|
|
|
(defvar auto-revert-stop-on-user-input)
|
|
|
|
(setq auto-revert-remote-files t
|
|
|
|
auto-revert-stop-on-user-input nil)
|
2013-07-04 09:43:17 +00:00
|
|
|
(require 'autorevert)
|
|
|
|
|
2013-10-24 07:38:45 +00:00
|
|
|
(ert-deftest file-notify-test03-autorevert ()
|
|
|
|
"Check autorevert via file notification.
|
2013-07-04 09:43:17 +00:00
|
|
|
This test is skipped in batch mode."
|
2013-10-24 07:38:45 +00:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
;; `auto-revert-buffers' runs every 5". And we must wait, until the
|
|
|
|
;; file has been reverted.
|
2013-11-27 14:23:32 +00:00
|
|
|
(let* ((remote (file-remote-p temporary-file-directory))
|
|
|
|
(timeout (if remote 60 10))
|
|
|
|
buf)
|
2013-10-24 07:38:45 +00:00
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
|
2013-11-13 15:36:12 +00:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2013-10-24 07:38:45 +00:00
|
|
|
(setq buf (find-file-noselect file-notify--test-tmpfile))
|
|
|
|
(with-current-buffer buf
|
|
|
|
(should (string-equal (buffer-string) "any text"))
|
|
|
|
(auto-revert-mode 1)
|
|
|
|
|
|
|
|
;; `auto-revert-buffers' runs every 5".
|
|
|
|
(with-timeout (timeout (ignore))
|
|
|
|
(while (null auto-revert-notify-watch-descriptor)
|
2014-02-04 11:41:20 +00:00
|
|
|
(sleep-for 1)))
|
2013-10-24 07:38:45 +00:00
|
|
|
|
|
|
|
;; Check, that file notification has been used.
|
|
|
|
(should auto-revert-mode)
|
|
|
|
(should auto-revert-use-notify)
|
|
|
|
(should auto-revert-notify-watch-descriptor)
|
|
|
|
|
|
|
|
;; Modify file. We wait for a second, in order to
|
|
|
|
;; have another timestamp.
|
2014-02-04 11:41:20 +00:00
|
|
|
(sleep-for 1)
|
2013-10-24 07:38:45 +00:00
|
|
|
(shell-command
|
|
|
|
(format "echo -n 'another text' >%s"
|
|
|
|
(or (file-remote-p file-notify--test-tmpfile 'localname)
|
|
|
|
file-notify--test-tmpfile)))
|
|
|
|
|
|
|
|
;; Check, that the buffer has been reverted.
|
|
|
|
(with-current-buffer (get-buffer-create "*Messages*")
|
2014-01-21 13:31:39 +00:00
|
|
|
(file-notify--wait-for-events
|
|
|
|
timeout
|
|
|
|
(string-match (format "Reverting buffer `%s'." (buffer-name buf))
|
|
|
|
(buffer-string))))
|
2013-11-27 14:23:32 +00:00
|
|
|
(should (string-match "another text" (buffer-string)))))
|
2013-10-24 07:38:45 +00:00
|
|
|
|
|
|
|
;; Exit.
|
|
|
|
(ignore-errors (kill-buffer buf))
|
|
|
|
(ignore-errors (delete-file file-notify--test-tmpfile)))))
|
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test03-autorevert
|
|
|
|
"Check autorevert via file notification for remote files.
|
2013-07-05 14:06:14 +00:00
|
|
|
This test is skipped in batch mode.")
|
2013-07-04 09:43:17 +00:00
|
|
|
|
|
|
|
(defun file-notify-test-all (&optional interactive)
|
|
|
|
"Run all tests for \\[file-notify]."
|
|
|
|
(interactive "p")
|
2013-10-24 07:38:45 +00:00
|
|
|
(if interactive
|
|
|
|
(ert-run-tests-interactively "^file-notify-")
|
|
|
|
(ert-run-tests-batch "^file-notify-")))
|
2013-07-04 09:43:17 +00:00
|
|
|
|
|
|
|
(provide 'file-notify-tests)
|
|
|
|
;;; file-notify-tests.el ends here
|