Fix ovsdb module not being idempotent (#57735)
openvswitch_db was not parsing properly some arguments, which caused some commands to be executed when they shouldn't. This commit fixesit and adds unit testing for the usecase. Closes-Bug: #55432 Closes-bug: #43858
This commit is contained in:
parent
4f78573a99
commit
db689f7221
4 changed files with 96 additions and 25 deletions
|
@ -157,7 +157,7 @@ def map_config_to_obj(module):
|
||||||
if NON_EMPTY_MAP_RE.match(col_value):
|
if NON_EMPTY_MAP_RE.match(col_value):
|
||||||
for kv in col_value[1:-1].split(', '):
|
for kv in col_value[1:-1].split(', '):
|
||||||
k, v = kv.split('=')
|
k, v = kv.split('=')
|
||||||
col_value_to_dict[k.strip()] = v.strip()
|
col_value_to_dict[k.strip()] = v.strip('\"')
|
||||||
|
|
||||||
obj = {
|
obj = {
|
||||||
'table': module.params['table'],
|
'table': module.params['table'],
|
||||||
|
@ -176,6 +176,8 @@ def map_config_to_obj(module):
|
||||||
|
|
||||||
|
|
||||||
def map_params_to_obj(module):
|
def map_params_to_obj(module):
|
||||||
|
if module.params['value'] in ['True', 'False']:
|
||||||
|
module.params['value'] = module.params['value'].lower()
|
||||||
obj = {
|
obj = {
|
||||||
'table': module.params['table'],
|
'table': module.params['table'],
|
||||||
'record': module.params['record'],
|
'record': module.params['record'],
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == true"
|
- result is changed
|
||||||
|
|
||||||
- name: Create bridge again (idempotent)
|
- name: Create bridge again (idempotent)
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
|
@ -35,7 +35,50 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- result is not changed
|
||||||
|
|
||||||
|
- name: Change key value with quotes
|
||||||
|
openvswitch_db:
|
||||||
|
table: open_vswitch
|
||||||
|
record: .
|
||||||
|
col: other_config
|
||||||
|
key: pmd-cpu-mask
|
||||||
|
value: "0xaaa00000000"
|
||||||
|
become: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is changed
|
||||||
|
|
||||||
|
- name: Change keyvalue with quotes(idempotent)
|
||||||
|
openvswitch_db:
|
||||||
|
table: open_vswitch
|
||||||
|
record: .
|
||||||
|
col: other_config
|
||||||
|
key: pmd-cpu-mask
|
||||||
|
value: "0xaaa00000000"
|
||||||
|
become: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is not changed
|
||||||
|
|
||||||
|
- name: Remove key value with quotes
|
||||||
|
openvswitch_db:
|
||||||
|
table: open_vswitch
|
||||||
|
record: .
|
||||||
|
col: other_config
|
||||||
|
key: pmd-cpu-mask
|
||||||
|
value: "0xaaa00000000"
|
||||||
|
state: absent
|
||||||
|
become: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is changed
|
||||||
|
|
||||||
- name: Change column value in a map
|
- name: Change column value in a map
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
|
@ -49,7 +92,7 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == true"
|
- result is changed
|
||||||
|
|
||||||
- name: Change column value in a map again (idempotent)
|
- name: Change column value in a map again (idempotent)
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
|
@ -63,33 +106,33 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- result is not changed
|
||||||
|
|
||||||
- name: Change column value
|
- name: Change column value
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
table: Bridge
|
table: Bridge
|
||||||
record: br-test
|
record: br-test
|
||||||
col: stp_enable
|
col: stp_enable
|
||||||
value: 'true'
|
value: true
|
||||||
become: yes
|
become: yes
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == true"
|
- result is changed
|
||||||
|
|
||||||
- name: Change column value again (idempotent)
|
- name: Change column value again (idempotent)
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
table: Bridge
|
table: Bridge
|
||||||
record: br-test
|
record: br-test
|
||||||
col: stp_enable
|
col: stp_enable
|
||||||
value: 'true'
|
value: true
|
||||||
become: yes
|
become: yes
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- result is not changed
|
||||||
|
|
||||||
- name: Try to set value on a map type without a key (negative)
|
- name: Try to set value on a map type without a key (negative)
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
@ -103,7 +146,7 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.failed == true"
|
- result is failed
|
||||||
|
|
||||||
- name: Remove bridge
|
- name: Remove bridge
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
|
@ -118,7 +161,7 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == true"
|
- result is changed
|
||||||
|
|
||||||
- name: Remove bridge again (idempotent)
|
- name: Remove bridge again (idempotent)
|
||||||
openvswitch_db:
|
openvswitch_db:
|
||||||
|
@ -133,7 +176,7 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- result is not changed
|
||||||
|
|
||||||
- name: Tear down test bridge
|
- name: Tear down test bridge
|
||||||
command: ovs-vsctl del-br br-test
|
command: ovs-vsctl del-br br-test
|
||||||
|
|
|
@ -13,7 +13,7 @@ mcast_snooping_enable: false
|
||||||
mirrors : []
|
mirrors : []
|
||||||
name : test-br
|
name : test-br
|
||||||
netflow : []
|
netflow : []
|
||||||
other_config : {disable-in-band=True}
|
other_config : {disable-in-band=true}
|
||||||
ports : [2c9c1b35-a304-4dee-bb7a-092d656543c7]
|
ports : [2c9c1b35-a304-4dee-bb7a-092d656543c7]
|
||||||
protocols : []
|
protocols : []
|
||||||
rstp_enable : false
|
rstp_enable : false
|
||||||
|
|
|
@ -20,11 +20,26 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from units.compat.mock import patch
|
|
||||||
from ansible.modules.network.ovs import openvswitch_db
|
from ansible.modules.network.ovs import openvswitch_db
|
||||||
|
from units.compat.mock import patch, MagicMock
|
||||||
from units.modules.utils import set_module_args
|
from units.modules.utils import set_module_args
|
||||||
from .ovs_module import TestOpenVSwitchModule, load_fixture
|
from .ovs_module import TestOpenVSwitchModule, load_fixture
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def patched_openvswitch_db(monkeypatch):
|
||||||
|
mocked_ovs_db = MagicMock()
|
||||||
|
mocked_ovs_db.return_value = {'table': 'open_vswitch',
|
||||||
|
'record': '.',
|
||||||
|
'col': 'other_config',
|
||||||
|
'key': 'pmd-cpu-mask',
|
||||||
|
'value': '0xaaa00000000'}
|
||||||
|
monkeypatch.setattr(openvswitch_db, 'map_config_to_obj', mocked_ovs_db)
|
||||||
|
return openvswitch_db
|
||||||
|
|
||||||
|
|
||||||
test_name_side_effect_matrix = {
|
test_name_side_effect_matrix = {
|
||||||
'test_openvswitch_db_absent_idempotent': [
|
'test_openvswitch_db_absent_idempotent': [
|
||||||
(0, 'openvswitch_db_disable_in_band_missing.cfg', None),
|
(0, 'openvswitch_db_disable_in_band_missing.cfg', None),
|
||||||
|
@ -35,6 +50,8 @@ test_name_side_effect_matrix = {
|
||||||
'test_openvswitch_db_present_idempotent': [
|
'test_openvswitch_db_present_idempotent': [
|
||||||
(0, 'openvswitch_db_disable_in_band_true.cfg', None),
|
(0, 'openvswitch_db_disable_in_band_true.cfg', None),
|
||||||
(0, None, None)],
|
(0, None, None)],
|
||||||
|
'test_openvswitch_db_present_idempotent_value': [
|
||||||
|
(0, None, None)],
|
||||||
'test_openvswitch_db_present_adds_key': [
|
'test_openvswitch_db_present_adds_key': [
|
||||||
(0, 'openvswitch_db_disable_in_band_missing.cfg', None),
|
(0, 'openvswitch_db_disable_in_band_missing.cfg', None),
|
||||||
(0, None, None)],
|
(0, None, None)],
|
||||||
|
@ -86,62 +103,71 @@ class TestOpenVSwitchDBModule(TestOpenVSwitchModule):
|
||||||
set_module_args(dict(state='absent',
|
set_module_args(dict(state='absent',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='other_config', key='disable-in-band',
|
col='other_config', key='disable-in-band',
|
||||||
value='True'))
|
value='true'))
|
||||||
self.execute_module(test_name='test_openvswitch_db_absent_idempotent')
|
self.execute_module(test_name='test_openvswitch_db_absent_idempotent')
|
||||||
|
|
||||||
def test_openvswitch_db_absent_removes_key(self):
|
def test_openvswitch_db_absent_removes_key(self):
|
||||||
set_module_args(dict(state='absent',
|
set_module_args(dict(state='absent',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='other_config', key='disable-in-band',
|
col='other_config', key='disable-in-band',
|
||||||
value='True'))
|
value='true'))
|
||||||
self.execute_module(
|
self.execute_module(
|
||||||
changed=True,
|
changed=True,
|
||||||
commands=['/usr/bin/ovs-vsctl -t 5 remove Bridge test-br other_config'
|
commands=['/usr/bin/ovs-vsctl -t 5 remove Bridge test-br other_config'
|
||||||
' disable-in-band=True'],
|
' disable-in-band=true'],
|
||||||
test_name='test_openvswitch_db_absent_removes_key')
|
test_name='test_openvswitch_db_absent_removes_key')
|
||||||
|
|
||||||
def test_openvswitch_db_present_idempotent(self):
|
def test_openvswitch_db_present_idempotent(self):
|
||||||
set_module_args(dict(state='present',
|
set_module_args(dict(state='present',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='other_config', key='disable-in-band',
|
col='other_config', key='disable-in-band',
|
||||||
value='True'))
|
value='true'))
|
||||||
self.execute_module(test_name='test_openvswitch_db_present_idempotent')
|
self.execute_module(test_name='test_openvswitch_db_present_idempotent')
|
||||||
|
|
||||||
|
@pytest.mark.usefixtures('patched_openvswitch_db')
|
||||||
|
def test_openvswitch_db_present_idempotent_value(self):
|
||||||
|
set_module_args({"col": "other_config",
|
||||||
|
"key": "pmd-cpu-mask",
|
||||||
|
"record": ".",
|
||||||
|
"table": "open_vswitch",
|
||||||
|
"value": "0xaaa00000000"})
|
||||||
|
self.execute_module(test_name='test_openvswitch_db_present_idempotent_value')
|
||||||
|
|
||||||
def test_openvswitch_db_present_adds_key(self):
|
def test_openvswitch_db_present_adds_key(self):
|
||||||
set_module_args(dict(state='present',
|
set_module_args(dict(state='present',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='other_config', key='disable-in-band',
|
col='other_config', key='disable-in-band',
|
||||||
value='True'))
|
value='true'))
|
||||||
self.execute_module(
|
self.execute_module(
|
||||||
changed=True,
|
changed=True,
|
||||||
commands=['/usr/bin/ovs-vsctl -t 5 set Bridge test-br other_config'
|
commands=['/usr/bin/ovs-vsctl -t 5 set Bridge test-br other_config'
|
||||||
':disable-in-band=True'],
|
':disable-in-band=true'],
|
||||||
test_name='test_openvswitch_db_present_adds_key')
|
test_name='test_openvswitch_db_present_adds_key')
|
||||||
|
|
||||||
def test_openvswitch_db_present_updates_key(self):
|
def test_openvswitch_db_present_updates_key(self):
|
||||||
set_module_args(dict(state='present',
|
set_module_args(dict(state='present',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='other_config', key='disable-in-band',
|
col='other_config', key='disable-in-band',
|
||||||
value='False'))
|
value='false'))
|
||||||
self.execute_module(
|
self.execute_module(
|
||||||
changed=True,
|
changed=True,
|
||||||
commands=['/usr/bin/ovs-vsctl -t 5 set Bridge test-br other_config'
|
commands=['/usr/bin/ovs-vsctl -t 5 set Bridge test-br other_config'
|
||||||
':disable-in-band=False'],
|
':disable-in-band=false'],
|
||||||
test_name='test_openvswitch_db_present_updates_key')
|
test_name='test_openvswitch_db_present_updates_key')
|
||||||
|
|
||||||
def test_openvswitch_db_present_missing_key_on_map(self):
|
def test_openvswitch_db_present_missing_key_on_map(self):
|
||||||
set_module_args(dict(state='present',
|
set_module_args(dict(state='present',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='other_config',
|
col='other_config',
|
||||||
value='False'))
|
value='false'))
|
||||||
self.execute_module(
|
self.execute_module(
|
||||||
failed=True,
|
failed=True,
|
||||||
test_name='test_openvswitch_db_present_idempotent')
|
test_name='test_openvswitch_db_present_missing_key_on_map')
|
||||||
|
|
||||||
def test_openvswitch_db_present_stp_enable(self):
|
def test_openvswitch_db_present_stp_enable(self):
|
||||||
set_module_args(dict(state='present',
|
set_module_args(dict(state='present',
|
||||||
table='Bridge', record='test-br',
|
table='Bridge', record='test-br',
|
||||||
col='stp_enable',
|
col='stp_enable',
|
||||||
value='False'))
|
value='true'))
|
||||||
self.execute_module(changed=True,
|
self.execute_module(changed=True,
|
||||||
test_name='test_openvswitch_db_present_stp_enable')
|
test_name='test_openvswitch_db_present_stp_enable')
|
||||||
|
|
Loading…
Reference in a new issue