Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
2f73a018
"...kolla-ansible.git" did not exist on "71dd6eb983fa345e7a3828f68a4b3d6981bba738"
Commit
2f73a018
authored
7 years ago
by
Zuul
Committed by
Gerrit Code Review
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Support parsing ini files with no sections"
parents
5e54f516
d32c7082
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
ansible/action_plugins/merge_configs.py
+7
-1
7 additions, 1 deletion
ansible/action_plugins/merge_configs.py
tests/test_merge_config.py
+76
-1
76 additions, 1 deletion
tests/test_merge_config.py
with
83 additions
and
2 deletions
ansible/action_plugins/merge_configs.py
+
7
−
1
View file @
2f73a018
...
...
@@ -25,6 +25,8 @@ from six import StringIO
from
oslo_config
import
iniparser
_ORPHAN_SECTION
=
'
TEMPORARY_ORPHAN_VARIABLE_SECTION
'
class
OverrideConfigParser
(
iniparser
.
BaseParser
):
...
...
@@ -34,6 +36,8 @@ class OverrideConfigParser(iniparser.BaseParser):
self
.
_cur_section
=
None
def
assignment
(
self
,
key
,
value
):
if
self
.
_cur_section
is
None
:
self
.
new_section
(
_ORPHAN_SECTION
)
cur_value
=
self
.
_cur_section
.
get
(
key
)
if
len
(
value
)
==
1
and
value
[
0
]
==
''
:
value
=
[]
...
...
@@ -44,6 +48,7 @@ class OverrideConfigParser(iniparser.BaseParser):
def
parse
(
self
,
lineiter
):
self
.
_cur_sections
=
collections
.
OrderedDict
()
self
.
_cur_section
=
None
super
(
OverrideConfigParser
,
self
).
parse
(
lineiter
)
# merge _cur_sections into _sections
...
...
@@ -77,7 +82,8 @@ class OverrideConfigParser(iniparser.BaseParser):
write_key_value
(
key
,
values
)
for
section
in
self
.
_sections
:
fp
.
write
(
'
[{}]
\n
'
.
format
(
section
))
if
section
!=
_ORPHAN_SECTION
:
fp
.
write
(
'
[{}]
\n
'
.
format
(
section
))
write_section
(
self
.
_sections
[
section
])
fp
.
write
(
'
\n
'
)
...
...
This diff is collapsed.
Click to expand it.
tests/test_merge_config.py
+
76
−
1
View file @
2f73a018
...
...
@@ -86,11 +86,68 @@ c_key2 = 1 2 3
'''
TESTA_NO_SECTIONS
=
'''
key1 = a
key2 = b
'''
TESTB_NO_SECTIONS
=
'''
key3 = c
'''
# TESTA_NO_SECTIONS and TESTB_NO_SECTIONS combined
TESTC_NO_SECTIONS
=
'''
key1 = a
key2 = b
key3 = c
'''
TESTA_NO_DEFAULT_SECTION
=
'''
key1 = a
key2 = b
[a]
key1 = not_a
[b]
key3 = not_c
'''
TESTB_NO_DEFAULT_SECTION
=
'''
key3 = c
[b]
key2 = not_b
key3 = override
'''
# TESTA_NO_DEFAULT_SECTION and TESTB_NO_DEFAULT_SECTION combined
TESTC_NO_DEFAULT_SECTION
=
'''
key1 = a
key2 = b
key3 = c
[a]
key1 = not_a
[b]
key3 = override
key2 = not_b
'''
class
OverrideConfigParserTest
(
base
.
BaseTestCase
):
def
test_read_write
(
self
):
for
ini
in
[
TESTA
,
TESTB
,
TESTC
]:
for
ini
in
[
TESTA
,
TESTB
,
TESTC
,
TESTA_NO_SECTIONS
,
TESTB_NO_SECTIONS
,
TESTC_NO_SECTIONS
,
TESTA_NO_DEFAULT_SECTION
,
TESTB_NO_DEFAULT_SECTION
,
TESTC_NO_DEFAULT_SECTION
]:
parser
=
merge_configs
.
OverrideConfigParser
()
parser
.
parse
(
StringIO
(
ini
))
output
=
StringIO
()
...
...
@@ -106,3 +163,21 @@ class OverrideConfigParserTest(base.BaseTestCase):
parser
.
write
(
output
)
self
.
assertEqual
(
TESTC
,
output
.
getvalue
())
output
.
close
()
def
test_merge_no_sections
(
self
):
parser
=
merge_configs
.
OverrideConfigParser
()
parser
.
parse
(
StringIO
(
TESTA_NO_SECTIONS
))
parser
.
parse
(
StringIO
(
TESTB_NO_SECTIONS
))
output
=
StringIO
()
parser
.
write
(
output
)
self
.
assertEqual
(
TESTC_NO_SECTIONS
,
output
.
getvalue
())
output
.
close
()
def
test_merge_no_default_section
(
self
):
parser
=
merge_configs
.
OverrideConfigParser
()
parser
.
parse
(
StringIO
(
TESTA_NO_DEFAULT_SECTION
))
parser
.
parse
(
StringIO
(
TESTB_NO_DEFAULT_SECTION
))
output
=
StringIO
()
parser
.
write
(
output
)
self
.
assertEqual
(
TESTC_NO_DEFAULT_SECTION
,
output
.
getvalue
())
output
.
close
()
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