~veebers/juju-ci-tools/model_migration_check_all_units_of_charm

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
#!/bin/bash
# Download Ubuntu juju packages that match the version under test.
set -eu

: ${LOCAL_JENKINS_URL=http://juju-ci.vapour.ws:8080}
ARTIFACTS_PATH=$WORKSPACE/artifacts

: ${SCRIPTS=$(readlink -f $(dirname $0))}
export PATH="$SCRIPTS:$PATH"

UBUNTU_ARCH="http://archive.ubuntu.com/ubuntu/pool/universe/j/juju-core/"
PORTS_ARCH="http://ports.ubuntu.com/pool/universe/j/juju-core/"
ALL_ARCHIVES="$UBUNTU_ARCH $PORTS_ARCH"

TRUSTY_AMD64="certify-trusty-amd64"
TRUSTY_PPC64="certify-trusty-ppc64"
TRUSTY_I386="certify-trusty-i386"

set -x

usage() {
    echo "usage: $0 VERSION"
    echo "  VERSION: The juju package version to retrive."
    exit 1
}


check_deps() {
    echo "Phase 0: Checking requirements."
    has_deps=1
    which lftp || has_deps=0
    if [[ $has_deps == 0 ]]; then
        echo "Install lftp."
        exit 2
    fi
}


retrieve_packages() {
    # Retrieve the $RELEASE packages that contain jujud,
    # or copy a locally built package.
    echo "Phase 1: Retrieving juju-core packages from archives"
    cd $WORKSPACE
    for archive in $ALL_ARCHIVES; do
        safe_archive=$(echo "$archive" | sed -e 's,//.*@,//,')
        echo "checking $safe_archive for $VERSION."
        lftp -c mirror -I "juju*${VERSION}*.deb" $archive;
    done
    if [ -d $WORKSPACE/juju-core ]; then
        found=$(find $WORKSPACE/juju-core/ -name "*deb")
        if [[ $found != "" ]]; then
            mv $WORKSPACE/juju-core/*deb ./
        fi
        rm -r $WORKSPACE/juju-core
    fi
}


start_series_arch_tests() {
    [[ -z $TOKEN ]] && return 0
    encoded_version=$(echo "$VERSION" | sed 's,[+],%2B,')
    query="token=$TOKEN&VERSION=$encoded_version"
    for job in $TRUSTY_AMD64 $TRUSTY_PPC64 $TRUSTY_I386; do
        curl -o /dev/null \
            "$LOCAL_JENKINS_URL/job/$job/buildWithParameters?$query"
    done
}


TOKEN=""
while [[ "${1-}" != "" && $1 =~ ^-.* ]]; do
    case $1 in
        --start-other-tests)
            shift
            TOKEN=$1
            ;;
    esac
    shift
done

test $# -eq 1 || usage
VERSION=$1

check_deps
retrieve_packages
start_series_arch_tests