emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 94be5208468809dd203a9430df61714ed18ea54e 1710 bytes (raw)
name: testing/lisp/test-org-protocol.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
 
;;; test-org-protocol.el --- tests for org-protocol.el

;; Copyright (c)  Sacha Chua
;; Authors: Sacha Chua

;; This file is not part of GNU Emacs.

;; 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/>.

;;; Code:

(ert-deftest test-org-protocol/org-protocol-check-filename-for-protocol ()
  "Test `org-protocol-check-filename-for-protocol' specifications."
  ;; Store link
  (let ((uri "/some/directory/org-protocol:/store-link:/URL/TITLE"))
    (should (null (org-protocol-check-filename-for-protocol uri (list uri) nil))))
  (should (equal (car org-stored-links) '("URL" "TITLE")))
  ;; Handle multiple slashes
  (let ((uri "/some/directory/org-protocol://store-link://URL2//TITLE2"))
    (should (null (org-protocol-check-filename-for-protocol uri (list uri) nil))))
  (should (equal (car org-stored-links) '("URL2" "TITLE2")))
  ;; Ignore port - useful for KDE
  (let ((uri "/some/directory/org-protocol:/store-link:0//URL3//TITLE3"))
    (should (null (org-protocol-check-filename-for-protocol uri (list uri) nil))))
  (should (equal (car org-stored-links) '("URL3" "TITLE3"))))


;;; test-org-protocol.el ends here

debug log:

solving 94be520 ...
found 94be520 in https://list.orgmode.org/orgmode/87wpswrg7q.fsf@sachachua.com/

applying [1/1] https://list.orgmode.org/orgmode/87wpswrg7q.fsf@sachachua.com/
diff --git a/testing/lisp/test-org-protocol.el b/testing/lisp/test-org-protocol.el
new file mode 100644
index 0000000..94be520

Checking patch testing/lisp/test-org-protocol.el...
Applied patch testing/lisp/test-org-protocol.el cleanly.

index at:
100644 94be5208468809dd203a9430df61714ed18ea54e	testing/lisp/test-org-protocol.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 public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.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).