all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 01ef18e0c9f7dbe609e3e6ba6cea12a57e1f22d2 2583 bytes (raw)
name: test/lisp/url/url-handlers-test.el 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
 
;;; url-handlers-test.el --- Test suite for url-handlers.el  -*- lexical-binding: t; -*-

;; Copyright (C) 2018 Free Software Foundation, Inc.

;; Author: Nicolas Petton <nicolas@petton.fr>

;; 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 <https://www.gnu.org/licenses/>.

;;; Commentary:

;;; Code:

(require 'ert)
(require 'url-handlers)

(defmacro with-url-handler-mode (&rest body)
  "Evaluate BODY with `url-handler-mode' turned on."
  (declare (indent 0) (debug t))
  (let ((url-handler-mode-active (make-symbol "url-handler-mode-active")))
    `(let ((,url-handler-mode-active url-handler-mode))
       (unwind-protect
           (progn
             (unless ,url-handler-mode-active
               (url-handler-mode))
             ,@body)
         (unless ,url-handler-mode-active
           (url-handler-mode -1))))))

(ert-deftest url-handlers-file-name-directory/preserve-url-types ()
  (with-url-handler-mode
    (should (equal (file-name-directory "https://gnu.org/index.html")
                   "https://gnu.org/"))
    (should (equal (file-name-directory "http://gnu.org/index.html")
                   "http://gnu.org/"))
    (should (equal (file-name-directory "ftp://gnu.org/index.html")
                   "ftp://gnu.org/"))))

(ert-deftest url-handlers-file-name-directory/sub-directories ()
  (with-url-handler-mode
    (should (equal (file-name-directory "https://foo/bar/baz/index.html")
                   "https://foo/bar/baz/"))))

(ert-deftest url-handlers-file-name-directory/file-urls ()
  (with-url-handler-mode
    (should (equal (file-name-directory "file:///foo/bar/baz.txt")
                   "file:///foo/bar/"))
    (should (equal (file-name-directory "file:///")
                   "file:///"))))

;; Regression test for bug#30444
(ert-deftest url-handlers-file-name-directory/no-filename ()
  (with-url-handler-mode
    (should (equal (file-name-directory "https://foo.org")
                   "https://foo.org/"))))

(provide 'url-handlers-test)
;;; url-handlers-test.el ends here

debug log:

solving 01ef18e0c9 ...
found 01ef18e0c9 in https://yhetil.org/emacs/87tvtj8yrd.fsf@petton.fr/

applying [1/1] https://yhetil.org/emacs/87tvtj8yrd.fsf@petton.fr/
diff --git a/test/lisp/url/url-handlers-test.el b/test/lisp/url/url-handlers-test.el
new file mode 100644
index 0000000000..01ef18e0c9

Checking patch test/lisp/url/url-handlers-test.el...
Applied patch test/lisp/url/url-handlers-test.el cleanly.

index at:
100644 01ef18e0c9f7dbe609e3e6ba6cea12a57e1f22d2	test/lisp/url/url-handlers-test.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.