aboutsummaryrefslogtreecommitdiff
path: root/tests/bournish.scm
blob: 3b40ce26434c4d6744d3e22a035789c27dc1efea (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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; 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 (test-bournish)
  #:use-module (guix build bournish)
  #:use-module (system base compile)
  #:use-module (system base language)
  #:use-module (srfi srfi-64))


(test-begin "bournish")

(test-equal "single statement"
  '(chdir "/foo")
  (read-and-compile (open-input-string "cd /foo")
                    #:from %bournish-language #:to 'scheme))

(test-equal "multiple statements"
  '(begin
     (chdir "/foo")
     (getcwd)
     ((@@ (guix build bournish) ls-command-implementation)))
  (read-and-compile (open-input-string "cd /foo\npwd\nls")
                    #:from %bournish-language #:to 'scheme))

(test-equal "rm"
  '(for-each delete-file (list "foo" "bar"))
  (read-and-compile (open-input-string "rm foo bar\n")
                    #:from %bournish-language #:to 'scheme))

(test-equal "rm -r"
  '(for-each (@ (guix build utils) delete-file-recursively)
             (list "/foo" "/bar"))
  (read-and-compile (open-input-string "rm -r /foo /bar\n")
                    #:from %bournish-language #:to 'scheme))

(test-end "bournish")

l'>...Efraim Flashner 2019-08-12gnu: vifm: Update to 0.10.1....Efraim Flashner 2019-08-12gnu: r-ggplot2: Update to 3.2.1....Ricardo Wurmus 2019-08-12gnu: r-with-tests: Update to 3.6.1....Ricardo Wurmus 2019-08-12gnu: font-gnu-unifont: Update to 12.1.03....Efraim Flashner 2019-08-12gnu: ungoogled-chromium: Update to 76.0.3809.100-0.8eba5c0 [security fixes]....Marius Bakke 2019-08-11gnu: mame: Update to 0.212....Nicolas Goaziou 2019-08-11gnu: openconnect: Update to 8.04....Tobias Geerinckx-Rice 2019-08-11gnu: linux-libre@4.9: Update to 4.9.189....Mark H Weaver 2019-08-11gnu: linux-libre@4.4: Update to 4.4.189....Mark H Weaver 2019-08-11gnu: Update electrum to 3.3.8....Vagrant Cascadian 2019-08-11gnu: diffoscope: Update to 120....Vagrant Cascadian 2019-08-09gnu: linux-libre: Update to 5.2.8....Mark H Weaver 2019-08-09gnu: linux-libre@4.19: Update to 4.19.66....Mark H Weaver 2019-08-09gnu: linux-libre@4.14: Update to 4.14.138....Mark H Weaver 2019-08-09gnu: emacs-deadgrep: Update to 0.8-1.329119c....Brian Leung 2019-08-09gnu: emacs-xr: Update to 1.13....Nicolas Goaziou 2019-08-09gnu: r-xml2: Update to 1.2.2....Ricardo Wurmus 2019-08-09gnu: r-ggforce: Update to 0.3.0....Ricardo Wurmus 2019-08-09gnu: r-tidytree: Update to 0.2.6....Ricardo Wurmus 2019-08-09gnu: freebayes: Simplify and enable tests....Ricardo Wurmus 2019-08-09gnu: freebayes: Move bamtools to inputs....Ricardo Wurmus 2019-08-09gnu: guile-email: Update to 0.2.0....Arun Isaac 2019-08-09gnu: 4store: Remove unneeded build phase....Efraim Flashner 2019-08-09gnu: 4store: Don't use unstable tarball....Efraim Flashner 2019-08-09gnu: Add freebayes....Pierre Neidhardt 2019-08-09gnu: Add vcflib....Pierre Neidhardt 2019-08-08gnu: isc-dhcp: Update bundled BIND to 9.11.9....Mark H Weaver 2019-08-08gnu: Add cutter....Jovany Leandro G.C 2019-08-08gnu: Add emacs-ox-hugo....Dimakakos Dimos via Guix-patches 2019-08-08gnu: git-annex: Update to 7.20190708....Kyle Meyer 2019-08-08gnu: git-annex: Don't patch shebang used in hooks....Kyle Meyer 2019-08-08gnu: emacs-helpful: Update to 0.17....Brian Leung