channels: Do not offload package cache derivation.
[jackhill/guix/guix.git] / tests / status.scm
CommitLineData
dc0f74e5 1;;; GNU Guix --- Functional package management for GNU
a65177a6 2;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org>
dc0f74e5
LC
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?
a65177a6 128 (let ((replacement "�"))
278f86a4 129 `((build-log #f ,(string-append "garbage: " replacement "lambda: λ\n"))))
fe17037b
LC
130 (let-values (((port get-status) (build-event-output-port cons '())))
131 (display "garbage: " port)
132 (put-bytevector port #vu8(128))
133 (put-bytevector port (string->utf8 "lambda: λ\n"))
134 (force-output port)
135 (get-status)))
136
f9a8fce1
LC
137(test-equal "compute-status, multiplexed build output"
138 (list (build-status
139 (building '("foo.drv"))
140 (downloading (list (download "bar" "http://example.org/bar"
141 #:size 999
142 #:start 'now))))
143 (build-status
144 (building '("foo.drv"))
145 (downloading (list (download "bar" "http://example.org/bar"
146 #:size 999
147 #:transferred 42
148 #:start 'now))))
149 (build-status
150 ;; XXX: Should "bar.drv" be present twice?
151 (builds-completed '("bar.drv" "foo.drv"))
152 (downloads-completed (list (download "bar" "http://example.org/bar"
153 #:size 999
154 #:transferred 999
155 #:start 'now
156 #:end 'now)))))
157 (let-values (((port get-status)
158 (build-event-output-port (lambda (event status)
159 (compute-status event status
160 #:current-time
161 (const 'now)
162 #:derivation-path->output-path
163 (match-lambda
164 ("bar.drv" "bar")))))))
165 (display "@ build-started foo.drv 121\n" port)
166 (display "@ build-started bar.drv 144\n" port)
167 (display "@ build-log 121 6\nHello!" port)
168 (display "@ build-log 144 50
169@ download-started bar http://example.org/bar 999\n" port)
170 (let ((first (get-status)))
171 (display "@ build-log 121 30\n@ build-started FAKE!.drv 555\n")
172 (display "@ build-log 144 54
173@ download-progress bar http://example.org/bar 999 42\n"
174 port)
175 (let ((second (get-status)))
176 (display "@ download-succeeded bar http://example.org/bar 999\n" port)
177 (display "@ build-succeeded foo.drv\n" port)
178 (display "@ build-succeeded bar.drv\n" port)
179 (list first second (get-status))))))
180
dc0f74e5 181(test-end "status")