aboutsummaryrefslogtreecommitdiff
path: root/tests/rep-list.test
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-09-04 14:02:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-09-04 14:02:11 +0300
commitf8fdb500cc705e2b8b4a74166ceb2c6d8cee3fd3 (patch)
tree3f94b0b79ebad275904b9dc4a4165326ff598492 /tests/rep-list.test
parentf727c2b8fe273a12d059826291523060dab4b512 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/rep-list.test')
-rw-r--r--tests/rep-list.test147
1 files changed, 0 insertions, 147 deletions
diff --git a/tests/rep-list.test b/tests/rep-list.test
deleted file mode 100644
index 63d95ed..0000000
--- a/tests/rep-list.test
+++ /dev/null
@@ -1,147 +0,0 @@
-# file : tests/rep-list.test
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-.include common.test config.test remote.test remote-git.test
-
-# Source repository:
-#
-# rep-list
-# |-- extra -> stable (prerequisite)
-# | |-- libbar-1.1.0+1.tar.gz
-# | `-- repositories.manifest
-# |
-# |-- math -> extra (prerequisite)
-# | |-- libbar-1.0.0.tar.gz
-# | `-- repositories.manifest
-# |
-# |-- stable -> math (prerequisite)
-# | |-- libfoo-1.0.0.tar.gz
-# | `-- repositories.manifest
-# |
-# `-- testing -> stable (complement), extra (prerequisite)
-# | |-- libbar-2.0.0.tar.gz
-# | `-- repositories.manifest
-# |
-# `-- git
-# |-- libbar.git -> style-basic.git (prerequisite)
-# `-- style-basic.git
-
-# Prepare repositories used by tests if running in the local mode.
-#
-+if ($remote != true)
- cp -r $src/extra $out/extra
- cp -r $src/math $out/math
- cp -r $src/stable $out/stable
- cp -r $src/testing $out/testing
-
- c = $rep_create 2>!
-
- $c $out/extra &$out/extra/packages.manifest
- $c $out/math &$out/math/packages.manifest
- $c $out/stable &$out/stable/packages.manifest
- $c $out/testing &$out/testing/packages.manifest
-
- # Create git repositories.
- #
- $git_extract $src/git/libbar.tar
- $git_extract $src/git/style-basic.tar &$out_git/state0/***
-end
-
-rep_add += -d cfg 2>!
-rep_fetch += -d cfg --auth all --trust-yes 2>!
-
-: unexpected-arg
-:
-{
- $clone_cfg;
-
- $* unexpected 2>>EOE != 0
- error: unexpected argument 'unexpected'
- info: run 'bpkg help rep-list' for more information
- EOE
-}
-
-: top-level
-:
-{
- $clone_cfg;
- $rep_add $rep/stable && $rep_add $rep/testing && $rep_fetch;
-
- $* >>"EOO"
- pkg:build2.org/rep-list/stable ($rep/stable)
- pkg:build2.org/rep-list/testing ($rep/testing)
- EOO
-}
-
-: prerequisites
-:
-: Note that here we also test that the prerequisites cycle is handled properly.
-:
-{
- $clone_cfg;
- $rep_add $rep/stable && $rep_fetch;
-
- $* --prerequisites >>"EOO"
- pkg:build2.org/rep-list/stable ($rep/stable)
- prerequisite pkg:build2.org/rep-list/math ($rep/math)
- prerequisite pkg:build2.org/rep-list/extra ($rep/extra)
- prerequisite pkg:build2.org/rep-list/stable ($rep/stable)
- EOO
-}
-
-: complements
-:
-{
- $clone_cfg;
- $rep_add $rep/testing && $rep_fetch;
-
- $* --complements >>"EOO"
- pkg:build2.org/rep-list/testing ($rep/testing)
- complement pkg:build2.org/rep-list/stable ($rep/stable)
- EOO
-}
-
-: all
-:
-{
- $clone_cfg;
- $rep_add $rep/testing && $rep_fetch;
-
- $* --prerequisites --complements >>"EOO"
- pkg:build2.org/rep-list/testing ($rep/testing)
- complement pkg:build2.org/rep-list/stable ($rep/stable)
- prerequisite pkg:build2.org/rep-list/math ($rep/math)
- prerequisite pkg:build2.org/rep-list/extra ($rep/extra)
- prerequisite pkg:build2.org/rep-list/stable ($rep/stable)
- prerequisite pkg:build2.org/rep-list/extra ($rep/extra)
- prerequisite pkg:build2.org/rep-list/stable ($rep/stable)
- prerequisite pkg:build2.org/rep-list/math ($rep/math)
- prerequisite pkg:build2.org/rep-list/extra ($rep/extra)
- EOO
-}
-
-: git-rep
-:
-if ($git_supported != true)
-{
- # Skip git repository tests.
- #
-}
-else
-{
- rep = "$rep_git/state0"
- test.cleanups += &cfg/.bpkg/repos/*/***
-
- : root-complement
- :
- : Test that the root repository complement is handled properly.
- :
- $clone_root_cfg;
- $rep_add "$rep/libbar.git#master" && $rep_fetch;
-
- $* --complements --prerequisites >>~%EOO%
- %git:.+libbar#master .+libbar\.git#master%
- % prerequisite git:.+style-basic#stable .+style-basic\.git#stable \(heads/master\)%
- EOO
-}