1 ;;; term-tests.el --- tests for term.el -*- lexical-binding: t -*-
3 ;; Copyright (C) 2017 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
26 (eval-when-compile (require 'cl-lib
))
28 (defvar term-height
) ; Number of lines in window.
29 (defvar term-width
) ; Number of columns in window.
31 (defun term-test-screen-from-input (width height input
&optional return-var
)
34 ;; Keep dimensions independent from window size.
35 (remove-function (local 'window-adjust-process-window-size-function
)
36 'term-maybe-reset-size
)
37 (term-exec (current-buffer) "test" "cat" nil nil
)
39 (setq term-width width
)
40 (setq term-height height
)
41 ;; Pass input directly to `term-emulate-terminal', it's easier to
42 ;; control chunking, and we don't have to worry about wrestling
43 ;; with stty settings.
44 (let ((proc (get-buffer-process (current-buffer))))
46 (prog2 (if (consp input
)
47 (mapc (lambda (input) (term-emulate-terminal proc input
)) input
)
48 (term-emulate-terminal proc input
))
49 (if return-var
(buffer-local-value return-var
(current-buffer))
50 (buffer-substring-no-properties (point-min) (point-max)))
51 ;; End the process to avoid query on buffer kill.
52 (process-send-eof proc
)
53 (accept-process-output proc
))
54 ;; Make extra sure we don't get stuck in case we hit some
55 ;; error before sending eof.
56 (when (process-live-p proc
)
58 ;; Let Emacs update process status.
59 (accept-process-output proc
))))))
61 (ert-deftest term-simple-lines
()
65 (should (equal (term-test-screen-from-input 40 12 str
)
66 (replace-regexp-in-string "\r" "" str
)))))
68 (ert-deftest term-carriage-return
()
70 first line\r_next line\r\n"))
71 (should (equal (term-test-screen-from-input 40 12 str
)
74 (ert-deftest term-line-wrap
()
75 (should (string-match-p
76 ;; Don't be strict about trailing whitespace.
77 "\\`a\\{40\\}\na\\{20\\} *\\'"
78 (term-test-screen-from-input 40 12 (make-string 60 ?a
))))
79 ;; Again, but split input into chunks.
80 (should (string-match-p
81 "\\`a\\{40\\}\na\\{20\\} *\\'"
82 (term-test-screen-from-input 40 12 (let ((str (make-string 30 ?a
)))
85 (ert-deftest term-cursor-movement
()
86 ;; Absolute positioning.
87 (should (equal "ab\ncd"
88 (term-test-screen-from-input
89 40 12 (concat "\e[2;2Hd"
93 ;; Send one byte at a time.
94 (should (equal "ab\ncd"
95 (term-test-screen-from-input
96 40 12 (split-string (concat "\e[2;2Hd"
100 ;; Relative positioning.
101 (should (equal "ab\ncd"
102 (term-test-screen-from-input
103 40 12 (concat "\e[B\e[Cd"
108 (ert-deftest term-scrolling-region
()
115 (term-test-screen-from-input
125 (ert-deftest term-set-directory
()
126 (let ((term-ansi-at-user (user-real-login-name)))
127 (should (equal (term-test-screen-from-input
128 40 12 "\eAnSiTc /foo/\n" 'default-directory
)
130 ;; Split input (Bug#17231).
131 (should (equal (term-test-screen-from-input
132 40 12 (list "\eAnSiTc /f" "oo/\n") 'default-directory
)
135 (provide 'term-tests
)
137 ;;; term-tests.el ends here