2015-09-10 17:18:15 +02:00
|
|
|
;;; file-notify-tests.el --- Tests of file notifications -*- lexical-binding: t; -*-
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2016-01-01 01:16:19 -08:00
|
|
|
;; Copyright (C) 2013-2016 Free Software Foundation, Inc.
|
2013-07-04 11:43:17 +02: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 10:21:58 +02: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".
|
2014-04-25 12:35:01 +02:00
|
|
|
;; Tramp's file name handlers still run, so this test is sufficient
|
2014-04-24 10:21:58 +02:00
|
|
|
;; 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 16:06:14 +02:00
|
|
|
|
2013-11-27 15:23:32 +01:00
|
|
|
;; A whole test run can be performed calling the command `file-notify-test-all'.
|
2013-07-04 11:43:17 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'ert)
|
|
|
|
(require 'filenotify)
|
2014-04-24 10:21:58 +02:00
|
|
|
(require 'tramp)
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2013-07-05 16:06:14 +02: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 15:23:32 +01:00
|
|
|
(cond
|
|
|
|
((getenv "REMOTE_TEMPORARY_FILE_DIRECTORY"))
|
|
|
|
((eq system-type 'windows-nt) null-device)
|
2014-04-24 10:21:58 +02: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 16:06:14 +02:00
|
|
|
"Temporary directory for Tramp tests.")
|
|
|
|
|
|
|
|
(defvar file-notify--test-tmpfile nil)
|
|
|
|
(defvar file-notify--test-tmpfile1 nil)
|
2015-06-02 23:47:17 +02:00
|
|
|
(defvar file-notify--test-desc nil)
|
2016-02-20 08:33:11 +01:00
|
|
|
(defvar file-notify--test-desc1 nil)
|
2016-02-20 14:04:36 +01:00
|
|
|
(defvar file-notify--test-desc2 nil)
|
2013-07-05 16:06:14 +02:00
|
|
|
(defvar file-notify--test-results nil)
|
|
|
|
(defvar file-notify--test-event nil)
|
2015-09-09 21:46:40 +02:00
|
|
|
(defvar file-notify--test-events nil)
|
2015-10-26 16:46:48 +01:00
|
|
|
|
2016-02-07 19:30:01 +01:00
|
|
|
(defconst file-notify--test-read-event-timeout 0.02
|
|
|
|
"Timeout for `read-event' calls.
|
|
|
|
It is different for local and remote file notification libraries.")
|
|
|
|
|
2015-09-20 18:44:36 +02:00
|
|
|
(defun file-notify--test-timeout ()
|
2015-10-13 09:44:48 +02:00
|
|
|
"Timeout to wait for arriving events, in seconds."
|
2016-01-22 19:56:09 +01:00
|
|
|
(cond
|
|
|
|
((file-remote-p temporary-file-directory) 6)
|
2016-02-06 21:53:38 +02:00
|
|
|
((string-equal (file-notify--test-library) "w32notify") 10)
|
2016-01-22 19:56:09 +01:00
|
|
|
((eq system-type 'cygwin) 10)
|
|
|
|
(t 3)))
|
2013-07-05 16:06:14 +02:00
|
|
|
|
2015-09-10 17:18:15 +02:00
|
|
|
(defun file-notify--test-cleanup ()
|
|
|
|
"Cleanup after a test."
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
2016-02-20 08:33:11 +01:00
|
|
|
(file-notify-rm-watch file-notify--test-desc1)
|
2016-02-20 14:04:36 +01:00
|
|
|
(file-notify-rm-watch file-notify--test-desc2)
|
2015-09-10 17:18:15 +02:00
|
|
|
|
2016-02-07 19:30:01 +01:00
|
|
|
(ignore-errors
|
|
|
|
(delete-file (file-newest-backup file-notify--test-tmpfile)))
|
|
|
|
(ignore-errors
|
2015-10-26 16:46:48 +01:00
|
|
|
(if (file-directory-p file-notify--test-tmpfile)
|
2015-09-20 18:44:36 +02:00
|
|
|
(delete-directory file-notify--test-tmpfile 'recursive)
|
2015-09-14 09:52:31 +02:00
|
|
|
(delete-file file-notify--test-tmpfile)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(ignore-errors
|
2015-10-26 16:46:48 +01:00
|
|
|
(if (file-directory-p file-notify--test-tmpfile1)
|
2015-09-20 18:44:36 +02:00
|
|
|
(delete-directory file-notify--test-tmpfile1 'recursive)
|
2015-09-14 09:52:31 +02:00
|
|
|
(delete-file file-notify--test-tmpfile1)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(ignore-errors
|
|
|
|
(when (file-remote-p temporary-file-directory)
|
|
|
|
(tramp-cleanup-connection
|
|
|
|
(tramp-dissect-file-name temporary-file-directory) nil 'keep-password)))
|
2015-09-10 17:18:15 +02:00
|
|
|
|
2015-10-25 14:18:17 +01:00
|
|
|
(setq file-notify--test-tmpfile nil
|
|
|
|
file-notify--test-tmpfile1 nil
|
|
|
|
file-notify--test-desc nil
|
2016-02-20 08:33:11 +01:00
|
|
|
file-notify--test-desc1 nil
|
2016-02-20 14:04:36 +01:00
|
|
|
file-notify--test-desc2 nil
|
2015-10-25 14:18:17 +01:00
|
|
|
file-notify--test-results nil
|
2016-01-22 19:56:09 +01:00
|
|
|
file-notify--test-events nil)
|
2015-09-10 17:18:15 +02:00
|
|
|
(when file-notify--test-event
|
|
|
|
(error "file-notify--test-event should not be set but bound dynamically")))
|
|
|
|
|
2014-04-25 12:35:01 +02:00
|
|
|
(setq password-cache-expiry nil
|
|
|
|
tramp-verbose 0
|
2013-07-05 16:06:14 +02:00
|
|
|
tramp-message-show-message nil)
|
2013-11-27 15:23:32 +01:00
|
|
|
|
2013-11-08 10:31:15 +01:00
|
|
|
;; This shall happen on hydra only.
|
|
|
|
(when (getenv "NIX_STORE")
|
|
|
|
(add-to-list 'tramp-remote-path 'tramp-own-remote-path))
|
2013-07-05 16:06:14 +02:00
|
|
|
|
2013-07-24 15:56:19 +02:00
|
|
|
;; We do not want to try and fail `file-notify-add-watch'.
|
2013-10-24 09:38:45 +02:00
|
|
|
(defun file-notify--test-local-enabled ()
|
|
|
|
"Whether local file notification is enabled.
|
|
|
|
This is needed for local `temporary-file-directory' only, in the
|
2015-05-21 10:04:45 -07:00
|
|
|
remote case we return always t."
|
2013-10-24 09:38:45 +02:00
|
|
|
(or file-notify--library
|
2014-01-21 14:31:39 +01:00
|
|
|
(file-remote-p temporary-file-directory)))
|
2013-10-24 09:38:45 +02: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 15:56:19 +02:00
|
|
|
|
|
|
|
(defun file-notify--test-remote-enabled ()
|
|
|
|
"Whether remote file notification is enabled."
|
2013-10-24 09:38:45 +02:00
|
|
|
(unless (consp file-notify--test-remote-enabled-checked)
|
2015-06-03 20:03:42 +02:00
|
|
|
(let (desc)
|
|
|
|
(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))))
|
|
|
|
(setq file-notify--test-remote-enabled-checked (cons t desc))
|
|
|
|
(when desc (file-notify-rm-watch desc))))
|
2013-10-24 09:38:45 +02:00
|
|
|
;; Return result.
|
|
|
|
(cdr file-notify--test-remote-enabled-checked))
|
2013-07-24 15:56:19 +02:00
|
|
|
|
2016-01-22 19:56:09 +01:00
|
|
|
(defun file-notify--test-library ()
|
|
|
|
"The used library for the test, as a string.
|
|
|
|
In the remote case, it is the process name which runs on the
|
|
|
|
remote host, or nil."
|
|
|
|
(if (null (file-remote-p temporary-file-directory))
|
|
|
|
(symbol-name file-notify--library)
|
|
|
|
(and (consp file-notify--test-remote-enabled-checked)
|
|
|
|
(processp (cdr file-notify--test-remote-enabled-checked))
|
|
|
|
(replace-regexp-in-string
|
|
|
|
"<[[:digit:]]+>\\'" ""
|
|
|
|
(process-name (cdr file-notify--test-remote-enabled-checked))))))
|
|
|
|
|
2013-07-05 16:06:14 +02:00
|
|
|
(defmacro file-notify--deftest-remote (test docstring)
|
|
|
|
"Define ert `TEST-remote' for remote files."
|
2015-06-03 14:07:06 +02:00
|
|
|
(declare (indent 1))
|
2013-10-24 09:38:45 +02:00
|
|
|
`(ert-deftest ,(intern (concat (symbol-name test) "-remote")) ()
|
|
|
|
,docstring
|
2016-01-04 23:28:07 +01:00
|
|
|
:tags '(:expensive-test)
|
2015-06-03 20:03:42 +02:00
|
|
|
(let* ((temporary-file-directory
|
|
|
|
file-notify-test-remote-temporary-file-directory)
|
2016-02-07 19:30:01 +01:00
|
|
|
(file-notify--test-read-event-timeout 0.1)
|
2015-06-03 20:03:42 +02:00
|
|
|
(ert-test (ert-get-test ',test)))
|
|
|
|
(skip-unless (file-notify--test-remote-enabled))
|
|
|
|
(tramp-cleanup-connection
|
|
|
|
(tramp-dissect-file-name temporary-file-directory) nil 'keep-password)
|
|
|
|
(funcall (ert-test-body ert-test)))))
|
2013-07-05 16:06:14 +02:00
|
|
|
|
|
|
|
(ert-deftest file-notify-test00-availability ()
|
|
|
|
"Test availability of `file-notify'."
|
2013-10-24 09:38:45 +02:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
2015-09-10 20:01:33 +02:00
|
|
|
;; Report the native library which has been used.
|
2016-01-22 19:56:09 +01:00
|
|
|
(message "Library: `%s'" (file-notify--test-library))
|
2015-06-02 23:47:17 +02:00
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch temporary-file-directory '(change) 'ignore)))
|
2015-09-20 18:44:36 +02:00
|
|
|
|
|
|
|
;; Cleanup.
|
2015-09-10 17:18:15 +02:00
|
|
|
(file-notify--test-cleanup))
|
2013-07-24 15:56:19 +02:00
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test00-availability
|
|
|
|
"Test availability of `file-notify' for remote files.")
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2013-10-24 09:38:45 +02:00
|
|
|
(ert-deftest file-notify-test01-add-watch ()
|
|
|
|
"Check `file-notify-add-watch'."
|
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
2015-10-25 14:18:17 +01:00
|
|
|
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-tmpfile1
|
|
|
|
(format "%s/%s" file-notify--test-tmpfile (md5 (current-time-string))))
|
|
|
|
|
2015-06-02 23:47:17 +02:00
|
|
|
;; Check, that different valid parameters are accepted.
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch temporary-file-directory '(change) 'ignore)))
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
temporary-file-directory '(attribute-change) 'ignore)))
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
temporary-file-directory '(change attribute-change) 'ignore)))
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region "any text" nil file-notify--test-tmpfile nil 'no-message)
|
2015-10-25 14:18:17 +01:00
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile '(change attribute-change) 'ignore)))
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
2016-01-22 19:56:09 +01:00
|
|
|
(delete-file file-notify--test-tmpfile)
|
2015-06-02 23:47:17 +02: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))
|
2015-09-10 17:18:15 +02:00
|
|
|
'(wrong-type-argument 3)))
|
2015-10-25 14:18:17 +01:00
|
|
|
;; The upper directory of a file must exist.
|
|
|
|
(should
|
|
|
|
(equal (should-error
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile1 '(change attribute-change) 'ignore))
|
|
|
|
`(file-notify-error
|
|
|
|
"Directory does not exist" ,file-notify--test-tmpfile)))
|
2015-09-10 17:18:15 +02:00
|
|
|
|
2015-09-20 18:44:36 +02:00
|
|
|
;; Cleanup.
|
2015-09-10 17:18:15 +02:00
|
|
|
(file-notify--test-cleanup))
|
2013-07-09 09:52:25 +02:00
|
|
|
|
2013-10-24 09:38:45 +02:00
|
|
|
(file-notify--deftest-remote file-notify-test01-add-watch
|
|
|
|
"Check `file-notify-add-watch' for remote files.")
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2013-07-05 16:06:14 +02: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 11:43:17 +02:00
|
|
|
is bound somewhere."
|
2015-06-02 23:47:17 +02:00
|
|
|
;; Check the descriptor.
|
|
|
|
(should (equal (car file-notify--test-event) file-notify--test-desc))
|
2013-07-04 11:43:17 +02:00
|
|
|
;; Check the file name.
|
|
|
|
(should
|
2015-10-26 16:46:48 +01:00
|
|
|
(or (string-equal (file-notify--event-file-name file-notify--test-event)
|
|
|
|
file-notify--test-tmpfile)
|
2016-01-22 19:56:09 +01:00
|
|
|
(string-equal (file-notify--event-file-name file-notify--test-event)
|
|
|
|
file-notify--test-tmpfile1)
|
|
|
|
(string-equal (file-notify--event-file-name file-notify--test-event)
|
|
|
|
temporary-file-directory)))
|
2013-07-04 11:43:17 +02:00
|
|
|
;; Check the second file name if exists.
|
2013-07-05 16:06:14 +02:00
|
|
|
(when (eq (nth 1 file-notify--test-event) 'renamed)
|
2013-07-04 11:43:17 +02:00
|
|
|
(should
|
2016-01-22 19:56:09 +01:00
|
|
|
(or (string-equal (file-notify--event-file1-name file-notify--test-event)
|
|
|
|
file-notify--test-tmpfile1)
|
|
|
|
(string-equal (file-notify--event-file1-name file-notify--test-event)
|
|
|
|
temporary-file-directory)))))
|
2013-07-05 16:06:14 +02:00
|
|
|
|
2015-09-10 17:18:15 +02:00
|
|
|
(defun file-notify--test-event-handler (event)
|
2013-07-05 16:06:14 +02:00
|
|
|
"Run a test over FILE-NOTIFY--TEST-EVENT.
|
2015-09-20 18:44:36 +02:00
|
|
|
For later analysis, append the test result to `file-notify--test-results'
|
|
|
|
and the event to `file-notify--test-events'."
|
2015-09-10 17:18:15 +02:00
|
|
|
(let* ((file-notify--test-event event)
|
2015-09-20 18:44:36 +02:00
|
|
|
(result
|
|
|
|
(ert-run-test (make-ert-test :body 'file-notify--test-event-test))))
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Do not add lock files, this would confuse the checks.
|
2015-10-26 16:46:48 +01:00
|
|
|
(unless (string-match
|
|
|
|
(regexp-quote ".#")
|
|
|
|
(file-notify--event-file-name file-notify--test-event))
|
2016-02-20 14:20:54 +01:00
|
|
|
(message "file-notify--test-event-handler result: %s event: %S"
|
|
|
|
(null (ert-test-failed-p result)) file-notify--test-event)
|
2015-10-26 16:46:48 +01:00
|
|
|
(setq file-notify--test-events
|
|
|
|
(append file-notify--test-events `(,file-notify--test-event))
|
|
|
|
file-notify--test-results
|
|
|
|
(append file-notify--test-results `(,result))))))
|
2013-07-05 16:06:14 +02:00
|
|
|
|
|
|
|
(defun file-notify--test-make-temp-name ()
|
2013-07-04 11:43:17 +02:00
|
|
|
"Create a temporary file name for test."
|
|
|
|
(expand-file-name
|
|
|
|
(make-temp-name "file-notify-test") temporary-file-directory))
|
|
|
|
|
2014-01-21 14:31:39 +01:00
|
|
|
(defmacro file-notify--wait-for-events (timeout until)
|
2015-09-09 21:46:40 +02:00
|
|
|
"Wait for and return file notification events until form UNTIL is true.
|
2014-01-27 20:10:02 +01:00
|
|
|
TIMEOUT is the maximum time to wait for, in seconds."
|
2014-01-21 14:31:39 +01:00
|
|
|
`(with-timeout (,timeout (ignore))
|
|
|
|
(while (null ,until)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout))))
|
2014-01-21 14:31:39 +01:00
|
|
|
|
2016-02-08 10:54:43 +01:00
|
|
|
(defun file-notify--test-with-events-check (events)
|
|
|
|
"Check whether received events match one of the EVENTS alternatives."
|
|
|
|
(let (result)
|
|
|
|
(dolist (elt events result)
|
|
|
|
(setq result
|
|
|
|
(or result
|
|
|
|
(equal elt (mapcar #'cadr file-notify--test-events)))))))
|
|
|
|
|
|
|
|
(defun file-notify--test-with-events-explainer (events)
|
|
|
|
"Explain why `file-notify--test-with-events-check' fails."
|
|
|
|
(if (null (cdr events))
|
|
|
|
(format "Received events `%s' do not match expected events `%s'"
|
|
|
|
(mapcar #'cadr file-notify--test-events) (car events))
|
|
|
|
(format
|
|
|
|
"Received events `%s' do not match any sequence of expected events `%s'"
|
|
|
|
(mapcar #'cadr file-notify--test-events) events)))
|
|
|
|
|
|
|
|
(put 'file-notify--test-with-events-check 'ert-explainer
|
|
|
|
'file-notify--test-with-events-explainer)
|
|
|
|
|
2015-11-06 07:33:50 +01:00
|
|
|
(defmacro file-notify--test-with-events (events &rest body)
|
2015-09-21 15:07:06 +02:00
|
|
|
"Run BODY collecting events and then compare with EVENTS.
|
2016-01-22 19:56:09 +01:00
|
|
|
EVENTS is either a simple list of events, or a list of lists of
|
|
|
|
events, which represent different possible results. Don't wait
|
|
|
|
longer than timeout seconds for the events to be delivered."
|
2015-11-06 07:33:50 +01:00
|
|
|
(declare (indent 1))
|
2015-09-10 17:18:15 +02:00
|
|
|
(let ((outer (make-symbol "outer")))
|
2016-01-22 19:56:09 +01:00
|
|
|
`(let* ((,outer file-notify--test-events)
|
|
|
|
(events (if (consp (car ,events)) ,events (list ,events)))
|
|
|
|
(max-length (apply 'max (mapcar 'length events)))
|
2016-02-08 10:54:43 +01:00
|
|
|
create-lockfiles)
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Flush pending events.
|
|
|
|
(file-notify--wait-for-events
|
|
|
|
(file-notify--test-timeout)
|
|
|
|
(input-pending-p))
|
2015-09-20 18:44:36 +02:00
|
|
|
(let (file-notify--test-events)
|
2015-09-10 17:18:15 +02:00
|
|
|
,@body
|
|
|
|
(file-notify--wait-for-events
|
2016-01-22 19:56:09 +01:00
|
|
|
;; More events need more time. Use some fudge factor.
|
|
|
|
(* (ceiling max-length 100) (file-notify--test-timeout))
|
|
|
|
(= max-length (length file-notify--test-events)))
|
|
|
|
;; One of the possible results shall match.
|
2016-02-08 10:54:43 +01:00
|
|
|
(should (file-notify--test-with-events-check events))
|
2015-09-10 17:18:15 +02:00
|
|
|
(setq ,outer (append ,outer file-notify--test-events)))
|
|
|
|
(setq file-notify--test-events ,outer))))
|
|
|
|
|
2013-10-24 09:38:45 +02:00
|
|
|
(ert-deftest file-notify-test02-events ()
|
2015-09-12 10:37:32 +02:00
|
|
|
"Check file creation/change/removal notifications."
|
2013-10-24 09:38:45 +02:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
2015-10-26 16:46:48 +01:00
|
|
|
|
2015-06-02 23:47:17 +02:00
|
|
|
(unwind-protect
|
|
|
|
(progn
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Check file creation, change and deletion. It doesn't work
|
|
|
|
;; for cygwin and kqueue, because we don't use an implicit
|
|
|
|
;; directory monitor (kqueue), or the timings are too bad (cygwin).
|
|
|
|
(unless (or (eq system-type 'cygwin)
|
|
|
|
(string-equal (file-notify--test-library) "kqueue"))
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) 'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
(t '(created changed deleted stopped)))
|
|
|
|
(write-region
|
|
|
|
"another text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(delete-file file-notify--test-tmpfile))
|
|
|
|
;; `file-notify-rm-watch' fires the `stopped' event. Suppress it.
|
|
|
|
(let (file-notify--test-events)
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)))
|
|
|
|
|
|
|
|
;; Check file change and deletion.
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(write-region "any text" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) 'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
;; inotify and kqueue raise just one `changed' event.
|
|
|
|
((or (string-equal "inotify" (file-notify--test-library))
|
|
|
|
(string-equal "kqueue" (file-notify--test-library)))
|
|
|
|
'(changed deleted stopped))
|
|
|
|
;; gfilenotify raises one or two `changed' events
|
|
|
|
;; randomly, no chance to test. So we accept both cases.
|
|
|
|
((string-equal "gfilenotify" (file-notify--test-library))
|
|
|
|
'((changed deleted stopped)
|
|
|
|
(changed changed deleted stopped)))
|
|
|
|
(t '(changed changed deleted stopped)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2015-09-10 17:18:15 +02:00
|
|
|
(write-region
|
2016-01-22 19:56:09 +01:00
|
|
|
"another text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2015-09-10 17:18:15 +02:00
|
|
|
(delete-file file-notify--test-tmpfile))
|
2015-10-26 16:46:48 +01:00
|
|
|
;; `file-notify-rm-watch' fires the `stopped' event. Suppress it.
|
|
|
|
(let (file-notify--test-events)
|
|
|
|
(file-notify-rm-watch file-notify--test-desc))
|
|
|
|
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Check file creation, change and deletion when watching a
|
|
|
|
;; directory. There must be a `stopped' event when deleting
|
|
|
|
;; the directory.
|
|
|
|
(let ((temporary-file-directory
|
|
|
|
(make-temp-file "file-notify-test-parent" t)))
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
temporary-file-directory
|
|
|
|
'(change) 'file-notify--test-event-handler)))
|
2015-10-26 16:46:48 +01:00
|
|
|
(file-notify--test-with-events
|
2016-01-22 19:56:09 +01:00
|
|
|
(cond
|
|
|
|
;; w32notify does raise a `stopped' event when a
|
|
|
|
;; watched directory is deleted.
|
|
|
|
((string-equal (file-notify--test-library) "w32notify")
|
|
|
|
'(created changed deleted))
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
;; There are two `deleted' events, for the file and for
|
|
|
|
;; the directory. Except for kqueue.
|
|
|
|
((string-equal (file-notify--test-library) "kqueue")
|
|
|
|
'(created changed deleted stopped))
|
|
|
|
(t '(created changed deleted deleted stopped)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2015-10-26 16:46:48 +01:00
|
|
|
(write-region
|
2016-01-22 19:56:09 +01:00
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(delete-directory temporary-file-directory 'recursive))
|
2015-10-26 16:46:48 +01:00
|
|
|
;; `file-notify-rm-watch' fires the `stopped' event. Suppress it.
|
|
|
|
(let (file-notify--test-events)
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)))
|
2015-09-10 17:18:15 +02:00
|
|
|
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Check copy of files inside a directory.
|
|
|
|
(let ((temporary-file-directory
|
|
|
|
(make-temp-file "file-notify-test-parent" t)))
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-tmpfile1 (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
temporary-file-directory
|
|
|
|
'(change) 'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; w32notify does not distinguish between `changed' and
|
|
|
|
;; `attribute-changed'.
|
|
|
|
((string-equal (file-notify--test-library) "w32notify")
|
|
|
|
'(created changed created changed changed changed changed
|
|
|
|
deleted deleted))
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
;; There are three `deleted' events, for two files and
|
|
|
|
;; for the directory. Except for kqueue.
|
|
|
|
((string-equal (file-notify--test-library) "kqueue")
|
|
|
|
'(created changed created changed deleted stopped))
|
|
|
|
(t '(created changed created changed
|
|
|
|
deleted deleted deleted stopped)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(copy-file file-notify--test-tmpfile file-notify--test-tmpfile1)
|
|
|
|
;; The next two events shall not be visible.
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(set-file-modes file-notify--test-tmpfile 000)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(set-file-times file-notify--test-tmpfile '(0 0))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(delete-directory temporary-file-directory 'recursive))
|
|
|
|
;; `file-notify-rm-watch' fires the `stopped' event. Suppress it.
|
|
|
|
(let (file-notify--test-events)
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)))
|
2015-09-10 17:18:15 +02:00
|
|
|
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Check rename of files inside a directory.
|
|
|
|
(let ((temporary-file-directory
|
|
|
|
(make-temp-file "file-notify-test-parent" t)))
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-tmpfile1 (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
temporary-file-directory
|
|
|
|
'(change) 'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; w32notify does not distinguish between `changed' and
|
|
|
|
;; `attribute-changed'.
|
|
|
|
((string-equal (file-notify--test-library) "w32notify")
|
|
|
|
'(created changed renamed deleted))
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
;; There are two `deleted' events, for the file and for
|
|
|
|
;; the directory. Except for kqueue.
|
|
|
|
((string-equal (file-notify--test-library) "kqueue")
|
|
|
|
'(created changed renamed deleted stopped))
|
|
|
|
(t '(created changed renamed deleted deleted stopped)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(rename-file file-notify--test-tmpfile file-notify--test-tmpfile1)
|
|
|
|
;; After the rename, we won't get events anymore.
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(delete-directory temporary-file-directory 'recursive))
|
|
|
|
;; `file-notify-rm-watch' fires the `stopped' event. Suppress it.
|
|
|
|
(let (file-notify--test-events)
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)))
|
2015-09-10 17:18:15 +02:00
|
|
|
|
2016-01-22 19:56:09 +01:00
|
|
|
;; Check attribute change. Does not work for cygwin.
|
|
|
|
(unless (eq system-type 'cygwin)
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(attribute-change) 'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; w32notify does not distinguish between `changed' and
|
|
|
|
;; `attribute-changed'.
|
|
|
|
((string-equal (file-notify--test-library) "w32notify")
|
|
|
|
'(changed changed changed changed))
|
|
|
|
;; For kqueue and in the remote case, `write-region'
|
|
|
|
;; raises also an `attribute-changed' event.
|
|
|
|
((or (string-equal (file-notify--test-library) "kqueue")
|
|
|
|
(file-remote-p temporary-file-directory))
|
|
|
|
'(attribute-changed attribute-changed attribute-changed))
|
|
|
|
(t '(attribute-changed attribute-changed)))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(set-file-modes file-notify--test-tmpfile 000)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(set-file-times file-notify--test-tmpfile '(0 0))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(delete-file file-notify--test-tmpfile))
|
2015-10-26 16:46:48 +01:00
|
|
|
;; `file-notify-rm-watch' fires the `stopped' event. Suppress it.
|
|
|
|
(let (file-notify--test-events)
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)))
|
2015-09-20 18:44:36 +02:00
|
|
|
|
2016-02-20 14:04:36 +01:00
|
|
|
;; Check the global sequence just to make sure that all
|
|
|
|
;; results are as expected.
|
2015-09-10 17:18:15 +02:00
|
|
|
(should file-notify--test-results)
|
|
|
|
(dolist (result file-notify--test-results)
|
|
|
|
(when (ert-test-failed-p result)
|
2015-09-12 10:37:32 +02:00
|
|
|
(ert-fail
|
|
|
|
(cadr (ert-test-result-with-condition-condition result))))))
|
2015-09-20 18:44:36 +02:00
|
|
|
|
|
|
|
;; Cleanup.
|
2015-09-10 17:18:15 +02:00
|
|
|
(file-notify--test-cleanup)))
|
2013-10-24 09:38:45 +02:00
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test02-events
|
2015-09-12 10:37:32 +02:00
|
|
|
"Check file creation/change/removal notifications for remote files.")
|
2013-07-04 11:43:17 +02:00
|
|
|
|
|
|
|
(require 'autorevert)
|
2015-06-02 23:47:17 +02:00
|
|
|
(setq auto-revert-notify-exclude-dir-regexp "nothing-to-be-excluded"
|
|
|
|
auto-revert-remote-files t
|
|
|
|
auto-revert-stop-on-user-input nil)
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2013-10-24 09:38:45 +02:00
|
|
|
(ert-deftest file-notify-test03-autorevert ()
|
2015-09-14 22:15:20 +02:00
|
|
|
"Check autorevert via file notification."
|
2013-10-24 09:38:45 +02:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
;; `auto-revert-buffers' runs every 5". And we must wait, until the
|
|
|
|
;; file has been reverted.
|
2015-06-02 23:47:17 +02:00
|
|
|
(let ((timeout (if (file-remote-p temporary-file-directory) 60 10))
|
|
|
|
buf)
|
2013-10-24 09:38:45 +02:00
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
|
2013-11-13 16:36:12 +01:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2013-10-24 09:38:45 +02:00
|
|
|
(setq buf (find-file-noselect file-notify--test-tmpfile))
|
|
|
|
(with-current-buffer buf
|
|
|
|
(should (string-equal (buffer-string) "any text"))
|
2015-06-02 23:47:17 +02:00
|
|
|
;; `buffer-stale--default-function' checks for
|
|
|
|
;; `verify-visited-file-modtime'. We must ensure that it
|
|
|
|
;; returns nil.
|
|
|
|
(sleep-for 1)
|
2013-10-24 09:38:45 +02:00
|
|
|
(auto-revert-mode 1)
|
|
|
|
|
|
|
|
;; `auto-revert-buffers' runs every 5".
|
|
|
|
(with-timeout (timeout (ignore))
|
|
|
|
(while (null auto-revert-notify-watch-descriptor)
|
2014-02-04 12:41:20 +01:00
|
|
|
(sleep-for 1)))
|
2013-10-24 09:38:45 +02:00
|
|
|
|
|
|
|
;; Check, that file notification has been used.
|
|
|
|
(should auto-revert-mode)
|
|
|
|
(should auto-revert-use-notify)
|
|
|
|
(should auto-revert-notify-watch-descriptor)
|
|
|
|
|
2015-10-27 16:06:33 +01:00
|
|
|
;; Modify file. We wait for a second, in order to have
|
|
|
|
;; another timestamp.
|
2015-10-27 16:02:26 +01:00
|
|
|
(with-current-buffer (get-buffer-create "*Messages*")
|
|
|
|
(narrow-to-region (point-max) (point-max)))
|
2014-02-04 12:41:20 +01:00
|
|
|
(sleep-for 1)
|
2015-06-02 23:47:17 +02:00
|
|
|
(write-region
|
|
|
|
"another text" nil file-notify--test-tmpfile nil 'no-message)
|
2013-10-24 09:38:45 +02:00
|
|
|
|
|
|
|
;; Check, that the buffer has been reverted.
|
|
|
|
(with-current-buffer (get-buffer-create "*Messages*")
|
2014-01-21 14:31:39 +01:00
|
|
|
(file-notify--wait-for-events
|
|
|
|
timeout
|
2015-09-12 10:37:32 +02:00
|
|
|
(string-match
|
|
|
|
(format-message "Reverting buffer `%s'." (buffer-name buf))
|
|
|
|
(buffer-string))))
|
2015-10-27 16:02:26 +01:00
|
|
|
(should (string-match "another text" (buffer-string)))
|
|
|
|
|
|
|
|
;; Stop file notification. Autorevert shall still work via polling.
|
2016-02-05 22:55:28 +01:00
|
|
|
;; It doesn't work for w32notify.
|
2016-01-22 19:56:09 +01:00
|
|
|
(unless (string-equal (file-notify--test-library) "w32notify")
|
|
|
|
(file-notify-rm-watch auto-revert-notify-watch-descriptor)
|
2015-10-27 16:02:26 +01:00
|
|
|
(file-notify--wait-for-events
|
2016-01-22 19:56:09 +01:00
|
|
|
timeout (null auto-revert-use-notify))
|
|
|
|
(should-not auto-revert-use-notify)
|
|
|
|
(should-not auto-revert-notify-watch-descriptor)
|
|
|
|
|
|
|
|
;; Modify file. We wait for two seconds, in order to
|
|
|
|
;; have another timestamp. One second seems to be too
|
|
|
|
;; short.
|
|
|
|
(with-current-buffer (get-buffer-create "*Messages*")
|
|
|
|
(narrow-to-region (point-max) (point-max)))
|
|
|
|
(sleep-for 2)
|
|
|
|
(write-region
|
|
|
|
"foo bla" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
|
|
|
|
;; Check, that the buffer has been reverted.
|
|
|
|
(with-current-buffer (get-buffer-create "*Messages*")
|
|
|
|
(file-notify--wait-for-events
|
|
|
|
timeout
|
|
|
|
(string-match
|
|
|
|
(format-message "Reverting buffer `%s'." (buffer-name buf))
|
|
|
|
(buffer-string))))
|
|
|
|
(should (string-match "foo bla" (buffer-string))))))
|
2013-10-24 09:38:45 +02:00
|
|
|
|
2015-09-20 18:44:36 +02:00
|
|
|
;; Cleanup.
|
2015-10-27 16:02:26 +01:00
|
|
|
(with-current-buffer "*Messages*" (widen))
|
2013-10-24 09:38:45 +02:00
|
|
|
(ignore-errors (kill-buffer buf))
|
2015-09-10 17:18:15 +02:00
|
|
|
(file-notify--test-cleanup))))
|
2013-10-24 09:38:45 +02:00
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test03-autorevert
|
2015-09-14 22:15:20 +02:00
|
|
|
"Check autorevert via file notification for remote files.")
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2015-09-14 08:03:11 +02:00
|
|
|
(ert-deftest file-notify-test04-file-validity ()
|
2015-09-14 22:15:20 +02:00
|
|
|
"Check `file-notify-valid-p' for files."
|
2015-09-14 08:03:11 +02:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
2015-09-20 18:44:36 +02:00
|
|
|
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
2016-01-22 19:56:09 +01:00
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(write-region "any text" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
|
|
|
;; After calling `file-notify-rm-watch', the descriptor is not
|
|
|
|
;; valid anymore.
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
|
|
|
(should-not (file-notify-valid-p file-notify--test-desc))
|
|
|
|
(delete-file file-notify--test-tmpfile))
|
|
|
|
|
|
|
|
;; Cleanup.
|
|
|
|
(file-notify--test-cleanup))
|
|
|
|
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(write-region "any text" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
;; inotify and kqueue raise just one `changed' event.
|
|
|
|
((or (string-equal "inotify" (file-notify--test-library))
|
|
|
|
(string-equal "kqueue" (file-notify--test-library)))
|
|
|
|
'(changed deleted stopped))
|
|
|
|
;; gfilenotify raises one or two `changed' events
|
|
|
|
;; randomly, no chance to test. So we accept both cases.
|
|
|
|
((string-equal "gfilenotify" (file-notify--test-library))
|
|
|
|
'((changed deleted stopped)
|
|
|
|
(changed changed deleted stopped)))
|
|
|
|
(t '(changed changed deleted stopped)))
|
2015-09-20 18:44:36 +02:00
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2015-09-20 18:44:36 +02:00
|
|
|
(write-region
|
2016-01-22 19:56:09 +01:00
|
|
|
"another text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2015-10-26 16:46:48 +01:00
|
|
|
(delete-file file-notify--test-tmpfile))
|
2016-01-22 19:56:09 +01:00
|
|
|
;; After deleting the file, the descriptor is not valid anymore.
|
|
|
|
(should-not (file-notify-valid-p file-notify--test-desc))
|
|
|
|
(file-notify-rm-watch file-notify--test-desc))
|
2015-09-20 18:44:36 +02:00
|
|
|
|
|
|
|
;; Cleanup.
|
|
|
|
(file-notify--test-cleanup))
|
|
|
|
|
2015-09-14 08:03:11 +02:00
|
|
|
(unwind-protect
|
2016-01-22 19:56:09 +01:00
|
|
|
;; w32notify does not send a `stopped' event when deleting a
|
|
|
|
;; directory. The test does not work, therefore.
|
|
|
|
(unless (string-equal (file-notify--test-library) "w32notify")
|
|
|
|
(let ((temporary-file-directory
|
2015-10-26 16:46:48 +01:00
|
|
|
(make-temp-file "file-notify-test-parent" t)))
|
2016-01-22 19:56:09 +01:00
|
|
|
(should
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name)
|
|
|
|
file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
temporary-file-directory
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; cygwin recognizes only `deleted' and `stopped' events.
|
|
|
|
((eq system-type 'cygwin)
|
|
|
|
'(deleted stopped))
|
|
|
|
;; There are two `deleted' events, for the file and for
|
|
|
|
;; the directory. Except for kqueue.
|
|
|
|
((string-equal (file-notify--test-library) "kqueue")
|
|
|
|
'(created changed deleted stopped))
|
|
|
|
(t '(created changed deleted deleted stopped)))
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2015-10-26 16:46:48 +01:00
|
|
|
(delete-directory temporary-file-directory t))
|
2016-01-22 19:56:09 +01:00
|
|
|
;; After deleting the parent directory, the descriptor must
|
|
|
|
;; not be valid anymore.
|
|
|
|
(should-not (file-notify-valid-p file-notify--test-desc))))
|
2015-09-14 08:03:11 +02:00
|
|
|
|
2015-09-20 18:44:36 +02:00
|
|
|
;; Cleanup.
|
2015-09-14 22:15:20 +02:00
|
|
|
(file-notify--test-cleanup)))
|
2015-09-14 08:03:11 +02:00
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test04-file-validity
|
2015-09-14 22:15:20 +02:00
|
|
|
"Check `file-notify-valid-p' via file notification for remote files.")
|
2015-09-14 08:03:11 +02:00
|
|
|
|
|
|
|
(ert-deftest file-notify-test05-dir-validity ()
|
|
|
|
"Check `file-notify-valid-p' for directories."
|
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
2015-09-20 18:44:36 +02:00
|
|
|
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
2015-10-26 16:46:48 +01:00
|
|
|
(setq file-notify--test-tmpfile
|
|
|
|
(file-name-as-directory (file-notify--test-make-temp-name)))
|
2015-09-20 18:44:36 +02:00
|
|
|
(make-directory file-notify--test-tmpfile)
|
2016-01-22 19:56:09 +01:00
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
2015-09-20 18:44:36 +02:00
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
|
|
|
;; After removing the watch, the descriptor must not be valid
|
|
|
|
;; anymore.
|
|
|
|
(file-notify-rm-watch file-notify--test-desc)
|
2015-10-26 16:46:48 +01:00
|
|
|
(file-notify--wait-for-events
|
|
|
|
(file-notify--test-timeout)
|
|
|
|
(not (file-notify-valid-p file-notify--test-desc)))
|
2015-09-20 18:44:36 +02:00
|
|
|
(should-not (file-notify-valid-p file-notify--test-desc)))
|
|
|
|
|
|
|
|
;; Cleanup.
|
|
|
|
(file-notify--test-cleanup))
|
|
|
|
|
2015-09-14 08:03:11 +02:00
|
|
|
(unwind-protect
|
2015-09-21 15:07:06 +02:00
|
|
|
;; The batch-mode operation of w32notify is fragile (there's no
|
|
|
|
;; input threads to send the message to).
|
2016-01-22 19:56:09 +01:00
|
|
|
(unless (and noninteractive
|
|
|
|
(string-equal (file-notify--test-library) "w32notify"))
|
2015-10-26 16:46:48 +01:00
|
|
|
(setq file-notify--test-tmpfile
|
|
|
|
(file-name-as-directory (file-notify--test-make-temp-name)))
|
2015-09-14 09:52:31 +02:00
|
|
|
(make-directory file-notify--test-tmpfile)
|
2016-01-22 19:56:09 +01:00
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
2015-09-14 08:03:11 +02:00
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
2015-09-14 22:15:20 +02:00
|
|
|
;; After deleting the directory, the descriptor must not be
|
2015-09-14 09:52:31 +02:00
|
|
|
;; valid anymore.
|
2015-09-20 18:44:36 +02:00
|
|
|
(delete-directory file-notify--test-tmpfile t)
|
|
|
|
(file-notify--wait-for-events
|
2016-01-22 19:56:09 +01:00
|
|
|
(file-notify--test-timeout)
|
2015-09-20 18:44:36 +02:00
|
|
|
(not (file-notify-valid-p file-notify--test-desc)))
|
2015-09-14 22:15:20 +02:00
|
|
|
(should-not (file-notify-valid-p file-notify--test-desc)))
|
2015-09-14 08:03:11 +02:00
|
|
|
|
2015-09-20 18:44:36 +02:00
|
|
|
;; Cleanup.
|
2015-09-14 22:15:20 +02:00
|
|
|
(file-notify--test-cleanup)))
|
2015-09-14 08:03:11 +02:00
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test05-dir-validity
|
2015-09-14 22:15:20 +02:00
|
|
|
"Check `file-notify-valid-p' via file notification for remote directories.")
|
2015-09-14 08:03:11 +02:00
|
|
|
|
2016-01-22 19:56:09 +01:00
|
|
|
(ert-deftest file-notify-test06-many-events ()
|
|
|
|
"Check that events are not dropped."
|
|
|
|
:tags '(:expensive-test)
|
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
;; Under cygwin events arrive in random order. Impossible to define a test.
|
|
|
|
(skip-unless (not (eq system-type 'cygwin)))
|
|
|
|
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(make-directory file-notify--test-tmpfile)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) 'file-notify--test-event-handler)))
|
|
|
|
(unwind-protect
|
2016-02-06 21:53:38 +02:00
|
|
|
(let ((n 1000)
|
2016-01-22 19:56:09 +01:00
|
|
|
source-file-list target-file-list
|
|
|
|
(default-directory file-notify--test-tmpfile))
|
|
|
|
(dotimes (i n)
|
|
|
|
;; It matters which direction we rename, at least for
|
|
|
|
;; kqueue. This backend parses directories in alphabetic
|
|
|
|
;; order (x%d before y%d). So we rename both directions.
|
|
|
|
(if (zerop (mod i 2))
|
|
|
|
(progn
|
|
|
|
(push (expand-file-name (format "x%d" i)) source-file-list)
|
|
|
|
(push (expand-file-name (format "y%d" i)) target-file-list))
|
|
|
|
(push (expand-file-name (format "y%d" i)) source-file-list)
|
|
|
|
(push (expand-file-name (format "x%d" i)) target-file-list)))
|
|
|
|
(file-notify--test-with-events (make-list (+ n n) 'created)
|
|
|
|
(let ((source-file-list source-file-list)
|
|
|
|
(target-file-list target-file-list))
|
|
|
|
(while (and source-file-list target-file-list)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region "" nil (pop source-file-list) nil 'no-message)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-01-22 19:56:09 +01:00
|
|
|
(write-region "" nil (pop target-file-list) nil 'no-message))))
|
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; w32notify fires both `deleted' and `renamed' events.
|
|
|
|
((string-equal (file-notify--test-library) "w32notify")
|
|
|
|
(let (r)
|
|
|
|
(dotimes (_i n r)
|
|
|
|
(setq r (append '(deleted renamed) r)))))
|
|
|
|
(t (make-list n 'renamed)))
|
|
|
|
(let ((source-file-list source-file-list)
|
|
|
|
(target-file-list target-file-list))
|
|
|
|
(while (and source-file-list target-file-list)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
|
|
|
(rename-file (pop source-file-list) (pop target-file-list) t))))
|
2016-01-22 19:56:09 +01:00
|
|
|
(file-notify--test-with-events (make-list n 'deleted)
|
|
|
|
(dolist (file target-file-list)
|
2016-02-07 19:30:01 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
|
|
|
(delete-file file) file-notify--test-read-event-timeout)))
|
|
|
|
|
|
|
|
;; Cleanup.
|
2016-01-22 19:56:09 +01:00
|
|
|
(file-notify--test-cleanup)))
|
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test06-many-events
|
|
|
|
"Check that events are not dropped for remote directories.")
|
|
|
|
|
2016-02-07 19:30:01 +01:00
|
|
|
(ert-deftest file-notify-test07-backup ()
|
2016-02-08 10:54:43 +01:00
|
|
|
"Check that backup keeps file notification."
|
2016-02-07 19:30:01 +01:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(write-region "any text" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
2016-02-08 10:54:43 +01:00
|
|
|
(file-notify--test-with-events
|
|
|
|
(cond
|
|
|
|
;; For w32notify and in the remote case, there are two
|
|
|
|
;; `changed' events.
|
|
|
|
((or (string-equal (file-notify--test-library) "w32notify")
|
|
|
|
(file-remote-p temporary-file-directory))
|
|
|
|
'(changed changed))
|
|
|
|
(t '(changed)))
|
2016-02-07 19:30:01 +01:00
|
|
|
;; There shouldn't be any problem, because the file is kept.
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((buffer-file-name file-notify--test-tmpfile)
|
|
|
|
(make-backup-files t)
|
|
|
|
(backup-by-copying t)
|
|
|
|
(kept-new-versions 1)
|
|
|
|
(delete-old-versions t))
|
|
|
|
(insert "another text")
|
|
|
|
(save-buffer))))
|
|
|
|
;; After saving the buffer, the descriptor is still valid.
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
|
|
|
(delete-file file-notify--test-tmpfile))
|
|
|
|
|
|
|
|
;; Cleanup.
|
|
|
|
(file-notify--test-cleanup))
|
|
|
|
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
2016-02-08 10:54:43 +01:00
|
|
|
;; It doesn't work for kqueue, because we don't use an
|
|
|
|
;; implicit directory monitor.
|
|
|
|
(unless (string-equal (file-notify--test-library) "kqueue")
|
|
|
|
(setq file-notify--test-tmpfile (file-notify--test-make-temp-name))
|
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile nil 'no-message)
|
|
|
|
(should
|
|
|
|
(setq file-notify--test-desc
|
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change) #'file-notify--test-event-handler)))
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
|
|
|
(file-notify--test-with-events '(renamed created changed)
|
|
|
|
;; The file is renamed when creating a backup. It shall
|
|
|
|
;; still be watched.
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((buffer-file-name file-notify--test-tmpfile)
|
|
|
|
(make-backup-files t)
|
|
|
|
(backup-by-copying nil)
|
|
|
|
(backup-by-copying-when-mismatch nil)
|
|
|
|
(kept-new-versions 1)
|
|
|
|
(delete-old-versions t))
|
|
|
|
(insert "another text")
|
|
|
|
(save-buffer))))
|
|
|
|
;; After saving the buffer, the descriptor is still valid.
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc))
|
|
|
|
(delete-file file-notify--test-tmpfile)))
|
2016-02-07 19:30:01 +01:00
|
|
|
|
|
|
|
;; Cleanup.
|
|
|
|
(file-notify--test-cleanup)))
|
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test07-backup
|
2016-02-08 10:54:43 +01:00
|
|
|
"Check that backup keeps file notification for remote files.")
|
2016-02-07 19:30:01 +01:00
|
|
|
|
2016-02-20 08:33:11 +01:00
|
|
|
(ert-deftest file-notify-test08-watched-file-in-watched-dir ()
|
|
|
|
"Watches a directory and a file in that directory separately.
|
|
|
|
Checks that the callbacks are only called with events with
|
|
|
|
descriptors that were issued when registering the watches. This
|
|
|
|
test caters for the situation in bug#22736 where the callback for
|
|
|
|
the directory received events for the file with the descriptor of
|
|
|
|
the file watch."
|
2016-02-20 14:04:36 +01:00
|
|
|
:tags '(:expensive-test)
|
2016-02-20 08:33:11 +01:00
|
|
|
(skip-unless (file-notify--test-local-enabled))
|
|
|
|
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq file-notify--test-tmpfile
|
|
|
|
(make-temp-file "dir" t))
|
|
|
|
(setq file-notify--test-tmpfile1
|
|
|
|
(let ((temporary-file-directory file-notify--test-tmpfile))
|
|
|
|
(make-temp-file "file")))
|
2016-02-20 14:04:36 +01:00
|
|
|
(cl-flet ((dir-callback (event)
|
|
|
|
(message "dir-callback %s" event)
|
|
|
|
(let ((file-notify--test-desc file-notify--test-desc1))
|
|
|
|
(file-notify--test-event-handler event)))
|
|
|
|
(file-callback (event)
|
|
|
|
(message "file-callback %s" event)
|
|
|
|
(let ((file-notify--test-desc file-notify--test-desc2))
|
|
|
|
(file-notify--test-event-handler event))))
|
2016-02-20 08:33:11 +01:00
|
|
|
(should
|
2016-02-20 14:04:36 +01:00
|
|
|
(setq file-notify--test-desc1
|
2016-02-20 08:33:11 +01:00
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile
|
|
|
|
'(change attribute-change) #'dir-callback)))
|
|
|
|
(should
|
2016-02-20 14:04:36 +01:00
|
|
|
(setq file-notify--test-desc2
|
2016-02-20 08:33:11 +01:00
|
|
|
(file-notify-add-watch
|
|
|
|
file-notify--test-tmpfile1
|
|
|
|
'(change attribute-change) #'file-callback)))
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc1))
|
2016-02-20 14:04:36 +01:00
|
|
|
(should (file-notify-valid-p file-notify--test-desc2))
|
2016-02-20 08:33:11 +01:00
|
|
|
(dotimes (i 100)
|
2016-02-20 14:04:36 +01:00
|
|
|
(read-event nil nil file-notify--test-read-event-timeout)
|
2016-02-20 08:33:11 +01:00
|
|
|
(if (< 0 (random))
|
|
|
|
(write-region
|
|
|
|
"any text" nil file-notify--test-tmpfile1 t 'no-message)
|
|
|
|
(let ((temporary-file-directory file-notify--test-tmpfile))
|
2016-02-20 14:04:36 +01:00
|
|
|
(make-temp-file "fileX"))))
|
|
|
|
;; After saving the buffer, the descriptor is still valid.
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc1))
|
|
|
|
(should (file-notify-valid-p file-notify--test-desc2))
|
|
|
|
(delete-file file-notify--test-tmpfile1)
|
|
|
|
(delete-directory file-notify--test-tmpfile 'recursive))
|
|
|
|
|
|
|
|
;; Check the global sequence just to make sure that all
|
|
|
|
;; results are as expected.
|
|
|
|
(should file-notify--test-results)
|
|
|
|
(dolist (result file-notify--test-results)
|
|
|
|
(when (ert-test-failed-p result)
|
|
|
|
(ert-fail
|
|
|
|
(cadr (ert-test-result-with-condition-condition result))))))
|
2016-02-20 08:33:11 +01:00
|
|
|
|
|
|
|
;; Cleanup.
|
|
|
|
(file-notify--test-cleanup)))
|
|
|
|
|
|
|
|
(file-notify--deftest-remote file-notify-test08-watched-file-in-watched-dir
|
2016-02-20 14:04:36 +01:00
|
|
|
"Check `file-notify-test08-watched-file-in-watched-dir' for remote files.")
|
2016-02-20 08:33:11 +01:00
|
|
|
|
2013-07-04 11:43:17 +02:00
|
|
|
(defun file-notify-test-all (&optional interactive)
|
|
|
|
"Run all tests for \\[file-notify]."
|
|
|
|
(interactive "p")
|
2013-10-24 09:38:45 +02:00
|
|
|
(if interactive
|
|
|
|
(ert-run-tests-interactively "^file-notify-")
|
|
|
|
(ert-run-tests-batch "^file-notify-")))
|
2013-07-04 11:43:17 +02:00
|
|
|
|
2015-10-26 16:46:48 +01:00
|
|
|
;; TODO:
|
|
|
|
|
|
|
|
;; * For w32notify, no stopped events arrive when a directory is removed.
|
2016-01-22 19:56:09 +01:00
|
|
|
;; * Check, why cygwin recognizes only `deleted' and `stopped' events.
|
2015-10-26 16:46:48 +01:00
|
|
|
|
2013-07-04 11:43:17 +02:00
|
|
|
(provide 'file-notify-tests)
|
|
|
|
;;; file-notify-tests.el ends here
|