summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/grafts.scm62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/grafts.scm b/tests/grafts.scm
index f2ff839fd88..4eff06b4b3c 100644
--- a/tests/grafts.scm
+++ b/tests/grafts.scm
@@ -218,4 +218,66 @@
218 (let ((out (derivation->output-path grafted))) 218 (let ((out (derivation->output-path grafted)))
219 (file-is-directory? (string-append out "/" repl)))))) 219 (file-is-directory? (string-append out "/" repl))))))
220 220
221(test-assert "graft-derivation, grafts are not shadowed"
222 ;; We build a DAG as below, where dotted arrows represent replacements and
223 ;; solid arrows represent dependencies:
224 ;;
225 ;; P1 ·············> P1R
226 ;; |\__________________.
227 ;; v v
228 ;; P2 ·············> P2R
229 ;; |
230 ;; v
231 ;; P3
232 ;;
233 ;; We want to make sure that the two grafts we want to apply to P3 are
234 ;; honored and not shadowed by other computed grafts.
235 (let* ((p1 (build-expression->derivation
236 %store "p1"
237 '(mkdir (assoc-ref %outputs "out"))))
238 (p1r (build-expression->derivation
239 %store "P1"
240 '(let ((out (assoc-ref %outputs "out")))
241 (mkdir out)
242 (call-with-output-file (string-append out "/replacement")
243 (const #t)))))
244 (p2 (build-expression->derivation
245 %store "p2"
246 `(let ((out (assoc-ref %outputs "out")))
247 (mkdir out)
248 (chdir out)
249 (symlink (assoc-ref %build-inputs "p1") "p1"))
250 #:inputs `(("p1" ,p1))))
251 (p2r (build-expression->derivation
252 %store "P2"
253 `(let ((out (assoc-ref %outputs "out")))
254 (mkdir out)
255 (chdir out)
256 (symlink (assoc-ref %build-inputs "p1") "p1")
257 (call-with-output-file (string-append out "/replacement")
258 (const #t)))
259 #:inputs `(("p1" ,p1))))
260 (p3 (build-expression->derivation
261 %store "p3"
262 `(let ((out (assoc-ref %outputs "out")))
263 (mkdir out)
264 (chdir out)
265 (symlink (assoc-ref %build-inputs "p2") "p2"))
266 #:inputs `(("p2" ,p2))))
267 (p1g (graft
268 (origin p1)
269 (replacement p1r)))
270 (p2g (graft
271 (origin p2)
272 (replacement (graft-derivation %store p2r (list p1g)))))
273 (p3d (graft-derivation %store p3 (list p1g p2g))))
274 (and (build-derivations %store (list p3d))
275 (let ((out (derivation->output-path (pk p3d))))
276 ;; Make sure OUT refers to the replacement of P2, which in turn
277 ;; refers to the replacement of P1, as specified by P1G and P2G.
278 ;; It used to be the case that P2G would be shadowed by a simple
279 ;; P2->P2R graft, which is not what we want.
280 (and (file-exists? (string-append out "/p2/replacement"))
281 (file-exists? (string-append out "/p2/p1/replacement")))))))
282
221(test-end) 283(test-end)