blob: 58adbefae0101a5bebabf3660f04efa4137fa194 (
about) (
plain)
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
|
;;; -*- lexical-binding: t; -*-
(ert-deftest linux-default-command ()
(with-mock
(mock (start-process "x-terminal-emulator" * "x-terminal-emulator"))
(let ((system-type 'gnu/linux))
(custom-reevaluate-setting 'terminal-here-terminal-command)
(terminal-here-launch-in-directory "adir"))))
(ert-deftest osx-default-command ()
(with-mock
(mock (start-process "open" * "open" "-a" "Terminal.app" "adir"))
(let ((system-type 'darwin))
(custom-reevaluate-setting 'terminal-here-terminal-command)
(terminal-here-launch-in-directory "adir"))))
(ert-deftest windows-default-command ()
(with-mock
(mock (start-process "start" * "start" "/D" "adir" "cmd"))
(let ((system-type 'windows-nt))
(custom-reevaluate-setting 'terminal-here-terminal-command)
(terminal-here-launch-in-directory "adir"))))
(ert-deftest custom-terminal-command-as-list ()
(with-mock
(mock (start-process "1" * "1" "2" "3"))
(validate-setq terminal-here-terminal-command '("1" "2" "3"))
(terminal-here-launch-in-directory "adir")))
(ert-deftest custom-terminal-command-as-function ()
(with-mock
(mock (start-process "1" * "1" "2" "3" "adir"))
(validate-setq terminal-here-terminal-command (lambda (dir) (list "1" "2" "3" dir)))
(terminal-here-launch-in-directory "adir")))
(ert-deftest custom-terminal-command-as-junk-rejected ()
(with-mock
(should-error
(validate-setq terminal-here-terminal-command "astring")
:type 'user-error)))
(ert-deftest no-project-root-function ()
;; Can't use validate setq here because you aren't allowed to set this to nil
;; by hand.
(setq terminal-here-project-root-function nil)
(should-error (terminal-here-project-launch) :type 'user-error))
(ert-deftest with-project-root-function ()
(let ((project-root-finder (lambda () "" "vc-root")))
(validate-setq terminal-here-project-root-function project-root-finder)
(with-mock
(mock (terminal-here-launch-in-directory "vc-root"))
(terminal-here-project-launch))))
(ert-deftest project-root-finds-nothing ()
(validate-setq terminal-here-project-root-function (lambda () nil))
(should-error (terminal-here-project-launch :type 'user-error)))
|