summaryrefslogtreecommitdiff
path: root/test/lisp/ansi-osc-tests.el
diff options
context:
space:
mode:
authorMatthias Meulien <orontee@gmail.com>2022-09-30 22:46:35 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-10-01 11:58:27 +0200
commitabc955d017cc4e6ad33d06d61f8317bd2b6c380f (patch)
tree3af8aec8b619967cd1269489a650634a5855d3e7 /test/lisp/ansi-osc-tests.el
parent454e1a06a2c5194a81148df91da6ee441adb601b (diff)
downloademacs-abc955d017cc4e6ad33d06d61f8317bd2b6c380f.tar.gz
emacs-abc955d017cc4e6ad33d06d61f8317bd2b6c380f.tar.bz2
emacs-abc955d017cc4e6ad33d06d61f8317bd2b6c380f.zip
Rename osc.el to ansi-osc.el (bug#58200)
* lisp/osc.el: Move from here... * lisp/ansi-osc.el: ...to here. * test/lisp/osc-tests.el: Move from here... * test/lisp/ansi-osc-tests.el: ...to here.
Diffstat (limited to 'test/lisp/ansi-osc-tests.el')
-rw-r--r--test/lisp/ansi-osc-tests.el57
1 files changed, 57 insertions, 0 deletions
diff --git a/test/lisp/ansi-osc-tests.el b/test/lisp/ansi-osc-tests.el
new file mode 100644
index 00000000000..b3d66fb036c
--- /dev/null
+++ b/test/lisp/ansi-osc-tests.el
@@ -0,0 +1,57 @@
+;;; osc-tests.el --- Tests for osc.el -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2022 Free Software Foundation, Inc.
+
+;; Author: Matthias Meulien <orontee@gmail.com>
+;; Keywords:
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs 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.
+
+;; GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;
+
+;;; Code:
+
+(require 'ansi-osc)
+(require 'ert)
+
+(defvar ansi-osc-tests--strings
+ `(
+ ("Hello World" "Hello World")
+
+ ;; window title
+ ("Buffer \e]2;A window title\e\\content" "Buffer content")
+
+ ;; window title
+ ("Unfinished \e]2;window title" "Unfinished \e]2;window title")
+
+ ;; current directory
+ ("\e]7;file://127.0.0.1/tmp\e\\user@host$ " "user@host$ ")
+
+ ;; hyperlink
+ ("\e]8;;http://example.com\e\\This is a link\e]8;;\e\\" "This is a link")
+ ))
+;; Don't output those strings to stdout since they may have
+;; side-effects on the environment
+
+(ert-deftest ansi-osc-tests-apply-region-no-handlers ()
+ (let ((ansi-osc-handlers nil))
+ (pcase-dolist (`(,input ,text) ansi-osc-tests--strings)
+ (with-temp-buffer
+ (insert input)
+ (ansi-osc-apply-on-region (point-min) (point-max))
+ (should (equal (buffer-string) text))))))