#!/bin/bash # Copyright 2017 AT&T Intellectual Property. All other rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # set -x IMAGE_PREFIX=$1 SHIPYARD_IMAGE_NAME=$2 IMAGE_TAG=$3 # Collect necessary files and run shipyard image in docker mkdir -p build/.tmprun/etc cp $PWD/etc/shipyard/api-paste.ini build/.tmprun/etc cp $PWD/tools/resources/shipyard.conf build/.tmprun/etc docker run \ -v $PWD/build/.tmprun/etc:/etc/shipyard \ -p 9000:9000 \ --name shipyard_test ${IMAGE_PREFIX}/${SHIPYARD_IMAGE_NAME}:${IMAGE_TAG} \ & sleep 5 RESULT="$(curl -i 'http://127.0.0.1:9000/versions' | tr '\r' '\n' | head -1)" docker stop shipyard_test docker rm shipyard_test rm -r build/.tmprun GOOD="HTTP/1.1 200 OK" if [[ ${RESULT} == ${GOOD} ]]; then exit 0 else exit 1 fi