Test vars and overrides
This commit is contained in:
parent
12c45b628c
commit
af16ee29b6
3 changed files with 15 additions and 19 deletions
31
tryme.scm
31
tryme.scm
|
@ -1,38 +1,31 @@
|
|||
(use-modules
|
||||
(ice-9 filesystem)
|
||||
(ordo connection)
|
||||
(ordo action filesystem)
|
||||
(ordo play)
|
||||
(ordo task)
|
||||
(ordo handler))
|
||||
|
||||
;; TODO: Consider how vars might be used in task args Currently a task argument
|
||||
;; can be a context refrence, for example we could write:
|
||||
;;
|
||||
;; (install-directory (context-ref 'base-dir))
|
||||
;;
|
||||
;; but there's no way to nest these, so we this will not work:
|
||||
;;
|
||||
;; (install-file (file-name-join (context-ref 'base-dir) "foo"))
|
||||
;;
|
||||
;; Maybe we could implement something like:
|
||||
;;
|
||||
;; (install-file (context-fn (file-name-join (context-ref 'base-dir) "foo")))
|
||||
;;
|
||||
;; where context-fn is some syntax that returns (lambda (ctx) ...)
|
||||
|
||||
(define test-play
|
||||
(play "Test play"
|
||||
#:connection (local-connection)
|
||||
#:vars '((base-dir . "/home/ray/ordo-test"))
|
||||
#:tasks (list
|
||||
(task "Override base dir"
|
||||
(const "/home/ray/ordo-test-again")
|
||||
#:register 'base-dir)
|
||||
(task "Create test directory"
|
||||
(install-directory "/home/ray/ordo-test"))
|
||||
(install-directory ($ 'base-dir)))
|
||||
(task "Create test file from string content"
|
||||
(install-file "/home/ray/ordo-test/foo" #:content "Hello, world!\n"))
|
||||
(install-file (file-name-join* ($ 'base-dir) "foo")
|
||||
#:content "Hello, world!\n"))
|
||||
(task "Create test file from local source"
|
||||
(install-file "/home/ray/ordo-test/bar" #:local-src "/home/ray/ordo-test/foo")
|
||||
(install-file (file-name-join* ($ 'base-dir) "bar")
|
||||
#:local-src (file-name-join* ($ 'base-dir) "foo"))
|
||||
#:triggers '(fritz))
|
||||
(task "Create test file from remote source"
|
||||
(install-file "/home/ray/ordo-test/baz" #:remote-src "/home/ray/ordo-test/bar")
|
||||
(install-file (file-name-join* ($ 'base-dir) "baz")
|
||||
#:remote-src (file-name-join* ($ 'base-dir) "bar"))
|
||||
#:triggers '(frobnicate)))
|
||||
#:handlers `((frobnicate . ,(handler "Frobnicate" (const #t)))
|
||||
(fritz . ,(handler "Fritz" (const #t)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue