unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob caa70ef6fde283971af85db5a1ddbe3051ab6d2f 11142 bytes (raw)
name: tests/home/services/emacs.scm 	 # 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
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Kierin Bell <fernseed@fernseed.me>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix 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 Guix 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 Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (tests home services emacs)
  #:use-module (gnu home services emacs)
  #:use-module (guix store)
  #:use-module (guix monads)
  #:use-module (guix gexp)
  #:use-module (guix derivations)
  #:use-module (guix packages)
  #:use-module (guix tests)
  #:use-module (guix read-print)
  #:use-module (gnu packages guile)
  #:use-module (ice-9 textual-ports)
  #:use-module (srfi srfi-64))

(test-begin "emacs-home-services")

;;; Test `elisp' syntax

(test-equal "test `elisp' syntax, symbol"
  't
  (elisp->sexp (elisp t)))

(test-equal "test `elisp' syntax, basic list"
  '(a b c)
  (elisp->sexp (elisp (a b c))))

(test-equal "test `elisp' syntax, substitute symbol"
  'a
  (let ((foo 'a))
    (elisp->sexp (elisp (unelisp foo)))))

(test-equal "test `elisp' syntax, substitute splicing"
  '(a b c)
  (let ((foo '(a b c)))
    (elisp->sexp (elisp ((unelisp-splicing foo))))))

(test-equal "test `elisp' syntax, comment"
  (comment ";comment\n")
  (elisp->sexp (elisp (unelisp-comment ";comment\n"))))

(test-equal "test `elisp' syntax, nested comment"
  `(a ,(comment ";comment\n") b)
  (elisp->sexp (elisp (a (unelisp-comment ";comment\n") b))))

(test-equal "test `elisp' syntax, newline"
  (vertical-space 0)
  (elisp->sexp (elisp (unelisp-newline))))

(test-equal "test `elisp' syntax, page break"
  (page-break)
  (elisp->sexp (elisp (unelisp-page-break))))

(test-equal "elisp->sexp, nested <elisp> objects"
  '(a (b c))
  (elisp->sexp (elisp (a (unelisp (elisp (b (unelisp (elisp c)))))))))

;;; Test #% reader extension

(test-equal "test hash extension, symbol"
  't
  (elisp->sexp #%t))

(test-equal "test hash extension, basic list"
  '(a b c)
  (elisp->sexp #%(a b c)))

(test-equal "test hash extension, dotted list"
  '(a . b)
  (elisp->sexp #%(a . b)))

(test-equal "test hash extension, substitute symbol"
  'a
  (let ((foo 'a))
    (elisp->sexp #%#$foo)))

(test-equal "test hash extension, substitute splicing"
  '(a b c)
  (let ((foo '(a b c)))
    (elisp->sexp #%(#$@foo))))

(test-equal "test hash extension, basic vector"
  #(a b c)
  (elisp->sexp #%[a b c]))

(test-equal "test hash extension, basic character"
  #\a
  (elisp->sexp #%?a))

(test-equal "test hash extension, comment"
  (elisp->sexp (elisp (unelisp-comment ";comment\n")))
  (elisp->sexp #%#;comment
               ))

(test-equal "test hash extension, nested comment"
  (elisp->sexp (elisp (a (unelisp-comment ";comment\n") b)))
  (elisp->sexp #%(a #;comment
                  b)))

(test-equal "test hash extension, page break"
  (elisp->sexp (elisp (unelisp-newline)))
  (elisp->sexp #%#>))

(test-equal "test hash extension, page break"
  (elisp->sexp (elisp (unelisp-page-break)))
  (elisp->sexp #%#^L))

(test-equal "test hash extension, nested"
  '(a (b c))
  (elisp->sexp #%(a #$#%(b #$#%c))))

;;; Test home Emacs service configuration

(define (input->home-emacs-configuration . x)
  (apply (@@ (gnu home services emacs) input->home-emacs-configuration) x))

(define (home-emacs-configuration->code . x)
  (apply (@@ (gnu home services emacs) home-emacs-configuration->code) x))

(define-syntax-rule (test-import-emacs-configuration str config)
  "Test equality of `home-emacs-configuration' generated from Elisp string STR
with record CONFIG"
  (test-equal "test Emacs home configuration import "
    (home-emacs-configuration->code (call-with-input-string str
                                      input->home-emacs-configuration))
    (home-emacs-configuration->code config)))

(test-import-emacs-configuration
 "(setq my--foo 1)
(setq my--bar 'symbol)
(setq my--baz (list 'a ;comment
		    'b 'c))
(setq my--quux '(a b . c))
(setq my--quuux #'my--fun)
(setopt foo-var my--foo)

(foo-mode -1)
(bar-mode 1)
(baz-mode)
(quux-mode my--foo)


(bind-key* \"M-<up>\" 'scroll-down-line)
(bind-key* \"M-<down>\" 'scroll-up-line t)
;;; Top-level comment
(global-set-key (kbd \"C-c b\") 'bar)
(global-set-key [remap bar] 'baz)
(keymap-global-set \"C-c v\" 'quux)
(bind-key \"C-c c\" 'quuux)
(bind-key [t] #'quuuux 'global-map t)

(use-package foo
  :demand t
  ;; Inconvenient comment
  :hook prog-mode
  :custom
  (foo-bar 'baz)
  (foo-baz baz)
  :init
  ;; Ding
  (ding)

  (message \"Ding\"))

(use-package bar
  :if (eq system-type 'gnu/linx)
  :after foo
  :load-path \"~/src/bar\"
  :autoload bar-internal
  :commands bar-status bar
  :bind* ((\"C-x n\" . bar-status))
  :bind ((\"C-c n\" . bar)
	 :map bar-mode
	 (\"C-@\" . bar-bar)
	 :map bar-status-mode
	 (\"C-n\" . bar-next)
	 (\"C-c C-c\" . bar-do)
	 :repeat-map bar-repeat-map
	 (\"n\" . bar-next)
	 (\"c\" . bar-do))
  :bind-keymap (\"C-c b\" . bar-mode-map)
  :custom
  (bar-bool t)
  (bar-string \"bar\")
  (bar-list '(bar-1 bar-2 bar-3))
  (bar-list-2 `(,@bar-list bar-4))
  (bar-var my--foo)
  :custom-face
  (bar-face ((t (:slant italic))))
  (bar-highlight-face ((((class color) (background light))
			:background \"goldenrod1\")
		       (((class color) (background dark))
			:background \"DarkGoldenrod4\")
		       (t :inverse-video t)))
  :hook ((prog-mode foo-mode) . bar-mode)
  :mode \"\\\\.bar\\\\'\"
  :magic \">>BAR<<\"
  :magic-fallback \"<<BAR>>\"
  :config
  ;; Extra configuration
  (add-to-list 'bar-extensions 'foo-bar)
  :catch (lambda (_ _)
	   (message \"Error package initialization\")))

(use-package baz
  :unless (eq system-name \"bar\")
  :after (foo bar)
  :load-path (\"~/src/my/baz\" \"~/src/baz\")
  :autoload (baz-1 baz-2)
  :commands (baz)
  :custom
  ((baz-option t)
   (bar-list '((baz-1 . baz-2)))
   (baz-var my--foo))
  :hook ((prog-mode . baz-mode)
	 (bar-mode . baz-mode))
  :mode (\"\\\\.baz\\\\'\" . baz-mode)
  :magic (\">>BAZ<<\" \"!XXBAZXX\"))

(defun my--fun-1 (arg)
  arg)

(defun my--fun ()
  (prog1 (my--fun-1 'foo)
    (ding)))
"
 (home-emacs-configuration
 (default-init
   (emacs-configuration
     (variables `((my--foo . 1)
                  (my--bar . symbol)
                  (my--baz . ,(elisp (list 'a
                                           (unelisp-comment ";comment\n") 'b
                                           'c)))
                  (my--quux a b . c)
                  (my--quuux . ,(elisp (function my--fun)))
                  (foo-var . ,(elisp my--foo))))
     (modes `((foo-mode . #f)
              (bar-mode . #t)
              (baz-mode . #t)
              (quux-mode . ,(elisp my--foo))))
     (keys '(("C-c b" . bar)
             (#(remap bar) . baz)
             ("C-c v" . quux)
             ("C-c c" . quuux)
             (#(t) . quuuux)))
     (keys-override '(("M-<up>" . scroll-down-line)
                      ("M-<down>" . scroll-up-line)))
     (extra-init
       (list (elisp (defun my--fun-1
                           (arg) arg))
             (elisp (defun my--fun ()
                           (prog1 (my--fun-1 'foo)
                                  (ding))))))))
 (configured-packages
   (list (emacs-package
           (name 'foo)
           (load-force? #t)
           (options `((foo-bar . baz)
                      (foo-baz . ,(elisp baz))))
           (hooks '((prog-mode . foo-mode)))
           (extra-init
             (list (elisp (unelisp-comment ";; Ding\n"))
                   (elisp (ding))
                   (elisp (unelisp-newline))
                   (elisp (message "Ding")))))
         (emacs-package
           (name 'bar)
           (load-predicates (list (elisp (eq system-type 'gnu/linx))))
           (load-after-packages '(foo))
           (load-paths '("~/src/bar"))
           (autoloads '(bar-internal))
           (autoloads-interactive '(bar-status bar))
           (keys-global '(("C-c n" . bar)))
           (keys-global-keymaps '(("C-c b" . bar-mode-map)))
           (keys-override '(("C-x n" . bar-status)))
           (keys-local (list (emacs-keymap
                               (name 'bar-mode)
                               (keys '(("C-@" . bar-bar))))
                             (emacs-keymap
                               (name 'bar-status-mode)
                               (keys '(("C-n" . bar-next)
                                       ("C-c C-c" . bar-do))))
                             (emacs-keymap
                               (name 'bar-repeat-map)
                               (repeat? #t)
                               (keys '(("n" . bar-next)
                                       ("c" . bar-do))))))
           (options `((bar-bool . #t)
                      (bar-string . "bar")
                      (bar-list bar-1 bar-2 bar-3)
                      (bar-list-2 . ,(elisp `(,@bar-list bar-4)))
                      (bar-var . ,(elisp my--foo))))
           (faces '((bar-face (t (:slant italic)))
                    (bar-highlight-face (((class color)
                                          (background light))
                                         :background "goldenrod1")
                                        (((class color)
                                          (background dark))
                                         :background "DarkGoldenrod4")
                                        (t :inverse-video t))))
           (hooks '((prog-mode . bar-mode)
                    (foo-mode . bar-mode)))
           (auto-modes '(("\\.bar\\'" . bar)))
           (magic-modes '((">>BAR<<" . bar)))
           (extra-after-load
             (list (elisp (unelisp-comment ";; Extra configuration\n"))
                   (elisp (add-to-list 'bar-extensions 'foo-bar))))
           (extra-keywords
             `((:magic-fallback ,(elisp "<<BAR>>"))
               (:catch ,(elisp (lambda (_ _)
                                 (message "Error package initialization")))))))
         (emacs-package
           (name 'baz)
           (load-predicates (list (elisp (not (eq system-name "bar")))))
           (load-after-packages '(foo bar))
           (load-paths '("~/src/my/baz" "~/src/baz"))
           (autoloads '(baz-1 baz-2))
           (autoloads-interactive '(baz))
           (options `((baz-option . #t)
                      (bar-list (baz-1 . baz-2))
                      (baz-var . ,(elisp my--foo))))
           (hooks '((prog-mode . baz-mode)
                    (bar-mode . baz-mode)))
           (auto-modes '(("\\.baz\\'" . baz-mode)))
           (magic-modes '((">>BAZ<<" . baz)
                          ("!XXBAZXX" . baz))))))))

(test-end "emacs-home-services")

debug log:

solving caa70ef6fd ...
found caa70ef6fd in https://yhetil.org/guix-patches/0173e076aafb6ec389a7ebca5d56b7f4e8a02b6e.1689347338.git.fernseed@fernseed.me/

applying [1/1] https://yhetil.org/guix-patches/0173e076aafb6ec389a7ebca5d56b7f4e8a02b6e.1689347338.git.fernseed@fernseed.me/
diff --git a/tests/home/services/emacs.scm b/tests/home/services/emacs.scm
new file mode 100644
index 0000000000..caa70ef6fd

Checking patch tests/home/services/emacs.scm...
Applied patch tests/home/services/emacs.scm cleanly.

index at:
100644 caa70ef6fde283971af85db5a1ddbe3051ab6d2f	tests/home/services/emacs.scm

(*) 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/guix.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).