Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
0de9819d
Commit
0de9819d
authored
9 years ago
by
Robin McCorkell
Committed by
Thomas Müller
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Replace Swift Docker test with Ceph image
parent
2577a624
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/files_external/tests/env/start-swift-ceph.sh
+33
-17
33 additions, 17 deletions
apps/files_external/tests/env/start-swift-ceph.sh
apps/files_external/tests/env/stop-swift-ceph.sh
+5
-5
5 additions, 5 deletions
apps/files_external/tests/env/stop-swift-ceph.sh
with
38 additions
and
22 deletions
apps/files_external/tests/env/start-swift-
morrisjobke
.sh
→
apps/files_external/tests/env/start-swift-
ceph
.sh
+
33
−
17
View file @
0de9819d
...
...
@@ -9,8 +9,8 @@
# Set environment variable DEBUG to print config file
#
# @author Morris Jobke
# @
copyright 2015 Morris Jobke <hey@morrisjobke.de>
#
# @
author Robin McCorkell
#
@copyright 2015 ownCloud
if
!
command
-v
docker
>
/dev/null 2>&1
;
then
echo
"No docker executable found - skipped docker setup"
...
...
@@ -19,48 +19,64 @@ fi
echo
"Docker executable found - setup docker"
echo
"Fetch recent morrisjobke/docker-swift-onlyone docker image"
docker pull morrisjobke/docker-swift-onlyone
docker_image
=
xenopathic/ceph-keystone
echo
"Fetch recent
${
docker_image
}
docker image"
docker pull
${
docker_image
}
# retrieve current folder to place the config in the parent folder
thisFolder
=
`
echo
$0
| replace
"env/start-swift-
morrisjobke
.sh"
""
`
thisFolder
=
`
echo
$0
| replace
"env/start-swift-
ceph
.sh"
""
`
if
[
-z
"
$thisFolder
"
]
;
then
thisFolder
=
"."
fi
;
container
=
`
docker run
-d
-e
SWIFT_SET_PASSWORDS
=
true
morrisjobke/docker-swift-onlyone
`
port
=
5001
user
=
test
pass
=
testing
tenant
=
testenant
region
=
testregion
service
=
testceph
container
=
`
docker run
-d
\
-e
KEYSTONE_PUBLIC_PORT
=
${
port
}
\
-e
KEYSTONE_ADMIN_USER
=
${
user
}
\
-e
KEYSTONE_ADMIN_PASS
=
${
pass
}
\
-e
KEYSTONE_ADMIN_TENANT
=
${
tenant
}
\
-e
KEYSTONE_ENDPOINT_REGION
=
${
region
}
\
-e
KEYSTONE_SERVICE
=
${
service
}
\
${
docker_image
}
`
host
=
`
docker inspect
$container
|
grep
IPAddress |
cut
-d
'"'
-f
4
`
echo
"
swift
container:
$container
"
echo
"
${
docker_image
}
container:
$container
"
# put container IDs into a file to drop them after the test run (keep in mind that multiple tests run in parallel on the same host)
echo
$container
>>
$thisFolder
/dockerContainer
MorrisJobke
.
$EXECUTOR_NUMBER
.swift
echo
$container
>>
$thisFolder
/dockerContainer
Ceph
.
$EXECUTOR_NUMBER
.swift
# TODO find a way to determine the successful initialization inside the docker container
echo
"Waiting 15 seconds for swift initialization ... "
sleep
15
user
=
test
:tester
password
=
`
docker logs
$container
|
grep
"user_test_tester "
|
cut
-d
" "
-f3
`
echo
"Waiting 20 seconds for ceph initialization ... "
sleep
20
cat
>
$thisFolder
/config.swift.php
<<
DELIM
<?php
return array(
'run'=>true,
'url'=>'http://
$host
:
8080/auth
/v
1
.0',
'url'=>'http://
$host
:
$port
/v
2
.0',
'user'=>'
$user
',
'key'=>'
$password
',
'tenant'=>'
$tenant
',
'password'=>'
$pass
',
'service_name'=>'
$service
',
'bucket'=>'swift',
'region' => '
DFW
',
'region' => '
$region
',
);
DELIM
if
[
-n
"
$DEBUG
"
]
;
then
cat
$thisFolder
/config.swift.php
cat
$thisFolder
/dockerContainer
MorrisJobke
.
$EXECUTOR_NUMBER
.swift
cat
$thisFolder
/dockerContainer
Ceph
.
$EXECUTOR_NUMBER
.swift
fi
This diff is collapsed.
Click to expand it.
apps/files_external/tests/env/stop-swift-
morrisjobke
.sh
→
apps/files_external/tests/env/stop-swift-
ceph
.sh
+
5
−
5
View file @
0de9819d
...
...
@@ -6,8 +6,8 @@
# against. It will also revert the config changes done in start step.
#
# @author Morris Jobke
# @
copyright 2015 Morris Jobke <hey@morrisjobke.de>
#
# @
author Robin McCorkell
#
@copyright 2015 ownCloud
if
!
command
-v
docker
>
/dev/null 2>&1
;
then
echo
"No docker executable found - skipped docker stop"
...
...
@@ -17,14 +17,14 @@ fi
echo
"Docker executable found - stop and remove docker containers"
# retrieve current folder to remove the config from the parent folder
thisFolder
=
`
echo
$0
| replace
"env/stop-swift-
morrisjobke
.sh"
""
`
thisFolder
=
`
echo
$0
| replace
"env/stop-swift-
ceph
.sh"
""
`
if
[
-z
"
$thisFolder
"
]
;
then
thisFolder
=
"."
fi
;
# stopping and removing docker containers
for
container
in
`
cat
$thisFolder
/dockerContainer
MorrisJobke
.
$EXECUTOR_NUMBER
.swift
`
;
do
for
container
in
`
cat
$thisFolder
/dockerContainer
Ceph
.
$EXECUTOR_NUMBER
.swift
`
;
do
echo
"Stopping and removing docker container
$container
"
# kills running container and removes it
docker
rm
-f
$container
...
...
@@ -32,5 +32,5 @@ done;
# cleanup
rm
$thisFolder
/config.swift.php
rm
$thisFolder
/dockerContainer
MorrisJobke
.
$EXECUTOR_NUMBER
.swift
rm
$thisFolder
/dockerContainer
Ceph
.
$EXECUTOR_NUMBER
.swift
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment