
- Update Swift to use the new tokenauth and swift_auth from keystone. - Drop swift-keystone2. - Add swift3 / s3token in swift proxy pipeline (TODO: figure out testing). - Fix exercises/swift.sh (workaround until review #3712 get merged). Change-Id: Ie85d30e14cee21c6f80043fccde92dfb229f0e80
45 lines
1.4 KiB
Bash
Executable File
45 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Test swift via the command line tools that ship with it.
|
|
|
|
# This script exits on an error so that errors don't compound and you see
|
|
# only the first error that occured.
|
|
set -o errexit
|
|
|
|
# Print the commands being run so that we can see the command that triggers
|
|
# an error. It is also useful for following allowing as the install occurs.
|
|
set -o xtrace
|
|
|
|
|
|
# Settings
|
|
# ========
|
|
|
|
# Use openrc + stackrc + localrc for settings
|
|
pushd $(cd $(dirname "$0")/.. && pwd)
|
|
source ./openrc
|
|
popd
|
|
|
|
|
|
# Testing Swift
|
|
# =============
|
|
|
|
# FIXME(chmou): when review https://review.openstack.org/#change,3712
|
|
# is merged we would be able to use the common openstack options and
|
|
# remove the trailing slash to v2.0 auth url.
|
|
#
|
|
# Check if we have to swift via keystone
|
|
swift --auth-version 2 -A http://${HOST_IP}:5000/v2.0/ -U admin -K $ADMIN_PASSWORD stat
|
|
|
|
# We start by creating a test container
|
|
swift --auth-version 2 -A http://${HOST_IP}:5000/v2.0/ -U admin -K $ADMIN_PASSWORD post testcontainer
|
|
|
|
# add some files into it.
|
|
swift --auth-version 2 -A http://${HOST_IP}:5000/v2.0/ -U admin -K $ADMIN_PASSWORD upload testcontainer /etc/issue
|
|
|
|
# list them
|
|
swift --auth-version 2 -A http://${HOST_IP}:5000/v2.0/ -U admin -K $ADMIN_PASSWORD list testcontainer
|
|
|
|
# And we may want to delete them now that we have tested that
|
|
# everything works.
|
|
swift --auth-version 2 -A http://${HOST_IP}:5000/v2.0/ -U admin -K $ADMIN_PASSWORD delete testcontainer
|