aboutsummaryrefslogtreecommitdiff
path: root/tests/pkg-checkout.testscript
blob: a284f6ba79be56b2acfa62252596c979ada7bcad (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
217
# file      : tests/pkg-checkout.testscript
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

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

# Source repository:
#
# pkg-checkout
# `-- git
#     |-- libbar.git      -> style-basic.git (prerequisite)
#     `-- style-basic.git

posix = ($cxx.target.class != 'windows')

# Prepare repositories used by tests if running in the local mode.
#
+if ($remote != true)
  # Create git repositories.
  #
  $git_extract $src/git/libbar.tar
  $git_extract $src/git/style-basic0.tar &$out_git/state0/***
  $git_extract $src/git/style-basic1.tar &$out_git/state1/***

  if $posix
    $git_extract $src/git/style.tar
    $git_extract $src/git/links.tar
  end
end

: git-rep
:
if ($git_supported != true)
{
  # Skip git repository tests.
  #
}
else
{
  rep = "$rep_git/state0"

  rep_add       += -d cfg 2>!
  rep_fetch     += -d cfg 2>!
  pkg_configure += -d cfg 2>!
  pkg_disfigure += -d cfg 2>!
  pkg_purge     += -d cfg 2>!
  pkg_status    += -d cfg

  test.cleanups += &?cfg/.bpkg/repos/*/***

  : unconfigured-dependency
  :
  {
    $clone_root_cfg;
    $rep_add "$rep/libbar.git#master";
    $rep_fetch;

    $* libmbar/1.0.0 2>>EOE != 0
      error: no configured package satisfies dependency on style-basic >= 1.0.0
      warning: repository state is now broken
        info: run 'bpkg rep-fetch' to repair
      EOE
  }

  : configured-dependency
  :
  {
    $clone_root_cfg;
    $rep_add "$rep/libbar.git#master" && $rep_add "$rep/style-basic.git#master";
    $rep_fetch;

    $pkg_status style-basic | sed -n -e 's/style-basic available \[.+\] ([^ ]+)/\1/p' | set v;

    $* "style-basic/$v" 2>>"EOE";
      distributing style-basic/$v
      checked out style-basic/$v
      EOE

    $pkg_configure style-basic;

    $* libmbar/1.0.0 2>>EOE;
      distributing libmbar/1.0.0
      checked out libmbar/1.0.0
      EOE

    $pkg_disfigure style-basic;

    $pkg_purge libmbar;
    $pkg_purge style-basic
  }

  : replacement
  :
  {
    # @@ Reduce to a single repository when multiple revisions can be specified
    #    in the repository URL fragment.
    #
    rep0 = "$rep_git/state0";
    rep1 = "$rep_git/state1";

    $clone_root_cfg;
    $rep_add "$rep0/style-basic.git#master";
    $rep_add "$rep1/style-basic.git#stable";
    $rep_fetch;

    $pkg_status style-basic | \
      sed -n -e 's/style-basic available ([^ ]+) +([^ ]+)/\1 \2/p' | set vs;

    echo "$vs" | sed -e 's/([^ ]+).+/\1/'        | set v0;
    echo "$vs" | sed -e 's/([^ ]+) +([^ ]+)/\2/' | set v1;

    $* "style-basic/$v0" 2>!;
    $pkg_status style-basic >~"/style-basic unpacked $v0/";

    $* --replace "style-basic/$v1" 2>!;
    $pkg_status style-basic >~"/style-basic unpacked $v1 .+/";

    $pkg_purge style-basic
  }

  : links
  :
  if ($remote == true || $posix)
  {
    $clone_root_cfg;

    $rep_fetch "$rep/links.git#v1.0.0-alpha";

    $pkg_status links | sed -n -e 's/links available (.+)/\1/p' | set v;

    $* "links/$v" 2>>~%EOE%;
      %.*
      %checking out links/1.0.0-a.0.[^.]+.[^.]+%d
      %.*
      %distributing links/1.0.0-a.0.[^.]+.[^.]+%d
      %checked out links/1.0.0-a.0.[^.]+.[^.]+%d
      EOE

    d = "cfg/links-$v";

    # See common/git/init script for the symlinks descriptions.
    #
    test -d $d/bs;
    test -d $d/ts;

    cat $d/pg          >'h1 {font-size: 3em;}';
    cat $d/bs/page.css >'h1 {font-size: 3em;}';
    cat $d/bf          >'./: file{manifest}';
    cat $d/td          >'@@';
    cat $d/tl          >'@@';
    cat $d/ts/TODO     >'@@';

    $pkg_purge links;
    $rep_fetch "$rep/links.git#v0.0.1";

    $* links/0.0.1 2>>~%EOE%;
      checking out links/0.0.1
      distributing links/0.0.1
      checked out links/0.0.1
      EOE

    d = cfg/links-0.0.1;

    test -d $d/bs == 1;
    test -d $d/ts == 1;
    test -f $d/pg == 1;
    test -f $d/bf == 1;
    test -f $d/td == 1;
    test -f $d/tl == 1;

    $pkg_purge links;

    # Dangling symlink in the repository.
    #
    $rep_fetch "$rep/links.git#v1.0.1";

    if $posix
      $* links/1.0.1 2>>~%EOE%
        checking out links/1.0.1
        distributing links/1.0.1
        checked out links/1.0.1
        EOE

      $pkg_purge links
    else
      $* links/1.0.1 2>>~%EOE% != 0
        checking out links/1.0.1
        error: target 'bl' for symlink 'lc' does not exist
          info: re-run with -v for more information
        warning: repository state is now broken
          info: run 'bpkg rep-fetch' to repair
        EOE
    end;

    # Cyclic symlinks in the repository.
    #
    if $posix
      $rep_fetch "$rep/links.git#v1.0.2" 2>>~%EOE% != 0
        %.*
        %error: unable to iterate over .+%
        warning: repository state is now broken and will be cleaned up
          info: run 'bpkg rep-fetch' to update
        EOE
    else
      $rep_fetch "$rep/links.git#v1.0.2"

      $* links/1.0.2 2>>~%EOE% != 0
        checking out links/1.0.2
        %.*
        %error: target '..' for symlink '..' does not exist%
          info: re-run with -v for more information
        warning: repository state is now broken
          info: run 'bpkg rep-fetch' to repair
        EOE
    end
  }
}