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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
|
#!/bin/bash
# Copyright (C) 2013, Rafael Laboissiere <rafael@laboissiere.net>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# On Debian systems, the complete text of the GNU General Public License
# version 3 can be found in the /usr/share/common-licenses/GPL-3 file.
set -u
TESTTYPE=Mangle
. ./lib_test_uscan
COMMAND="uscan --no-conf"
# set safe defaults
WEBSCRIPT=":"
DEBUGECHO=":"
DEBUGLSLR=":"
DEBUGBASH=":"
# comment out for debug
#COMMAND="$COMMAND --debug"
#COMMAND="$COMMAND --verbose"
#DEBUGECHO=echo
#DEBUGLSLR="ls -laR"
#DEBUGLSLR="ls -la"
#DEBUGBASH="bash -i"
# Initial Debian revision value is distribution dependent
SUFFIX="1"
if which dpkg-vendor >/dev/null 2>&1; then
VENDER="$(dpkg-vendor --query Vendor 2>/dev/null|tr 'A-Z' 'a-z')"
case "$VENDER" in
debian) SUFFIX="1" ;;
*) SUFFIX="0${VENDER}1" ;;
esac
fi
tearDown(){
killHttpServer
echo
}
trap tearDown EXIT
containsName(){
echo "$1" | grep -qF "$2"
echo $?
}
. "${0%/*}/shunit2-helper-functions.sh"
# The following tests do the following: (1) create a minimal Debian package
# directory, containing minimal files debian/{changelog,watch,copyright},
# (2) create a minimal repository, containing a tarball (built on the fly),
# (3) start an HTTP server that works offline, using the SimpleHTTPServer
# module of Python, and (4) run uscan inside that minimal universe.
# make debian/ in `pwd`
# debian/watch contains $WATCHVER and $WATCHLINE with template URL updated
makeDebianDir() {
DEBNAME=${1:-foo} # Debian source package name
DEBVER=${2:-1.0} # Debian source package version
mkdir -p debian/source
cat <<END > debian/rules
%:
dh $@
END
chmod 755 debian/rules
cat <<END > debian/changelog
$DEBNAME ($DEBVER) unstable; urgency=low
* Release of the $DEBNAME package $DEBVER.
-- Joe Developer <jd@debian.org> Mon, 02 Nov 2013 22:21:31 -0100
END
# debian/source/format
case $DEBVER in
*-*) # non-native package
echo "3.0 (quilt)" > debian/source/format
;;
*) # native package
echo "3.0 (native)" > debian/source/format
;;
esac
# debian/copyright
echo "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/" \
> debian/copyright
if [ "${FILEEXCLUDE:-0}" = "1" ]; then
# exclude just for main
cat <<'END' >> debian/copyright
Files-Excluded: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
END
elif [ "${FILEEXCLUDE:-0}" = "2" ]; then
# exclude for main(=foo) bar baz
cat <<'END' >> debian/copyright
Files-Excluded: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
Files-Excluded-bar: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
Files-Excluded-baz: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
END
elif [ "${FILEEXCLUDE:-0}" = "3" ]; then
# exclude for foo bar baz
cat <<'END' >> debian/copyright
Files-Excluded-foo: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
Files-Excluded-bar: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
Files-Excluded-baz: exclude-this
*/exclude-dir
.*
*/js/jquery.js
;?echo?baz;?#
END
fi
# debian/watch
echo "version=$WATCHVER" > debian/watch
echo "$WATCHLINE" | sed -e "s,@@@url@@@,http://localhost:${PORT}/,g" - \
>> debian/watch
# debian/upstream/signing-key.asc
mkdir -p debian/upstream
if [ "$KEYMODE" = "ASC" ]; then
cp -f $test_dir/uscan/PUBLIC_KEY.asc debian/upstream/signing-key.asc
else
cp -f "$GPGHOME/pubring.gpg" debian/upstream/signing-key.pgp
fi
}
# make tarball in $REPOPATH/$POOLPATH
makeUpstreamTar() {
UPNAME=${1:-foo} # Upstream package name
UPVER=${2:-1.0} # upstream package version
COMPRESSION=${3:-gz} # archve compression type
TYPE=${4:-non-native} # set this if native-type upstream
OLDDIR=`pwd`
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/$POOLPATH/$UPNAME-$UPVER
cd "$TEMP_PKG_DIR"/$REPOPATH/$POOLPATH
touch $UPNAME-$UPVER/FILE.$UPNAME.$UPVER
touch $UPNAME-$UPVER/include-this
touch $UPNAME-$UPVER/exclude-this
touch $UPNAME-$UPVER/.hidden
mkdir -p "$UPNAME-$UPVER/; echo baz; #/"
mkdir -p $UPNAME-$UPVER/exclude-dir
touch $UPNAME-$UPVER/exclude-dir/file
mkdir -p $UPNAME-$UPVER/subdir/exclude-dir
touch $UPNAME-$UPVER/subdir/exclude-dir/file2
mkdir -p $UPNAME-$UPVER/docs/html/js/
touch $UPNAME-$UPVER/docs/html/js/jquery.js
if [ "$TYPE" = "native" ]; then
cd "$TEMP_PKG_DIR"/$REPOPATH/$POOLPATH/$UPNAME-$UPVER
makeDebianDir $UPNAME $UPVER
cd "$TEMP_PKG_DIR"/$REPOPATH/$POOLPATH
fi
case $COMPRESSION in
gz|gzip)
NEWTAR=$UPNAME-$UPVER.tar.gz
tar -czf $NEWTAR $UPNAME-$UPVER
;;
bz2|bzip2)
NEWTAR=$UPNAME-$UPVER.tar.bz2
tar --bzip2 -cf $NEWTAR $UPNAME-$UPVER
;;
xz)
NEWTAR= $UPNAME-$UPVER.tar.xz
tar --xz -cf $NEWTAR $UPNAME-$UPVER
;;
zip)
NEWTAR=$UPNAME-$UPVER.zip
zip -r $NEWTAR $UPNAME-$UPVER
;;
*) echo "Wrong compression mode: $COMPRESSION"
exit 1
;;
esac
case "${SIGMODE:-}" in # undefined SIGMODE → no sig
ASC) # make $NEWTAR.asc
$GPG --homedir "$GPGHOME" --no-options -q --batch --no-default-keyring \
--secret-keyring $PRIVATE_KEYRING --default-key 72543FAF \
--armor --detach-sign $NEWTAR
;;
BIN) #make $NEWTAR.sig
$GPG --homedir "$GPGHOME" --no-options -q --batch --no-default-keyring \
--secret-keyring $PRIVATE_KEYRING --default-key 72543FAF \
--detach-sign $NEWTAR
;;
SELF) #make $NEWTAR.gpg
$GPG --homedir "$GPGHOME" --no-options -q --batch --no-default-keyring \
--secret-keyring $PRIVATE_KEYRING --default-key 72543FAF \
--sign $NEWTAR
esac
cd $OLDDIR
}
# setup a common watch file test environment
helperWatch() {
local SITESCRIPT=${1:-siteWebNonNative}
local VEROLD=${2:-1.0}
local VERNEW=${3:-2.0}
local PREFIX="${4:-}"
TEMP_PKG_DIR=${TEMP_PKG_DIR:-$(mktemp -d -p "$SHUNIT_TMPDIR" uscan_mangle.XXXXXX)}
ORIGDIR=`pwd`
PKG=${PKG:-foo}
REPOPATH=${REPOPATH:-repo}
POOLPATH=${POOLPATH:-pool}
GZREPACK=${GZREPACK:-xz}
MGZREPACK=${MGZREPACK:-gz}
XCOMMAND=${XCOMMAND:-$COMMAND}
WATCHVER="${WATCHVER:-3}"
WATCHLINE0="@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate"
WATCHLINE="${WATCHLINE:-$WATCHLINE0}"
COMPONENTS=${COMPONENTS:-}
FILEEXCLUDE=${FILEEXCLUDE:-0} # no exclude
SIGMODE=${SIGMODE:-ASC} # ASC=ASCII or BIN=BINARY or SELF
KEYMODE=${KEYMODE:-ASC} # ASC=ASCII AEMORED or BIN=DEARMORED BINARY
cd "$TEMP_PKG_DIR"
# start HTTP server with its root at "$TEMP_PKG_DIR"/$REPOPATH
spawnHttpServer
PORT=$(cat "$TEMP_PKG_DIR"/$REPOPATH/port)
$DEBUGECHO " ***** http://localhost:$PORT started showing "$TEMP_PKG_DIR"/$REPOPATH *****"
# make web site
$SITESCRIPT
# make local $VEROLD source tree
tar -xzf "$TEMP_PKG_DIR"/$REPOPATH/$POOLPATH/${PKG}-${VEROLD}.tar.gz
if [ -n "$PREFIX" ]; then
mv "$TEMP_PKG_DIR"/${PKG}-${VEROLD} "$TEMP_PKG_DIR"/${PKG}-${PREFIX}${VEROLD}
fi
mv "$TEMP_PKG_DIR"/${PKG}-${PREFIX}${VEROLD} "$TEMP_PKG_DIR"/${PKG}
cd "$TEMP_PKG_DIR"/${PKG}
if [ ! -d debian ]; then
makeDebianDir $PKG ${PREFIX}${VEROLD}-$SUFFIX
fi
local UUPDATE=""
if grep -q "uupdate" "$TEMP_PKG_DIR"/${PKG}/debian/watch ; then
UUPDATE=uupdate
fi
local PGP=""
if grep -q "pgpurlmangle" "$TEMP_PKG_DIR"/${PKG}/debian/watch ; then
PGP=pgp
fi
if grep -q "pgpmode *= *auto" "$TEMP_PKG_DIR"/${PKG}/debian/watch ; then
PGP=pgp
fi
if grep -q "pgpmode *= *previous" "$TEMP_PKG_DIR"/${PKG}/debian/watch ; then
PGP=pgp
fi
$XCOMMAND
assertEquals "uscan: exit_code!=0 but exit_code=0" "$?" "0"
cd "$TEMP_PKG_DIR"
$DEBUGLSLR
UTARBALL=${PKG}-${UVERSION:-${VERNEW}}.tar.gz
STARBALL=${PKG}_${PREFIX}${VERNEW}.orig.tar.$MGZREPACK
assertTrue "$UTARBALL missing: $WATCHLINE" "[ -f $UTARBALL ]"
assertTrue "$STARBALL missing: $WATCHLINE" "[ -f $STARBALL ]"
if [ "$PGP" = "pgp" ]; then
UTARSIG=${PKG}-${UVERSION:-${VERNEW}}.tar.gz.sig
if [ ! -f $UTARSIG ]; then
UTARSIG=${PKG}-${UVERSION:-${VERNEW}}.tar.gz.asc
fi
STARSIG=${PKG}_${PREFIX}${VERNEW}.orig.tar.$MGZREPACK.asc
assertTrue "$UTARSIG and *.sig missing: $WATCHLINE" "[ -f $UTARSIG ]"
assertTrue "$STARSIG missing: $WATCHLINE" "[ -f $STARSIG ]"
fi
for cpnt in $COMPONENTS; do
UTARBALL=${cpnt}-${CMPVERSION:-${VERNEW}}.tar.gz
STARBALL=${PKG}_${PREFIX}${VERNEW}.orig-${cpnt}.tar.$GZREPACK
assertTrue "$UTARBALL missing: $WATCHLINE" "[ -f $UTARBALL ]"
assertTrue "$STARBALL missing: $WATCHLINE" "[ -f $STARBALL ]"
if [ "$PGP" = "pgp" ]; then
UTARSIG=${cpnt}-${CMPVERSION:-${VERNEW}}.tar.gz.sig
if [ ! -f $UTARSIG ]; then
UTARSIG=${cpnt}-${CMPVERSION:-${VERNEW}}.tar.gz.asc
fi
STARSIG=${PKG}_${PREFIX}${VERNEW}.orig-${cpnt}.tar.$GZREPACK.asc
assertTrue "$UTARSIG and *.sig missing: $WATCHLINE" "[ -f $UTARSIG ]"
# Skipping this: signature link skipped when upstream file is repacked
#assertTrue "$STARSIG missing: $WATCHLINE" "[ -f $STARSIG ]"
fi
done
# check uupdate
if [ "$UUPDATE" = "uupdate" ]; then
cd "$TEMP_PKG_DIR"/${PKG}-${PREFIX}${VERNEW}
assertTrue 'pristine tarball is not extracted' "[ -f debian/changelog ]"
DVERSION=`dpkg-parsechangelog -ldebian/changelog -SVersion`
assertEquals "uscan: Version should be ${PREFIX}${VERNEW}-$SUFFIX but $DVERSION" "$DVERSION" "${PREFIX}${VERNEW}-$SUFFIX"
if [ "$FILEEXCLUDE" != "3" ]; then
# main is dummy
assertTrue 'file that must be present is excluded in the tarball' '[ -f include-this ]'
fi
if [ "$FILEEXCLUDE" = "1" ] || [ "$FILEEXCLUDE" = "2" ]; then
assertFalse "file that must be excluded is present in the tarball" '[ -f exclude-this ]'
assertFalse "hidden file that must be excluded is present in the tarball" '[ -f .hidden ]'
assertFalse "dir that must be excluded is present in the tarball" '[ -d exclude-dir ]'
assertFalse "subdir that must be excluded is present in the tarball" '[ -d subdir/exclude-dir ]'
CONTENTS=$(ls -R)
assertFalse "non-root-file that must be excluded is present in the tarball" \
$(containsName "$CONTENTS" jquery.js)
assertFalse "path with whitespace that must be excluded is present in the tarball" \
$(containsName "$CONTENTS" "; echo baz; #/")
fi
for c in $COMPONENTS ; do
cd "$TEMP_PKG_DIR"/${PKG}-${PREFIX}${VERNEW}/$c
assertTrue 'file that must be present is excluded in the tarball' '[ -f include-this ]'
if [ "$FILEEXCLUDE" = "1" ] || [ "$FILEEXCLUDE" = "2" ]; then
assertFalse "file that must be excluded is present in the orig-$c.tar" '[ -f exclude-this ]'
assertFalse "hidden file that must be excluded is present in the orig-$c.tar" '[ -f .hidden ]'
assertFalse "dir that must be excluded is present in the orig-$c.tar" '[ -d exclude-dir ]'
assertFalse "subdir that must be excluded is present in the orig-$c.tar" '[ -d subdir/exclude-dir ]'
CONTENTS=$(ls -R)
assertFalse "non-root-file that must be excluded is present in the orig-$c.tar" \
$(containsName "$CONTENTS" jquery.js)
assertFalse "path with whitespace that must be excluded is present in the orig-$c.tar" \
$(containsName "$CONTENTS" "; echo baz; #/")
fi
done
cd "$TEMP_PKG_DIR"
fi
$DEBUGBASH
cd $ORIGDIR
unset REPOPATH
unset POOLPATH
unset GZREPACK
unset MGZREPACK
unset XCOMMAND
unset WATCHVER
unset WATCHLINE
unset COMPONENTS
unset FILEEXCLUDE
unset SIGMODE
unset KEYMODE
}
# setup a common watch file test environment to see user-agent
helperWatchUA() {
local SITESCRIPT=${1:-siteWebNonNative}
TEMP_PKG_DIR=$(mktemp -d -p "$SHUNIT_TMPDIR" uscan_mangle.XXXXXX)
ORIGDIR=`pwd`
PKG=${PKG:-foo}
REPOPATH=${REPOPATH:-repo}
POOLPATH=${POOLPATH:-pool}
XCOMMAND=${XCOMMAND:-$COMMAND}
WATCHVER="${WATCHVER:-3}"
WATCHLINE0="@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate"
WATCHLINE="${WATCHLINE:-$WATCHLINE0}"
KEYMODE=${KEYMODE:-ASC} # ASC=ASCII AEMORED or BIN=DEARMORED BINARY
cd "$TEMP_PKG_DIR"
# start HTTP server with its root at "$TEMP_PKG_DIR"/$REPOPATH
spawnHttpServer
PORT=$(cat "$TEMP_PKG_DIR"/$REPOPATH/port)
$DEBUGECHO " ***** http://localhost:$PORT started showing "$TEMP_PKG_DIR"/$REPOPATH *****"
# make web site
$SITESCRIPT
# make local $VEROLD source tree
mkdir -p "$TEMP_PKG_DIR"/${PKG}
cd "$TEMP_PKG_DIR"/${PKG}
if [ ! -d debian ]; then
makeDebianDir $PKG 1.0-$SUFFIX
fi
$XCOMMAND
USERAGENTX="$(grep -ie '^User-Agent:' ../repo/log |head -1 | perl -p -e "s/\r//g" )"
assertTrue "Bad $USERAGENTX" "[ \"$USERAGENTX\" = \"User-Agent: $USERAGENT\" ]"
echo "SENT: \"User-Agent: $USERAGENT\""
echo "GOT : \"$USERAGENTX\""
$DEBUGBASH
cd $ORIGDIR
unset REPOPATH
unset POOLPATH
unset XCOMMAND
unset WATCHVER
unset WATCHLINE
unset KEYMODE
}
# populate pool directory
siteNative() {
local PKG=${1:-foo}
makeUpstreamTar $PKG 0.0 gz native
makeUpstreamTar $PKG 1.0 gz native
makeUpstreamTar $PKG 2.0 gz native
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/
ln -sf ../../../$POOLPATH/${PKG}-0.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/${PKG}-0.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-1.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/${PKG}-1.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-2.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/${PKG}-2.0.tar.gz
}
siteNonNative() {
local PKG=${1:-foo}
local EXTRA=${2:-}
makeUpstreamTar $PKG 0.0 gz non-native
makeUpstreamTar $PKG 1.0 gz non-native
makeUpstreamTar $PKG 2.0 gz non-native
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/
if [ -n "$EXTRA" ]; then
makeUpstreamTar $PKG 3.0 gz non-native
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/3.0/$PKG/ooo/
fi
if [ "${SIGMODE:-}" = "ASC" ]; then
ln -sf ../../../$POOLPATH/${PKG}-0.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/${PKG}-0.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-0.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/${PKG}-0.0.tar.gz.asc
ln -sf ../../../$POOLPATH/${PKG}-1.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/${PKG}-1.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-1.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/${PKG}-1.0.tar.gz.asc
ln -sf ../../../$POOLPATH/${PKG}-2.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/${PKG}-2.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-2.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/${PKG}-2.0.tar.gz.asc
if [ -n "$EXTRA" ]; then
ln -sf ../../../$POOLPATH/${PKG}-3.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/3.0/$PKG/ooo/${PKG}-3.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-3.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/3.0/$PKG/ooo/${PKG}-3.0.tar.gz.asc
fi
elif [ "${SIGMODE:-}" = "BIN" ]; then
ln -sf ../../../$POOLPATH/${PKG}-0.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/${PKG}-0.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-0.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/${PKG}-0.0.tar.gz.sig
ln -sf ../../../$POOLPATH/${PKG}-1.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/${PKG}-1.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-1.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/${PKG}-1.0.tar.gz.sig
ln -sf ../../../$POOLPATH/${PKG}-2.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/${PKG}-2.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-2.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/${PKG}-2.0.tar.gz.sig
if [ -n "$EXTRA" ]; then
ln -sf ../../../$POOLPATH/${PKG}-3.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/3.0/$PKG/ooo/${PKG}-3.0.tar.gz
ln -sf ../../../$POOLPATH/${PKG}-3.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/3.0/$PKG/ooo/${PKG}-3.0.tar.gz.sig
fi
elif [ "${SIGMODE:-}" = "SELF" ]; then
ln -sf ../../../$POOLPATH/${PKG}-0.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/0.0/$PKG/ooo/${PKG}-0.0.tar.gz.gpg
ln -sf ../../../$POOLPATH/${PKG}-1.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/1.0/$PKG/ooo/${PKG}-1.0.tar.gz.gpg
ln -sf ../../../$POOLPATH/${PKG}-2.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/2.0/$PKG/ooo/${PKG}-2.0.tar.gz.gpg
if [ -n "$EXTRA" ]; then
ln -sf ../../../$POOLPATH/${PKG}-3.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/3.0/$PKG/ooo/${PKG}-3.0.tar.gz.gpg
fi
fi
}
# hide siteNative behind a web page
siteWebNative() {
siteNative
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/0.0/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/foo/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/foo/ooo/foo-2.0.tar.gz">Latest</a> <br />
</body>
<html>
END
}
siteWebNonNative() {
siteNonNative
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/0.0/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/foo/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/foo/ooo/foo-2.0.tar.gz">Latest</a> <br />
</body>
<html>
END
}
siteWebNonNativeRecWithBase() {
siteNonNative "$@"
for DIR in "$TEMP_PKG_DIR"/$REPOPATH/[0-9].*; do
[ -d "$DIR" ] && cat <<END > "$DIR"/index.html
<html>
<head>
<meta charset="utf-8">
<base href="/${DIR##*/}/foo/ooo/x.html"/>
</head>
<body>
<a href="foo-${DIR##*/}.tar.gz">Blah</a> <br/ >
</body>
<html>
END
done
}
siteWebNonNativeR() {
makeUpstreamTar foo 0.0 gz non-native
makeUpstreamTar foo 1.0 gz non-native
makeUpstreamTar foo 2.0 gz non-native
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/123/foo/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/124/foo/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/125/foo/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/325/foo/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/424/foo/ooo/
mkdir -p "$TEMP_PKG_DIR"/$REPOPATH/523/foo/ooo/
if [ "$SIGMODE" = "ASC" ]; then
ln -sf ../../../$POOLPATH/foo-0.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/125/foo/ooo/foo-0.0.tar.gz
ln -sf ../../../$POOLPATH/foo-1.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/124/foo/ooo/foo-1.0.tar.gz
ln -sf ../../../$POOLPATH/foo-2.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/123/foo/ooo/foo-2.0.tar.gz
ln -sf ../../../$POOLPATH/foo-0.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/325/foo/ooo/foo-0.0.tar.gz.asc
ln -sf ../../../$POOLPATH/foo-1.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/424/foo/ooo/foo-1.0.tar.gz.asc
ln -sf ../../../$POOLPATH/foo-2.0.tar.gz.asc "$TEMP_PKG_DIR"/$REPOPATH/523/foo/ooo/foo-2.0.tar.gz.asc
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/125/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/124/foo/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/123/foo/ooo/foo-2.0.tar.gz">Latest</a> <br />
<a href="/325/foo/ooo/foo-0.0.tar.gz.asc">Very old sig</a> <br/ >
<a href="/424/foo/ooo/foo-1.0.tar.gz.asc">A bit OLD sig</a> <br />
<a href="/523/foo/ooo/foo-2.0.tar.gz.asc">Latest sig</a> <br />
</body>
<html>
END
elif [ "$SIGMODE" = "BIN" ]; then
ln -sf ../../../$POOLPATH/foo-0.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/125/foo/ooo/foo-0.0.tar.gz
ln -sf ../../../$POOLPATH/foo-1.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/124/foo/ooo/foo-1.0.tar.gz
ln -sf ../../../$POOLPATH/foo-2.0.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/123/foo/ooo/foo-2.0.tar.gz
ln -sf ../../../$POOLPATH/foo-0.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/325/foo/ooo/foo-0.0.tar.gz.sig
ln -sf ../../../$POOLPATH/foo-1.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/424/foo/ooo/foo-1.0.tar.gz.sig
ln -sf ../../../$POOLPATH/foo-2.0.tar.gz.sig "$TEMP_PKG_DIR"/$REPOPATH/523/foo/ooo/foo-2.0.tar.gz.sig
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/125/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/124/foo/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/123/foo/ooo/foo-2.0.tar.gz">Latest</a> <br />
<a href="/325/foo/ooo/foo-0.0.tar.gz.sig">Very old sig</a> <br/ >
<a href="/424/foo/ooo/foo-1.0.tar.gz.sig">A bit OLD sig</a> <br />
<a href="/523/foo/ooo/foo-2.0.tar.gz.sig">Latest sig</a> <br />
</body>
<html>
END
elif [ "$SIGMODE" = "SELF" ]; then
ln -sf ../../../$POOLPATH/foo-0.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/325/foo/ooo/foo-0.0.tar.gz.gpg
ln -sf ../../../$POOLPATH/foo-1.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/424/foo/ooo/foo-1.0.tar.gz.gpg
ln -sf ../../../$POOLPATH/foo-2.0.tar.gz.gpg "$TEMP_PKG_DIR"/$REPOPATH/523/foo/ooo/foo-2.0.tar.gz.gpg
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/125/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/124/foo/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/123/foo/ooo/foo-2.0.tar.gz">Latest</a> <br />
<a href="/325/foo/ooo/foo-0.0.tar.gz.gpg">Very old sig</a> <br/ >
<a href="/424/foo/ooo/foo-1.0.tar.gz.gpg">A bit OLD sig</a> <br />
<a href="/523/foo/ooo/foo-2.0.tar.gz.gpg">Latest sig</a> <br />
</body>
<html>
END
fi
}
sitePrWebNonNative() {
siteNonNative
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/0.0/boo/xxx/boo-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/boo/xxx/boo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/boo/xxx/boo-2.0.tar.gz">Latest</a> <br />
</body>
<html>
END
}
siteWebNonNativeLarge() {
makeUpstreamTar foo 19990101 gz non-native
makeUpstreamTar foo 20000101 gz non-native
makeUpstreamTar foo 20010101 gz non-native
mkdir -p $REPOPATH/0.0/foo/ooo/
mkdir -p $REPOPATH/1.0/foo/ooo/
mkdir -p $REPOPATH/2.0/foo/ooo/
ln -sf ../../../$POOLPATH/foo-19990101.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/0.0/foo/ooo/foo-19990101.tar.gz
ln -sf ../../../$POOLPATH/foo-20000101.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/1.0/foo/ooo/foo-20000101.tar.gz
ln -sf ../../../$POOLPATH/foo-20010101.tar.gz "$TEMP_PKG_DIR"/$REPOPATH/2.0/foo/ooo/foo-20010101.tar.gz
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/0.0/foo/ooo/foo-19990101.tar.gz">Very old</a> <br/ >
<a href="/1.0/foo/ooo/foo-20000101.tar.gz">A bit OLD</a> <br />
<a href="/2.0/foo/ooo/foo-20010101.tar.gz">Latest</a> <br />
</body>
<html>
END
}
siteXmlNonNative() {
siteNonNative
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<Key>/0.0/foo/ooo/foo-0.0.tar.gz</Key> <br/ >
<Key>/1.0/foo/ooo/foo-1.0.tar.gz</Key> <br />
<Key>/2.0/foo/ooo/foo-2.0.tar.gz</Key> <br />
</body>
<html>
END
}
siteWebNonNativeMUT() {
siteNonNative foo
siteNonNative bar EXTRA
siteNonNative baz EXTRA
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/0.0/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/foo/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/foo/ooo/foo-2.0.tar.gz">Latest</a> <br />
<a href="/2.0/foo/ooo/foo-2.0.tar.gz.asc">Latest sig</a> <br />
<a href="/0.0/bar/ooo/bar-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/bar/ooo/bar-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/bar/ooo/bar-2.0.tar.gz">Latest</a> <br />
<a href="/3.0/bar/ooo/bar-3.0.tar.gz">OOPS Latest</a> <br />
<a href="/3.0/bar/ooo/bar-3.0.tar.gz.asc">Latest sig</a> <br />
<a href="/0.0/baz/ooo/baz-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/baz/ooo/baz-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/baz/ooo/baz-2.0.tar.gz">Latest</a> <br />
<a href="/3.0/baz/ooo/baz-3.0.tar.gz">OOPS Latest</a> <br />
<a href="/3.0/baz/ooo/baz-3.0.tar.gz.asc">Latest sig</a> <br />
</body>
<html>
END
}
siteWebNonNativeGetOnlyHref() {
siteNonNative foo
cat <<END > "$TEMP_PKG_DIR"/$REPOPATH/index.html
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="/0.0/foo/ooo/foo-0.0.tar.gz">Very old</a> <br/ >
<a href="/1.0/bar/ooo/foo-1.0.tar.gz">A bit OLD</a> <br />
<a href="/2.0/foo/ooo/foo-2.0.tar.gz" data-foobar-href="">Latest</a> <br />
<aueu href="/2.0/foo/ooo/foo-3.0.tar.gz" data-foobar-href="">Nothing here</a> <br />
</body>
<html>
END
}
# test a watch files
### VERSION3 ###
# version locking calls suffer changes due to uupdate calling differences
# test --download-current-version
testWatch3WebNonNativeDlCurrent() {
WATCHVER=3
XCOMMAND="$COMMAND --download-current-version"
WATCHLINE='@@@url@@@/ (?:.*)/foo-([\.\d]+).tar.gz debian uupdate'
helperWatch siteWebNonNative 1.0 1.0
}
# test --download-version
testWatch3WebNonNativeDlUversion() {
WATCHVER=3
XCOMMAND="$COMMAND --download-version 0.0"
WATCHLINE='@@@url@@@/ (?:.*)/foo-([\.\d]+).tar.gz debian uupdate'
helperWatch siteWebNonNative 1.0 0.0
}
# test --download-debversion uupdate
testWatch3WebNonNativeDlDversion() {
WATCHVER=3
XCOMMAND="$COMMAND --download-debversion 0.0-1"
WATCHLINE='@@@url@@@/ (?:.*)/foo-([\.\d]+).tar.gz debian uupdate'
helperWatch siteWebNonNative 1.0 0.0
}
### VERSION 4 ###
# standard tests
# test native package w/o uupdate, bare HTTP server in normal order
testWatch4Native() {
WATCHVER=4
WATCHLINE='@@@url@@@/([\.\d]+)/(.+)/(.+)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian'
helperWatch siteNative
}
# test non-native package with uupdate, bare HTTP server in normal order
testWatch4NonNative() {
WATCHVER=4
WATCHLINE='@@@url@@@([\.\d]+)/(.+)/(.+)/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteNonNative
}
# test non-native package with uupdate, bare HTTP server with dirversionmangle
testWatch4NonNativeDMangle() {
WATCHVER=4
WATCHLINE='opts="dirversionmangle=s/^\d*[13579]\./0~$&/, uversionmangle=s/^\d*[13579]\./0~$&/" @@@url@@@([\.\d]+)/(.+)/(.+)/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch "siteNonNative foo EXTRA"
}
# ... and without dirversionmangle, should return version 3
testWatch4NonNativeDMangleWithoutD() {
WATCHVER=4
WATCHLINE='@@@url@@@([\.\d]+)/(.+)/(.+)/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch "siteNonNative foo EXTRA" 1.0 3.0
}
# test non-native package with uupdate, bare HTTP server with dirversionmangle and base
testWatch4NonNativeDMangleB() {
WATCHVER=4
WATCHLINE='opts="dirversionmangle=s/^\d*[13579]\./0~$&/, uversionmangle=s/^\d*[13579]\./0~$&/" @@@url@@@([\.\d]+)/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch "siteWebNonNativeRecWithBase foo EXTRA"
}
# ... and without dirversionmangle, should return version 3
testWatch4NonNativeDMangleBWithoutD() {
WATCHVER=4
WATCHLINE='@@@url@@@([\.\d]+)/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch "siteWebNonNativeRecWithBase foo EXTRA" 1.0 3.0
}
# test 3 parameter watch line
testWatch4WebNative() {
WATCHVER=4
WATCHLINE='@@@url@@@ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian'
helperWatch siteWebNative
}
# test normal web page
testWatch4WebNonNative() {
WATCHVER=4
helperWatch
}
# test normal web page (Files-exclude)
testWatch4WebNonNativeFE() {
MGZREPACK=xz
FILEEXCLUDE=1
WATCHVER=4
helperWatch
}
# test normal web page (file path reverse order)
testWatch4WebNonNativeR() {
WATCHVER=4
helperWatch siteWebNonNativeR
}
# test for downloadurlmangle and filenamemangle for tricky web page
testWatch4PrWebNonNative() {
WATCHVER=4
WATCHLINE='opts="downloadurlmangle = s%boo/xxx%@PACKAGE@/ooo% ; s%boo-%@PACKAGE@-%, \
filenamemangle = s%.*boo-(.*)%@PACKAGE@-$1% " \
@@@url@@@/ (?:.*)/boo@ANY_VERSION@@ARCHIVE_EXT@ \
debian uupdate'
helperWatch sitePrWebNonNative
}
# test --download-current-version
testWatch4NonNativeDlCurrent() {
WATCHVER=4
XCOMMAND="$COMMAND --download-current-version"
WATCHLINE='@@@url@@@/([\d\.]+)/@PACKAGE@/ooo/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteNonNative 1.0 1.0
}
# test --download-version
testWatch4NonNativeDlUversion() {
WATCHVER=4
XCOMMAND="$COMMAND --download-version 0.0"
WATCHLINE='@@@url@@@/([\d\.]+)/@PACKAGE@/ooo/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteNonNative 1.0 0.0
}
# test --download-debversion uupdate
testWatch4NonNativeDlDversion() {
WATCHVER=4
XCOMMAND="$COMMAND --download-debversion 0.0-1"
WATCHLINE='@@@url@@@/([\d\.]+)/@PACKAGE@/ooo/ @PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteNonNative 1.0 0.0
}
# test --download-current-version
testWatch4WebNonNativeDlCurrent() {
WATCHVER=4
XCOMMAND="$COMMAND --download-current-version"
WATCHLINE='@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteWebNonNative 1.0 1.0
}
# test --download-version
testWatch4WebNonNativeDlUversion() {
WATCHVER=4
XCOMMAND="$COMMAND --download-version 0.0"
WATCHLINE='@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteWebNonNative 1.0 0.0
}
# test --download-debversion uupdate
testWatch4WebNonNativeDlDversion() {
WATCHVER=4
XCOMMAND="$COMMAND --download-debversion 0.0-1"
WATCHLINE='@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteWebNonNative 1.0 0.0
}
# Debian version is 0.19990101 for future proof while upstream is 19990101
testWatch4WebNonNativeLarge() {
WATCHVER=4
WATCHLINE='opts=" dversionmangle = s/0\.(.*)/$1/ , \
oversionmangle = s/(.*)/0.$1/" \
@@@url@@@ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteWebNonNativeLarge 20000101 20010101 0.
}
# test for pagemangle
testWatch4XmlNonNative() {
WATCHVER=4
WATCHLINE='opts="pagemangle = \
s%<Key>([^<]*)</Key>%<Key><a href=\"$1\">$1</a></Key>%g" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteXmlNonNative
}
# test user-agent string setting via opts=
testWatch4WebNonNativeUA() {
WATCHVER=4
KEYMODE=BIN
USERAGENT="foo/bar; baz:12,3.45"
WATCHLINE='opts="useragent= '$USERAGENT' "'" \
"'@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatchUA
unset USERAGENT
}
# test repack and compression
testWatch4WebNonNativeBZ2() {
WATCHVER=4
WATCHLINE='opts=repack,compression=bz2 @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
GZREPACK=bz2
MGZREPACK=bz2
helperWatch
unset GZREPACK
}
# test repack and compression
testWatch4WebNonNativeXZ() {
MGZREPACK=xz
WATCHVER=4
WATCHLINE='opts=repack,compression=xz @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
GZREPACK=xz
helperWatch
unset GZREPACK
}
# test spaces everywhere
testWatch4PrWebNonNativeXZ() {
MGZREPACK=xz
WATCHVER=4
WATCHLINE='opts = "downloadurlmangle = s%boo/xxx%@PACKAGE@/ooo% ; s%boo-%@PACKAGE@-%, \
filenamemangle = s%.*boo-(.*)%@PACKAGE@-$1% , \
repack , compression=xz" \
@@@url@@@/ (?:.*)/boo@ANY_VERSION@@ARCHIVE_EXT@ \
debian uupdate'
GZREPACK=xz
helperWatch sitePrWebNonNative
unset GZREPACK
}
# test get strictly href from links and not something like foo-href. See #904578 and MR !25
testWatchGetOnlyHref() {
WATCHVER=4
WATCHLINE='@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch siteWebNonNativeGetOnlyHref 1.0 2.0
}
### VERSION 4 with sig check ###
# test normal web page with sig(asc)
testWatch4WebNonNativeSig() {
WATCHVER=4
WATCHLINE='opts = "pgpsigurlmangle = s%(.*)%$1.asc%" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(asc) with < and >
testWatch4WebNonNativeSigAngleBraket() {
WATCHVER=4
WATCHLINE='opts = "pgpsigurlmangle = s<(.*)><$1.asc>" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(asc) with < and > with space
testWatch4WebNonNativeSigAngleBraketSpace() {
WATCHVER=4
WATCHLINE='opts = "pgpsigurlmangle = s<(.*)> <$1.asc>" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(asc) with < and > with tab
testWatch4WebNonNativeSigAngleBraketTab() {
WATCHVER=4
WATCHLINE='opts = "pgpsigurlmangle = s<(.*)> <$1.asc>" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(asc) with [ and ]
testWatch4WebNonNativeSigSquareBraket() {
WATCHVER=4
WATCHLINE='opts = "pgpsigurlmangle = s[(.*)][$1.asc]" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(asc) with { and }
testWatch4WebNonNativeSigCurlyBraket() {
WATCHVER=4
WATCHLINE='opts = "pgpsigurlmangle = s{(.*)}{$1.asc}" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(asc) - auto
testWatch4WebNonNativeSigAuto() {
WATCHVER=4
WATCHLINE='opts = "pgpmode = auto" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian uupdate'
helperWatch
}
# test normal web page with sig(bin) (Files-exclude)
testWatch4WebNonNativeFESig() {
MGZREPACK=xz
FILEEXCLUDE=1
WATCHVER=4
SIGMODE=BIN
KEYMODE=BIN
WATCHLINE='opts = "pgpsigurlmangle = s%(.*)%$1.sig%" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ \
debian uupdate'
helperWatch
}
# test normal web page with sig (different file path for sig and tar; reverse order)
testWatch4WebNonNativeRSig() {
WATCHVER=4
WATCHLINE='opts = "pgpmode=next" @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian
opts = "pgpmode=previous" @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@.asc previous uupdate'
helperWatch siteWebNonNativeR
}
# test normal web page with sig (different file path for sig and tar; reverse order, BIN)
testWatch4WebNonNativeRSigBIN() {
WATCHVER=4
SIGMODE=BIN
WATCHLINE='opts = "pgpmode=next" @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian
opts = "pgpmode=previous" @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@.sig previous uupdate'
helperWatch siteWebNonNativeR
}
# test normal web page with sig (different file path for sig and tar; reverse order, BIN BIN)
testWatch4WebNonNativeRSigBINiBIN() {
WATCHVER=4
SIGMODE=BIN
KEYMODE=BIN
WATCHLINE='opts = "pgpmode=next" @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian
opts = "pgpmode=previous" @@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@.sig previous uupdate'
helperWatch siteWebNonNativeR
}
# test normal web page with sig (self)
testWatch4WebNonNativeSelfSig() {
WATCHVER=4
SIGMODE=SELF
WATCHLINE='opts = "pgpmode = self" \
@@@url@@@/ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@.gpg debian uupdate'
helperWatch siteWebNonNativeR
}
### VERSION 4 only ###
# test normal web page (MUT)
testWatch4WebNonNativeMUT() {
MGZREPACK=xz
WATCHVER=4
COMPONENTS="bar baz"
SIGMODE=BIN
FILEEXCLUDE=2
WATCHLINE='
opts=" pgpsigurlmangle=s/$/.sig/" @@@url@@@ (?:.*)/@PACKAGE@@ANY_VERSION@@ARCHIVE_EXT@ debian
opts="component=bar,pgpsigurlmangle=s/$/.sig/" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ same
opts="component=baz,pgpsigurlmangle=s/$/.sig/" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ same uupdate'
helperWatch siteWebNonNativeMUT
}
# test normal web page (MUT with O main)
testWatch4WebNonNativeMUT0() {
WATCHVER=4
COMPONENTS="foo bar baz"
FILEEXCLUDE=3
WATCHLINE='
opts="component=foo,pgpsigurlmangle=s/$/.asc/" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ debian
opts="component=bar,pgpsigurlmangle=s/$/.asc/" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ same
opts="component=baz,pgpsigurlmangle=s/$/.asc/" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ same uupdate'
helperWatch siteWebNonNativeMUT
}
# Group test without signatures
testWatch4WebNonNativeGroup() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpmode=none" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,pgpmode=none" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=baz,pgpmode=none" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ group'
helperWatch siteWebNonNativeMUT 1.0 2.0+~3.0+~3.0
}
# Group test with repack suffix
testWatch4WebNonNativeGroupRepackSuffix() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpmode=none" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,repacksuffix=+ds,pgpmode=none" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=baz,pgpmode=none" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ group'
helperWatch siteWebNonNativeMUT 1.0 2.0+~3.0+ds+~3.0
}
# Group test with pgpsigurlmangle
testWatch4WebNonNativeGroupSigned() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpsigurlmangle=s/$/.asc/" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,pgpsigurlmangle=s/$/.asc/" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=baz,pgpsigurlmangle=s/$/.asc/" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ group'
helperWatch siteWebNonNativeMUT 1.0 2.0+~3.0+~3.0
}
# Group test with pgpmode next/previous
testWatch4WebNonNativeGroupSignedNext() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
SIGMODE=ASC
WATCHLINE='
opts="pgpmode=next" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="pgpmode=previous" @@@url@@@/ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@.asc previous
opts="component=bar,pgpmode=next" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,pgpmode=previous" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@.asc previous
opts="component=baz,pgpmode=next" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=baz,pgpmode=previous" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@.asc previous'
helperWatch siteWebNonNativeMUT 1.0 2.0+~3.0+~3.0
}
testWatch4WebNonNativeGroupWithCompression() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpmode=none" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,compression=xz,repack,pgpmode=none" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=baz,repack,pgpmode=none" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ group'
helperWatch siteWebNonNativeMUT 1.0 2.0+~3.0+~3.0
}
testWatch4WebNonNativeGroupWithChecksum1() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpmode=none" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,compression=xz,repack,pgpmode=none" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=baz,repack,pgpmode=none" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ checksum'
helperWatch siteWebNonNativeMUT 1.0 2.0+~3.0+~cs3.0
}
testWatch4WebNonNativeGroupWithChecksum2() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpmode=none" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,compression=xz,repack,pgpmode=none" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ checksum
opts="component=baz,repack,pgpmode=none" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ checksum'
helperWatch siteWebNonNativeMUT 1.0 2.0+~cs6.0
}
testWatch4WebNonNativeGroupWithChecksumAndIgnore() {
WATCHVER=4
COMPONENTS="bar baz"
FILEEXCLUDE=3
UVERSION=2.0
CMPVERSION=3.0
GZREPACK=gz
WATCHLINE='
opts="pgpmode=none" @@@url@@@ (?:.*)/foo@ANY_VERSION@@ARCHIVE_EXT@ group
opts="component=bar,compression=xz,repack,pgpmode=none" @@@url@@@ (?:.*)/bar@ANY_VERSION@@ARCHIVE_EXT@ checksum
opts="component=baz,repack,pgpmode=none" @@@url@@@ (?:.*)/baz@ANY_VERSION@@ARCHIVE_EXT@ ignore'
helperWatch siteWebNonNativeMUT 1.0 2.0+~cs3.0
}
. shunit2
|