Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / tests / status.scm
CommitLineData
dc0f74e5
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (test-status)
20 #:use-module (guix status)
21 #:use-module (srfi srfi-1)
22 #:use-module (srfi srfi-11)
fe17037b
LC
23 #:use-module (srfi srfi-64)
24 #:use-module (rnrs bytevectors)
f9a8fce1
LC
25 #:use-module (rnrs io ports)
26 #:use-module (ice-9 match))
dc0f74e5
LC
27
28(test-begin "status")
29
30(test-equal "compute-status, no-op"
31 (build-status)
32 (let-values (((port get-status)
33 (build-event-output-port compute-status)))
34 (display "foo\nbar\n\baz\n" port)
35 (get-status)))
36
37(test-equal "compute-status, builds + substitutes"
38 (list (build-status
39 (building '("foo.drv"))
40 (downloading (list (download "bar" "http://example.org/bar"
41 #:size 500
42 #:start 'now))))
43 (build-status
44 (building '("foo.drv"))
45 (downloading (list (download "bar" "http://example.org/bar"
46 #:size 500
47 #:transferred 42
48 #:start 'now))))
49 (build-status
50 (builds-completed '("foo.drv"))
51 (downloads-completed (list (download "bar" "http://example.org/bar"
52 #:size 500
53 #:transferred 500
54 #:start 'now
55 #:end 'now)))))
56 (let-values (((port get-status)
57 (build-event-output-port (lambda (event status)
58 (compute-status event status
59 #:current-time
60 (const 'now))))))
61 (display "@ build-started foo.drv\n" port)
62 (display "@ substituter-started bar\n" port)
63 (display "@ download-started bar http://example.org/bar 500\n" port)
64 (display "various\nthings\nget\nwritten\n" port)
65 (let ((first (get-status)))
66 (display "@ download-progress bar http://example.org/bar 500 42\n"
67 port)
68 (let ((second (get-status)))
69 (display "@ download-progress bar http://example.org/bar 500 84\n"
70 port)
71 (display "@ build-succeeded foo.drv\n" port)
72 (display "@ download-succeeded bar http://example.org/bar 500\n" port)
73 (display "Almost done!\n" port)
74 (display "@ substituter-succeeded bar\n" port)
75 (list first second (get-status))))))
76
77(test-equal "compute-status, missing events"
78 (list (build-status
79 (building '("foo.drv"))
80 (downloading (list (download "baz" "http://example.org/baz"
81 #:size 500
82 #:transferred 42
83 #:start 'now)
84 (download "bar" "http://example.org/bar"
85 #:size 999
86 #:transferred 0
87 #:start 'now))))
88 (build-status
89 (builds-completed '("foo.drv"))
90 (downloads-completed (list (download "baz" "http://example.org/baz"
91 #:size 500
92 #:transferred 500
93 #:start 'now
94 #:end 'now)
95 (download "bar" "http://example.org/bar"
96 #:size 999
97 #:transferred 999
98 #:start 'now
99 #:end 'now)))))
100 ;; Below we omit 'substituter-started' events and the like.
101 (let-values (((port get-status)
102 (build-event-output-port (lambda (event status)
103 (compute-status event status
104 #:current-time
105 (const 'now))))))
106 (display "@ build-started foo.drv\n" port)
107 (display "@ download-started bar http://example.org/bar 999\n" port)
108 (display "various\nthings\nget\nwritten\n" port)
109 (display "@ download-progress baz http://example.org/baz 500 42\n"
110 port)
111 (let ((first (get-status)))
112 (display "@ build-succeeded foo.drv\n" port)
113 (display "@ download-succeeded bar http://example.org/bar 999\n" port)
114 (display "Almost done!\n" port)
115 (display "@ substituter-succeeded baz\n" port)
116 (list first (get-status)))))
117
fe17037b 118(test-equal "build-output-port, UTF-8"
f9a8fce1 119 '((build-log #f "lambda is λ!\n"))
fe17037b
LC
120 (let-values (((port get-status) (build-event-output-port cons '()))
121 ((bv) (string->utf8 "lambda is λ!\n")))
122 (put-bytevector port bv)
123 (force-output port)
124 (get-status)))
125
126(test-equal "current-build-output-port, UTF-8 + garbage"
127 ;; What about a mixture of UTF-8 + garbage?
278f86a4
EB
128 (let ((replacement (cond-expand
129 ((and guile-2 (not guile-2.2)) "?")
130 (else "�"))))
131 `((build-log #f ,(string-append "garbage: " replacement "lambda: λ\n"))))
fe17037b
LC
132 (let-values (((port get-status) (build-event-output-port cons '())))
133 (display "garbage: " port)
134 (put-bytevector port #vu8(128))
135 (put-bytevector port (string->utf8 "lambda: λ\n"))
136 (force-output port)
137 (get-status)))
138
f9a8fce1
LC
139(test-equal "compute-status, multiplexed build output"
140 (list (build-status
141 (building '("foo.drv"))
142 (downloading (list (download "bar" "http://example.org/bar"
143 #:size 999
144 #:start 'now))))
145 (build-status
146 (building '("foo.drv"))
147 (downloading (list (download "bar" "http://example.org/bar"
148 #:size 999
149 #:transferred 42
150 #:start 'now))))
151 (build-status
152 ;; XXX: Should "bar.drv" be present twice?
153 (builds-completed '("bar.drv" "foo.drv"))
154 (downloads-completed (list (download "bar" "http://example.org/bar"
155 #:size 999
156 #:transferred 999
157 #:start 'now
158 #:end 'now)))))
159 (let-values (((port get-status)
160 (build-event-output-port (lambda (event status)
161 (compute-status event status
162 #:current-time
163 (const 'now)
164 #:derivation-path->output-path
165 (match-lambda
166 ("bar.drv" "bar")))))))
167 (display "@ build-started foo.drv 121\n" port)
168 (display "@ build-started bar.drv 144\n" port)
169 (display "@ build-log 121 6\nHello!" port)
170 (display "@ build-log 144 50
171@ download-started bar http://example.org/bar 999\n" port)
172 (let ((first (get-status)))
173 (display "@ build-log 121 30\n@ build-started FAKE!.drv 555\n")
174 (display "@ build-log 144 54
175@ download-progress bar http://example.org/bar 999 42\n"
176 port)
177 (let ((second (get-status)))
178 (display "@ download-succeeded bar http://example.org/bar 999\n" port)
179 (display "@ build-succeeded foo.drv\n" port)
180 (display "@ build-succeeded bar.drv\n" port)
181 (list first second (get-status))))))
182
dc0f74e5 183(test-end "status")