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
05a7a372
Commit
05a7a372
authored
Jun 15, 2012
by
Daniel Hokka Zakrisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests of host exclusions
parent
3d5c93bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
test/TestInventory.py
+18
-0
No files found.
test/TestInventory.py
View file @
05a7a372
...
...
@@ -99,6 +99,17 @@ class TestInventory(unittest.TestCase):
print
expected_hosts
assert
sorted
(
hosts
)
==
sorted
(
expected_hosts
)
def
test_simple_exclude
(
self
):
inventory
=
self
.
simple_inventory
()
hosts
=
inventory
.
list_hosts
(
"all:!greek"
)
expected_hosts
=
[
'jupiter'
,
'saturn'
,
'thor'
,
'odin'
,
'loki'
]
assert
sorted
(
hosts
)
==
sorted
(
expected_hosts
)
hosts
=
inventory
.
list_hosts
(
"all:!norse:!greek"
)
expected_hosts
=
[
'jupiter'
,
'saturn'
]
assert
sorted
(
hosts
)
==
sorted
(
expected_hosts
)
def
test_simple_vars
(
self
):
inventory
=
self
.
simple_inventory
()
vars
=
inventory
.
get_variables
(
'thor'
)
...
...
@@ -136,6 +147,13 @@ class TestInventory(unittest.TestCase):
print
expected
assert
vars
==
expected
def
test_complex_exclude
(
self
):
inventory
=
self
.
complex_inventory
()
hosts
=
inventory
.
list_hosts
(
"nc:!triangle:florida:!orlando"
)
expected_hosts
=
[
'rtp_a'
,
'rtp_b'
,
'rtb_c'
,
'miami'
]
assert
sorted
(
hosts
)
==
sorted
(
expected_hosts
)
###################################################
...
...
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