def test_update_local_ip(self, *args): set_module_args(dict( remote_host='10.10.10.10', local_ip='2.2.2.2', server='localhost', password='******', user='******' )) current = Parameters(params=load_fixture('load_tm_sys_syslog.json')) module = AnsibleModule( argument_spec=self.spec.argument_spec, supports_check_mode=self.spec.supports_check_mode ) # Override methods in the specific type of manager mm = ModuleManager(module=module) mm.exists = Mock(return_value=True) mm.read_current_from_device = Mock(return_value=current) mm.update_on_device = Mock(return_value=True) results = mm.exec_module() assert results['changed'] is True assert results['local_ip'] == '2.2.2.2'
def test_module_parameters(self): args = dict(remote_host='10.10.10.10', remote_port=514, local_ip='1.1.1.1') p = Parameters(args) assert p.remote_host == '10.10.10.10' assert p.remote_port == 514 assert p.local_ip == '1.1.1.1'
def test_api_parameters(self): args = dict(remoteServers=[ dict(name='/Common/remotesyslog1', host='10.10.10.10', localIp='none', remotePort=514) ]) p = Parameters(args) assert len(p.remoteServers) == 1
def test_create_remote_syslog_idempotent(self, *args): set_module_args( dict(remote_host='10.10.10.10', server='localhost', password='******', user='******')) current = Parameters(load_fixture('load_tm_sys_syslog.json')) client = AnsibleF5Client( argument_spec=self.spec.argument_spec, supports_check_mode=self.spec.supports_check_mode, f5_product_name=self.spec.f5_product_name) # Override methods in the specific type of manager mm = ModuleManager(client) mm.exists = Mock(return_value=True) mm.read_current_from_device = Mock(return_value=current) results = mm.exec_module() assert results['changed'] is False