aboutsummaryrefslogtreecommitdiff
path: root/tests/publish.test
blob: 0b50270351dad246f5e5a1d0aa1f77e93f5cb7c4 (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# file      : tests/publish.test
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

.include common.test project.test

# Repository to use for the package submissions simulation.
#
# Note: could use empty config.bdep.test.repository value to suppress
# these test (which require network access).
#
repository = ($config.bdep.test.repository == [null] \
              ? ($build.version.stage                \
	         ? 'https://stage.build2.org'        \
		 : 'https://cppget.org')             \
	      : "$config.bdep.test.repository")

test.arguments += --repository "$repository" --control 'none' --yes \
--email user@example.com

cxx = cc "config.cxx=$config.cxx"

new  += 2>!
init += $cxx -d prj 2>! &prj/**/bootstrap/***

# Note that using the same package name and version for tests may result in
# duplicate submissions. We will use unique version for each test,
# incrementing the patch version for 1.0.X.
#
# Next version to use: 1.0.8
#
: single-pkg
:
{
  test.arguments += --simulate 'success'

  : basic
  :
  {
    $clone_root_prj;
    $init -C @cfg &prj-cfg/***;
    sed -i -e 's/^(version:) .*$/\1 1.0.1/' prj/manifest;

    $* 2>>~%EOE%
      synchronizing:
        upgrade prj/1.0.1
      submitting prj-1.0.1.tar.gz
      %.
      %.*prj/1.0.1 submission is queued \(.{12}\)%
      EOE
  }

  : no-cfg
  :
  {
    $clone_root_prj;

    $* 2>>~%EOE% != 0
      %error: no default configuration in project .+%
        info: use (@<cfg-name> | --config|-c <cfg-dir> | --all|-a) to specify configuration explicitly
      EOE
  }

  : multi-cfg
  :
  {
    $clone_root_prj;
    $init -C @cfg1 &prj-cfg1/***;
    $init -C @cfg2 &prj-cfg2/***;

    $* --all 2>'error: multiple configurations specified for publish' != 0
  }
}

: multi-pkg
:
{
  test.arguments += --simulate 'success'

  +$new -t empty prj &prj/***
  +$new --package -t lib libprj -d prj
  +$new --package -t exe prj    -d prj

  : both
  :
  {
    $clone_prj;
    sed -i -e 's/^(version:) .*$/\1 1.0.2/' prj/libprj/manifest;
    sed -i -e 's/^(version:) .*$/\1 1.0.2/' prj/prj/manifest;
    $init -C @cfg &prj-cfg/***;

    $* 2>>~%EOE%
      submitting libprj-1.0.2.tar.gz
      %.
      %.*libprj/1.0.2 submission is queued \(.{12}\)%
      submitting prj-1.0.2.tar.gz
      %.
      %.*prj/1.0.2 submission is queued \(.{12}\)%
      EOE
  }

  : single
  :
  {
    $clone_prj;
    sed -i -e 's/^(version:) .*$/\1 1.0.3/' prj/libprj/manifest;
    $init -C @cfg &prj-cfg/***;

    # Publish the single libprj package rather than the whole prj project.
    #
    test.arguments = $regex.apply($test.arguments, '^(prj)$', '\1/libprj');

    $* 2>>~%EOE%
      submitting libprj-1.0.3.tar.gz
      %.
      %.*libprj/1.0.3 submission is queued \(.{12}\)%
      EOE
  }

  : prompt
  :
  {
    $clone_prj;
    sed -i -e 's/^(version:) .*$/\1 1.0.4/' prj/libprj/manifest;
    sed -i -e 's/^(version:) .*$/\1 1.0.4/' prj/prj/manifest;
    $init -C @cfg &prj-cfg/***;

    # Suppress the --yes option.
    #
    test.arguments = $regex.apply($test.arguments, '^(--yes)$', '');

    $* <'y' 2>>~"%EOE%"
      publishing:
        to:      $repository
      %  as:      .+@.+%

        package: libprj
        version: 1.0.4
        project: prj
        section: stable

        package: prj
        version: 1.0.4
        project: prj
        section: stable
      continue? [y/n] submitting libprj-1.0.4.tar.gz
      %.
      %.*libprj/1.0.4 submission is queued \\\(.{12}\\\)%
      submitting prj-1.0.4.tar.gz
      %.
      %.*prj/1.0.4 submission is queued \\\(.{12}\\\)%
      EOE
  }
}

: failure
:
{
  : duplicate-archive
  :
  {
    test.arguments += --simulate 'duplicate-archive'

    $clone_root_prj;
    $init -C @cfg &prj-cfg/***;
    sed -i -e 's/^(version:) .*$/\1 1.0.5/' prj/manifest;

    $* 2>>~%EOE% != 0
      synchronizing:
        upgrade prj/1.0.5
      submitting prj-1.0.5.tar.gz
      %.
      %.*error: duplicate submission%
      EOE
  }

  : internal-error-text
  :
  {
    test.arguments += --simulate 'internal-error-text'

    $clone_root_prj;
    $init -C @cfg &prj-cfg/***;
    sed -i -e 's/^(version:) .*$/\1 1.0.6/' prj/manifest;

    $* 2>>~%EOE% != 0
      synchronizing:
        upgrade prj/1.0.6
      submitting prj-1.0.6.tar.gz
      %.
      %.*error: submission handling failed%
      %  info: consider reporting this to .+ repository maintainers%
      %  info: checksum: .{64}%
      EOE
  }

  : internal-error-html
  :
  {
    test.arguments += --simulate 'internal-error-html'

    $clone_root_prj;
    $init -C @cfg &prj-cfg/***;
    sed -i -e 's/^(version:) .*$/\1 1.0.7/' prj/manifest;

    $* 2>>~%EOE% != 0
      synchronizing:
        upgrade prj/1.0.7
      submitting prj-1.0.7.tar.gz
      %.
      %.*error: HTTP status code 500 \(internal server error\)%
      %  info: consider reporting this to .+ repository maintainers%
      %  info: checksum: .{64}%
      EOE
  }
}