You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.0 KiB
70 lines
2.0 KiB
#!/bin/bash
|
|
|
|
# before running these tests, set the following env vars:
|
|
# export ART_IP=<ip-or-domain-of-artifactory-server>
|
|
# export ART_USER=<artifactory-username>
|
|
# export ART_PWD=<artifactory-password>
|
|
# sample curl commands for artifactory API
|
|
# curl -u $ART_USER:$ART_PWD -X PUT "http://host:8081/artifactory/path-to-file" -T ./local-path-to-file
|
|
# Artifactory docker image: https://www.jfrog.com/confluence/display/RTF/Running+with+Docker
|
|
|
|
set -e
|
|
|
|
source $(dirname $0)/helpers.sh
|
|
|
|
it_can_list_releases_from_artifactory() {
|
|
|
|
# local local_ip=$(find_docker_host_ip)
|
|
#local_ip="localhost"
|
|
artifactory_ip=$ART_IP
|
|
TMPDIR=/tmp
|
|
|
|
local src=$(mktemp -d $TMPDIR/in-src.XXXXXX)
|
|
local endpoint="http://${artifactory_ip}:8081/artifactory"
|
|
local regex="ecd-front-(?<version>.*).tar.gz"
|
|
local folder="/generic/ecd-front"
|
|
|
|
check_without_credentials_and_version $endpoint $regex $folder $src
|
|
|
|
}
|
|
|
|
it_can_list_releases_from_artifactory_with_version() {
|
|
|
|
# local local_ip=$(find_docker_host_ip)
|
|
#local_ip="localhost"
|
|
artifactory_ip=$ART_IP
|
|
TMPDIR=/tmp
|
|
|
|
local src=$(mktemp -d $TMPDIR/in-src.XXXXXX)
|
|
local endpoint="http://${artifactory_ip}:8081/artifactory"
|
|
local regex="ecd-front-(?<version>.*).tar.gz"
|
|
local folder="/generic/ecd-front"
|
|
local version="20161109222826"
|
|
|
|
check_without_credentials_with_version $endpoint $regex $folder $version $src
|
|
|
|
}
|
|
|
|
it_can_list_releases_from_protected_artifactory_with_version() {
|
|
|
|
# local local_ip=$(find_docker_host_ip)
|
|
#local_ip="localhost"
|
|
artifactory_ip=$ART_IP
|
|
TMPDIR=/tmp
|
|
|
|
|
|
local src=$(mktemp -d $TMPDIR/in-src.XXXXXX)
|
|
local endpoint="http://${artifactory_ip}:8081/artifactory"
|
|
local regex="ecd-front-(?<version>.*).tar.gz"
|
|
local folder="/generic/ecd-front"
|
|
local version="20161109222826"
|
|
local username="${ART_USER}"
|
|
local password="${ART_PWD}"
|
|
|
|
check_with_credentials_with_version $endpoint $regex $username $password $folder $version $src
|
|
|
|
}
|
|
|
|
run it_can_list_releases_from_artifactory
|
|
run it_can_list_releases_from_artifactory_with_version
|
|
run it_can_list_releases_from_protected_artifactory_with_version
|