aboutsummaryrefslogtreecommitdiff
path: root/tests/package-archive/testscript
blob: 75df25a2d611d9384431c64249c2eff5ecd1ce24 (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
# file      : tests/package-archive/testscript
# license   : MIT; see accompanying LICENSE file

# Note that searching for packages directly in $src_base is a bad idea, since
# removing testscript working directories while testing in source makes the
# find utility to fail with the 'no such file or directory' error. Thus, we
# clone the archives into the test working directories and search there.
#
clone_arcs = [cmdline] \
  cp $src_base/libhello-0.1.0.tar.gz $src_base/libhello-0.1.0+1.tar.gz ./

: pkg-verify-archive
:
{
  test.arguments += bpkg_util_pkg_verify_archive

  : non-existing-archive
  :
  $* libhello-0.1.0.tar.gz 2>>EOE != 0
    error: archive file 'libhello-0.1.0.tar.gz' does not exist
    EOE

  : success
  :
  $* $src_base/libhello-0.1.0.tar.gz >>EOO
    libhello
    0.1.0
    hello
    EOO
}

: pkg-find-archives
:
{
  test.arguments += bpkg_util_pkg_find_archives

  : none
  :
  {
    $clone_arcs;

    $* 'libhello' '0.2.0' $~
  }

  : package
  :
  {
    $clone_arcs;

    $* 'libhello' '*' $~ >>/~"%EOO%"
      %\(
      $~/libhello-0.1.0.tar.gz
      $~/libhello-0.1.0+1.tar.gz
      %|
      $~/libhello-0.1.0+1.tar.gz
      $~/libhello-0.1.0.tar.gz
      %\)
      EOO
  }

  : package-version
  :
  {
    $clone_arcs;

    $* 'libhello' '0.1.0' $~ >/"$~/libhello-0.1.0.tar.gz"
  }

  : package-revision
  :
  {
    $clone_arcs;

    $* 'libhello' '0.1.0+1' $~ >/"$~/libhello-0.1.0+1.tar.gz"
  }

  : package-revisions1
  :
  {
    $clone_arcs;

    $* 'libhello' '0.1.0*' $~ >>/~"%EOO%"
      %\(
      $~/libhello-0.1.0.tar.gz
      $~/libhello-0.1.0+1.tar.gz
      %|
      $~/libhello-0.1.0+1.tar.gz
      $~/libhello-0.1.0.tar.gz
      %\)
      EOO
  }

  : package-revisions2
  :
  {
    $clone_arcs;

    $* 'libhello' '0.1.0+2*' $~ >>/~"%EOO%"
      %\(
      $~/libhello-0.1.0.tar.gz
      $~/libhello-0.1.0+1.tar.gz
      %|
      $~/libhello-0.1.0+1.tar.gz
      $~/libhello-0.1.0.tar.gz
      %\)
      EOO
  }
}

: pkg-find-archive
:
{
  test.arguments += bpkg_util_pkg_find_archive

  : non-existent
  :
  $* 'libhello-0.1.0.*' $~

  : existing
  :
  {
    $clone_arcs;

    $* 'libhello-0.1.0.*' $~ >>/"EOO"
      $~/libhello-0.1.0.tar.gz
      libhello
      0.1.0
      hello
      EOO
  }
}