File: clone-http-packed-detect.sh

package info (click to toggle)
darcs 2.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,960 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 8
file content (36 lines) | stat: -rw-r--r-- 1,043 bytes parent folder | download
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
#!/usr/bin/env bash
# 2011, by Petr Rockai, Guillaume Hoffmann, public domain

# Tests that darcs clone --verbose reports getting a pack when there is one,
# and does not report when there is none or when --no-packs is passed.

. lib
. httplib

only-format darcs-2 # compressed repo is darcs-2

gunzip -c $TESTDATA/laziness-complete.tgz | tar xf -

cd repo

darcs optimize http
test -e _darcs/packs/basic.tar.gz
test -e _darcs/packs/patches.tar.gz
cd ..

serve_http # sets baseurl

# check that default behaviour is to get packs
rm -rf S
darcs clone $baseurl/repo S --verbose |grep "Cloning packed basic repository"

# check that it does really not get packs when --no-packs is passed
rm -rf S
darcs clone $baseurl/repo S --no-packs --verbose  |not grep "Cloning packed basic repository"

# check that it does not claim getting packs when there are not
rm -rf S
rm -rf repo/_darcs/packs/
# sleep for a second to avoid spurious false positives on MacOS:
sleep 1
darcs clone $baseurl/repo S --verbose |not grep "Cloning packed basic repository"