aboutsummaryrefslogtreecommitdiff
path: root/tests/rep-list.testscript
blob: c622327517c2c652a3d7582c84c20b32653b829c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# file      : tests/rep-list.testscript
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

.include common.testscript \
         config.testscript \
         remote.testscript \
         remote-git.testscript

# 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
}