def test_update_description_idempotent(self):
        set_module_args(dict(
            name='test-route',
            password='******',
            server='localhost',
            user='******',
            state='present',
            description='asdasd'
        ))
        bigip_static_route._CONNECTION = True

        module = F5AnsibleModule()
        obj = ModuleManager(module=module)

        # Override methods to force specific logic in the module to happen
        current = load_fixture('load_net_route_description.json')
        obj.exists = lambda: True
        obj.update_on_device = lambda x: True
        obj.exit_json = lambda x: True
        obj.read_current_from_device = lambda x: current
        results = obj.apply_changes()

        # There is no assert for the description, because it should
        # not have changed
        assert results['changed'] is False
        assert results['partition'] == 'Common'
    def test_delete(self):
        set_module_args(dict(
            name='test-route',
            password='******',
            server='localhost',
            user='******',
            state='absent'
        ))
        bigip_static_route._CONNECTION = True

        module = F5AnsibleModule()
        obj = ModuleManager(module=module)

        # Override methods to force specific logic in the module to happen
        obj.exists = Mock()
        obj.exists.side_effect = [True, False]
        obj.remove_from_device = lambda: True
        obj.exit_json = lambda x: True
        results = obj.apply_changes()

        assert results['changed'] is True
        assert 'description' not in results
    def test_create_route_to_pool(self):
        set_module_args(dict(
            name='test-route',
            password='******',
            server='localhost',
            user='******',
            state='present',
            destination='10.10.10.10',
            pool="test-pool"
        ))
        bigip_static_route._CONNECTION = True

        module = F5AnsibleModule()
        obj = ModuleManager(module=module)

        # Override methods to force specific logic in the module to happen
        obj.exists = lambda: False
        obj.create_on_device = lambda x: True
        obj.exit_json = lambda x: True
        results = obj.apply_changes()

        assert results['changed'] is True
        assert results['pool'] == 'test-pool'
        assert results['partition'] == 'Common'