Ejemplo n.º 1
0
    def test_update_time_until_up(self, *args):
        set_module_args(
            dict(name='foo',
                 time_until_up=300,
                 partition='Common',
                 server='localhost',
                 password='******',
                 user='******'))

        current = ParametersTcp(load_fixture('load_ltm_monitor_tcp.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
        tm = TcpManager(client)
        tm.exists = Mock(return_value=True)
        tm.read_current_from_device = Mock(return_value=current)
        tm.update_on_device = Mock(return_value=True)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        results = mm.exec_module()

        assert results['changed'] is True
        assert results['time_until_up'] == 300
Ejemplo n.º 2
0
    def test_create_monitor_idempotent(self, *args):
        set_module_args(
            dict(name='foo',
                 parent='tcp',
                 send='this is a send string',
                 receive='this is a receive string',
                 ip='10.10.10.10',
                 port=80,
                 interval=20,
                 timeout=30,
                 time_until_up=60,
                 partition='Common',
                 server='localhost',
                 password='******',
                 user='******'))

        current = ParametersTcp(load_fixture('load_ltm_monitor_tcp.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
        tm = TcpManager(client)
        tm.exists = Mock(return_value=True)
        tm.read_current_from_device = Mock(return_value=current)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        results = mm.exec_module()

        assert results['changed'] is False
Ejemplo n.º 3
0
    def test_update_interval_larger_than_new_timeout(self, *args):
        set_module_args(
            dict(name='foo',
                 interval=10,
                 timeout=5,
                 partition='Common',
                 server='localhost',
                 password='******',
                 user='******'))

        current = ParametersTcp(load_fixture('load_ltm_monitor_tcp.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
        tm = TcpManager(client)
        tm.exists = Mock(return_value=True)
        tm.read_current_from_device = Mock(return_value=current)
        tm.update_on_device = Mock(return_value=True)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        with pytest.raises(F5ModuleError) as ex:
            mm.exec_module()

        assert "must be less than" in str(ex)
Ejemplo n.º 4
0
    def test_create_monitor(self, *args):
        set_module_args(
            dict(name='foo',
                 parent='parent',
                 send='this is a send string',
                 receive='this is a receive string',
                 ip='10.10.10.10',
                 port=80,
                 interval=20,
                 timeout=30,
                 time_until_up=60,
                 partition='Common',
                 server='localhost',
                 password='******',
                 user='******'))

        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
        tm = TcpManager(client)
        tm.exists = Mock(side_effect=[False, True])
        tm.create_on_device = Mock(return_value=True)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        results = mm.exec_module()

        assert results['changed'] is True
        assert results['parent'] == '/Common/parent'
Ejemplo n.º 5
0
    def test_update_time_until_up(self, *args):
        set_module_args(dict(
            name='foo',
            time_until_up=300,
            partition='Common',
            server='localhost',
            password='******',
            user='******'
        ))

        current = ParametersTcp(load_fixture('load_ltm_monitor_tcp.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
        tm = TcpManager(client)
        tm.exists = Mock(return_value=True)
        tm.read_current_from_device = Mock(return_value=current)
        tm.update_on_device = Mock(return_value=True)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        results = mm.exec_module()

        assert results['changed'] is True
        assert results['time_until_up'] == 300
Ejemplo n.º 6
0
    def test_update_interval_larger_than_new_timeout(self, *args):
        set_module_args(dict(
            name='foo',
            interval=10,
            timeout=5,
            partition='Common',
            server='localhost',
            password='******',
            user='******'
        ))

        current = ParametersTcp(load_fixture('load_ltm_monitor_tcp.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
        tm = TcpManager(client)
        tm.exists = Mock(return_value=True)
        tm.read_current_from_device = Mock(return_value=current)
        tm.update_on_device = Mock(return_value=True)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        with pytest.raises(F5ModuleError) as ex:
            mm.exec_module()

        assert "must be less than" in str(ex)
Ejemplo n.º 7
0
    def test_create_monitor_idempotent(self, *args):
        set_module_args(dict(
            name='foo',
            parent='tcp',
            send='this is a send string',
            receive='this is a receive string',
            ip='10.10.10.10',
            port=80,
            interval=20,
            timeout=30,
            time_until_up=60,
            partition='Common',
            server='localhost',
            password='******',
            user='******'
        ))

        current = ParametersTcp(load_fixture('load_ltm_monitor_tcp.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
        tm = TcpManager(client)
        tm.exists = Mock(return_value=True)
        tm.read_current_from_device = Mock(return_value=current)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        results = mm.exec_module()

        assert results['changed'] is False
Ejemplo n.º 8
0
    def test_create_monitor(self, *args):
        set_module_args(dict(
            name='foo',
            parent='parent',
            send='this is a send string',
            receive='this is a receive string',
            ip='10.10.10.10',
            port=80,
            interval=20,
            timeout=30,
            time_until_up=60,
            partition='Common',
            server='localhost',
            password='******',
            user='******'
        ))

        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
        tm = TcpManager(client)
        tm.exists = Mock(side_effect=[False, True])
        tm.create_on_device = Mock(return_value=True)

        # Override methods to force specific logic in the module to happen
        mm = ModuleManager(client)
        mm.get_manager = Mock(return_value=tm)

        results = mm.exec_module()

        assert results['changed'] is True
        assert results['parent'] == '/Common/parent'