Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
f01ae9f5
Commit
f01ae9f5
authored
Jan 16, 2015
by
Matt Martz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test_rax_network role
parent
e54c45ee
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
182 additions
and
1 deletions
+182
-1
test/integration/cleanup_rax.py
+18
-1
test/integration/rackspace.yml
+3
-0
test/integration/roles/test_rax_network/meta/main.yml
+3
-0
test/integration/roles/test_rax_network/tasks/main.yml
+158
-0
No files found.
test/integration/cleanup_rax.py
View file @
f01ae9f5
...
...
@@ -102,6 +102,18 @@ def delete_rax_keypair(args):
args
.
assumeyes
)
def
delete_rax_network
(
args
):
"""Function for deleting Cloud Networks"""
print
(
"--- Cleaning Cloud Networks matching '
%
s'"
%
args
.
match_re
)
for
region
in
pyrax
.
identity
.
services
.
network
.
regions
:
cnw
=
pyrax
.
connect_to_cloud_networks
(
region
=
region
)
for
network
in
cnw
.
list
():
if
re
.
search
(
args
.
match_re
,
network
.
name
):
prompt_and_delete
(
network
,
'Delete matching
%
s? [y/n]: '
%
network
,
args
.
assumeyes
)
def
main
():
if
not
HAS_PYRAX
:
raise
SystemExit
(
'The pyrax python module is required for this script'
)
...
...
@@ -111,6 +123,11 @@ def main():
delete_rax
(
args
)
delete_rax_clb
(
args
)
delete_rax_keypair
(
args
)
delete_rax_network
(
args
)
if
__name__
==
'__main__'
:
main
()
try
:
main
()
except
KeyboardInterrupt
:
print
(
'
\n
Exiting...'
)
test/integration/rackspace.yml
View file @
f01ae9f5
...
...
@@ -27,3 +27,6 @@
-
role
:
test_rax_clb_nodes
tags
:
test_rax_clb_nodes
-
role
:
test_rax_network
tags
:
test_rax_network
test/integration/roles/test_rax_network/meta/main.yml
0 → 100644
View file @
f01ae9f5
dependencies
:
-
prepare_tests
-
prepare_rax_tests
test/integration/roles/test_rax_network/tasks/main.yml
0 → 100644
View file @
f01ae9f5
# ============================================================
-
name
:
Test rax_network with no args
rax_network
:
ignore_errors
:
true
register
:
rax_network
-
name
:
Validate results of rax_network with no args
assert
:
that
:
-
rax_network|failed
-
rax_network.msg == 'missing required arguments
:
label'
# ============================================================
# ============================================================
-
name
:
Test rax_network with label
rax_network
:
label
:
fail
ignore_errors
:
true
register
:
rax_network
-
name
:
Validate results of rax_network with no args
assert
:
that
:
-
rax_network|failed
-
rax_network.msg == 'No credentials supplied!'
# ============================================================
# ============================================================
-
name
:
Test rax_network with creds
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
label
:
fail
ignore_errors
:
true
register
:
rax_network
-
name
:
Validate results of rax_network with creds
assert
:
that
:
-
rax_network|failed
-
rax_network.msg.startswith('None is not a valid region')
# ============================================================
# ============================================================
-
name
:
Test rax_network with creds and region
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
region
:
"
{{
rackspace_region
}}"
label
:
fail
ignore_errors
:
true
register
:
rax_network
-
name
:
Validate results of rax_network with creds and region
assert
:
that
:
-
rax_network|failed
-
rax_network.msg == 'missing required arguments
:
cidr'
# ============================================================
# ============================================================
-
name
:
Test rax_network with creds, region and cidr
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
region
:
"
{{
rackspace_region
}}"
cidr
:
"
172.17.141.0/24"
label
:
"
{{
resource_prefix
}}-1"
register
:
rax_network
-
name
:
Validate results of rax_network with creds, region and cidr
assert
:
that
:
-
rax_network|success
-
rax_network|changed
-
rax_network.networks.0.cidr == "172.17.141.0/24"
-
rax_network.networks.0.label == "{{ resource_prefix }}-1"
-
name
:
Delete Integration 1
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
region
:
"
{{
rackspace_region
}}"
label
:
"
{{
resource_prefix
}}-1"
state
:
absent
register
:
rax_network
-
name
:
Validate delete integration 1
assert
:
that
:
-
rax_network|changed
-
rax_network|success
-
rax_network.networks.0.label == "{{ resource_prefix }}-1"
-
rax_network.networks.0.cidr == "172.17.141.0/24"
# ============================================================
# ============================================================
-
name
:
Test rax_network idempotency 1
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
region
:
"
{{
rackspace_region
}}"
cidr
:
"
172.17.142.0/24"
label
:
"
{{
resource_prefix
}}-2"
register
:
rax_network
-
name
:
Validate rax_network idempotency 1
assert
:
that
:
-
rax_network|success
-
rax_network|changed
-
rax_network.networks.0.cidr == "172.17.142.0/24"
-
rax_network.networks.0.label == "{{ resource_prefix }}-2"
-
name
:
Test rax_network idempotency 2
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
region
:
"
{{
rackspace_region
}}"
cidr
:
"
172.17.142.0/24"
label
:
"
{{
resource_prefix
}}-2"
register
:
rax_network
-
name
:
Validate rax_network idempotency 2
assert
:
that
:
-
rax_network|success
-
not rax_network|changed
-
rax_network.networks.0.cidr == "172.17.142.0/24"
-
rax_network.networks.0.label == "{{ resource_prefix }}-2"
-
name
:
Delete Integration 2
rax_network
:
username
:
"
{{
rackspace_username
}}"
api_key
:
"
{{
rackspace_api_key
}}"
region
:
"
{{
rackspace_region
}}"
label
:
"
{{
resource_prefix
}}-2"
state
:
absent
register
:
rax_network
-
name
:
Validate delete integration 2
assert
:
that
:
-
rax_network|changed
-
rax_network|success
-
rax_network.networks.0.label == "{{ resource_prefix }}-2"
-
rax_network.networks.0.cidr == "172.17.142.0/24"
# ============================================================
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment