587 lines
24 KiB
Python
587 lines
24 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import datetime
|
|
|
|
import mock
|
|
from oslo_config import cfg
|
|
from oslo_utils import timeutils
|
|
from wsme import types as wtypes
|
|
|
|
from watcher.api.controllers.v1 import action as api_action
|
|
from watcher.common import utils
|
|
from watcher.db import api as db_api
|
|
from watcher import objects
|
|
from watcher.tests.api import base as api_base
|
|
from watcher.tests.api import utils as api_utils
|
|
from watcher.tests import base
|
|
from watcher.tests.db import utils as db_utils
|
|
from watcher.tests.objects import utils as obj_utils
|
|
|
|
|
|
def post_get_test_action(**kw):
|
|
action = api_utils.action_post_data(**kw)
|
|
action_plan = db_utils.get_test_action_plan()
|
|
del action['action_plan_id']
|
|
action['action_plan_uuid'] = kw.get('action_plan_uuid',
|
|
action_plan['uuid'])
|
|
action['next'] = None
|
|
return action
|
|
|
|
|
|
class TestActionObject(base.TestCase):
|
|
|
|
def test_action_init(self):
|
|
action_dict = api_utils.action_post_data(action_plan_id=None,
|
|
next=None)
|
|
del action_dict['state']
|
|
action = api_action.Action(**action_dict)
|
|
self.assertEqual(wtypes.Unset, action.state)
|
|
|
|
|
|
class TestListAction(api_base.FunctionalTest):
|
|
|
|
def setUp(self):
|
|
super(TestListAction, self).setUp()
|
|
obj_utils.create_test_action_plan(self.context)
|
|
|
|
def test_empty(self):
|
|
response = self.get_json('/actions')
|
|
self.assertEqual([], response['actions'])
|
|
|
|
def _assert_action_fields(self, action):
|
|
action_fields = ['uuid', 'state', 'action_plan_uuid', 'action_type']
|
|
for field in action_fields:
|
|
self.assertIn(field, action)
|
|
|
|
def test_one(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
response = self.get_json('/actions')
|
|
self.assertEqual(action.uuid, response['actions'][0]["uuid"])
|
|
self._assert_action_fields(response['actions'][0])
|
|
|
|
def test_one_soft_deleted(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
action.soft_delete()
|
|
response = self.get_json('/actions',
|
|
headers={'X-Show-Deleted': 'True'})
|
|
self.assertEqual(action.uuid, response['actions'][0]["uuid"])
|
|
self._assert_action_fields(response['actions'][0])
|
|
|
|
response = self.get_json('/actions')
|
|
self.assertEqual([], response['actions'])
|
|
|
|
def test_get_one(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
response = self.get_json('/actions/%s' % action['uuid'])
|
|
self.assertEqual(action.uuid, response['uuid'])
|
|
self.assertEqual(action.action_type, response['action_type'])
|
|
self.assertEqual(action.input_parameters, response['input_parameters'])
|
|
self._assert_action_fields(response)
|
|
|
|
def test_get_one_soft_deleted(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
action.soft_delete()
|
|
response = self.get_json('/actions/%s' % action['uuid'],
|
|
headers={'X-Show-Deleted': 'True'})
|
|
self.assertEqual(action.uuid, response['uuid'])
|
|
self._assert_action_fields(response)
|
|
|
|
response = self.get_json('/actions/%s' % action['uuid'],
|
|
expect_errors=True)
|
|
self.assertEqual(404, response.status_int)
|
|
|
|
def test_detail(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
response = self.get_json('/actions/detail')
|
|
self.assertEqual(action.uuid, response['actions'][0]["uuid"])
|
|
self._assert_action_fields(response['actions'][0])
|
|
|
|
def test_detail_soft_deleted(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
action.soft_delete()
|
|
response = self.get_json('/actions/detail',
|
|
headers={'X-Show-Deleted': 'True'})
|
|
self.assertEqual(action.uuid, response['actions'][0]["uuid"])
|
|
self._assert_action_fields(response['actions'][0])
|
|
|
|
response = self.get_json('/actions/detail')
|
|
self.assertEqual([], response['actions'])
|
|
|
|
def test_detail_against_single(self):
|
|
action = obj_utils.create_test_action(self.context, next=None)
|
|
response = self.get_json('/actions/%s/detail' % action['uuid'],
|
|
expect_errors=True)
|
|
self.assertEqual(404, response.status_int)
|
|
|
|
def test_many(self):
|
|
action_list = []
|
|
for id_ in range(5):
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
response = self.get_json('/actions')
|
|
self.assertEqual(len(action_list), len(response['actions']))
|
|
uuids = [s['uuid'] for s in response['actions']]
|
|
self.assertEqual(sorted(action_list), sorted(uuids))
|
|
|
|
def test_many_with_action_plan_uuid(self):
|
|
action_plan = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
id=2,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=1)
|
|
action_list = []
|
|
for id_ in range(5):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=2,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
response = self.get_json('/actions')
|
|
self.assertEqual(len(action_list), len(response['actions']))
|
|
for action in response['actions']:
|
|
self.assertEqual(action_plan.uuid, action['action_plan_uuid'])
|
|
|
|
def test_filter_by_audit_uuid(self):
|
|
audit = obj_utils.create_test_audit(self.context,
|
|
uuid=utils.generate_uuid())
|
|
action_plan_1 = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit.id)
|
|
action_list = []
|
|
|
|
for id_ in range(3):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=action_plan_1.id,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
|
|
audit2 = obj_utils.create_test_audit(self.context,
|
|
uuid=utils.generate_uuid())
|
|
action_plan_2 = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit2.id)
|
|
|
|
for id_ in range(4, 5, 6):
|
|
obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=action_plan_2.id,
|
|
uuid=utils.generate_uuid())
|
|
|
|
response = self.get_json('/actions?audit_uuid=%s' % audit.uuid)
|
|
self.assertEqual(len(action_list), len(response['actions']))
|
|
for action in response['actions']:
|
|
self.assertEqual(action_plan_1.uuid, action['action_plan_uuid'])
|
|
|
|
def test_filter_by_action_plan_uuid(self):
|
|
audit = obj_utils.create_test_audit(self.context,
|
|
uuid=utils.generate_uuid())
|
|
action_plan_1 = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit.id)
|
|
action_list = []
|
|
|
|
for id_ in range(3):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=action_plan_1.id,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
|
|
action_plan_2 = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit.id)
|
|
|
|
for id_ in range(4, 5, 6):
|
|
obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=action_plan_2.id,
|
|
uuid=utils.generate_uuid())
|
|
|
|
response = self.get_json(
|
|
'/actions?action_plan_uuid=%s' % action_plan_1.uuid)
|
|
self.assertEqual(len(action_list), len(response['actions']))
|
|
for action in response['actions']:
|
|
self.assertEqual(action_plan_1.uuid, action['action_plan_uuid'])
|
|
|
|
response = self.get_json(
|
|
'/actions?action_plan_uuid=%s' % action_plan_2.uuid)
|
|
for action in response['actions']:
|
|
self.assertEqual(action_plan_2.uuid, action['action_plan_uuid'])
|
|
|
|
def test_details_and_filter_by_action_plan_uuid(self):
|
|
audit = obj_utils.create_test_audit(self.context,
|
|
uuid=utils.generate_uuid())
|
|
action_plan = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit.id)
|
|
|
|
for id_ in range(3):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=action_plan.id,
|
|
uuid=utils.generate_uuid())
|
|
|
|
response = self.get_json(
|
|
'/actions/detail?action_plan_uuid=%s' % action_plan.uuid)
|
|
for action in response['actions']:
|
|
self.assertEqual(action_plan.uuid, action['action_plan_uuid'])
|
|
|
|
def test_details_and_filter_by_audit_uuid(self):
|
|
audit = obj_utils.create_test_audit(self.context,
|
|
uuid=utils.generate_uuid())
|
|
action_plan = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit.id)
|
|
|
|
for id_ in range(3):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=action_plan.id,
|
|
uuid=utils.generate_uuid())
|
|
|
|
response = self.get_json(
|
|
'/actions/detail?audit_uuid=%s' % audit.uuid)
|
|
for action in response['actions']:
|
|
self.assertEqual(action_plan.uuid, action['action_plan_uuid'])
|
|
|
|
def test_filter_by_action_plan_and_audit_uuids(self):
|
|
audit = obj_utils.create_test_audit(
|
|
self.context, uuid=utils.generate_uuid())
|
|
action_plan = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=audit.id)
|
|
url = '/actions?action_plan_uuid=%s&audit_uuid=%s' % (
|
|
action_plan.uuid, audit.uuid)
|
|
response = self.get_json(url, expect_errors=True)
|
|
self.assertEqual(400, response.status_int)
|
|
|
|
def test_many_with_soft_deleted_action_plan_uuid(self):
|
|
action_plan1 = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
id=2,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=1)
|
|
action_plan2 = obj_utils.create_test_action_plan(
|
|
self.context,
|
|
id=3,
|
|
uuid=utils.generate_uuid(),
|
|
audit_id=1)
|
|
action_list = []
|
|
|
|
for id_ in range(0, 2):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=2,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
|
|
for id_ in range(2, 4):
|
|
action = obj_utils.create_test_action(
|
|
self.context, id=id_,
|
|
action_plan_id=3,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
|
|
self.delete('/action_plans/%s' % action_plan1.uuid)
|
|
|
|
response = self.get_json('/actions')
|
|
self.assertEqual(len(action_list), len(response['actions']))
|
|
for id_ in range(0, 2):
|
|
action = response['actions'][id_]
|
|
self.assertEqual(None, action['action_plan_uuid'])
|
|
|
|
for id_ in range(2, 4):
|
|
action = response['actions'][id_]
|
|
self.assertEqual(action_plan2.uuid, action['action_plan_uuid'])
|
|
|
|
def test_many_with_next_uuid(self):
|
|
action_list = []
|
|
for id_ in range(5):
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid(),
|
|
next=id_ + 1)
|
|
action_list.append(action.uuid)
|
|
response = self.get_json('/actions')
|
|
response_actions = response['actions']
|
|
for id in [0, 1, 2, 3]:
|
|
self.assertEqual(response_actions[id]['next_uuid'],
|
|
response_actions[id + 1]['uuid'])
|
|
|
|
def test_many_without_soft_deleted(self):
|
|
action_list = []
|
|
for id_ in [1, 2, 3]:
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
for id_ in [4, 5]:
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid())
|
|
action.soft_delete()
|
|
response = self.get_json('/actions')
|
|
self.assertEqual(3, len(response['actions']))
|
|
uuids = [s['uuid'] for s in response['actions']]
|
|
self.assertEqual(sorted(action_list), sorted(uuids))
|
|
|
|
def test_many_with_soft_deleted(self):
|
|
action_list = []
|
|
for id_ in [1, 2, 3]:
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid())
|
|
action_list.append(action.uuid)
|
|
for id_ in [4, 5]:
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid())
|
|
action.soft_delete()
|
|
action_list.append(action.uuid)
|
|
response = self.get_json('/actions',
|
|
headers={'X-Show-Deleted': 'True'})
|
|
self.assertEqual(5, len(response['actions']))
|
|
uuids = [s['uuid'] for s in response['actions']]
|
|
self.assertEqual(sorted(action_list), sorted(uuids))
|
|
|
|
def test_many_with_sort_key_next_uuid(self):
|
|
for id_ in range(5):
|
|
obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid(),
|
|
next=id_ + 1)
|
|
response = self.get_json('/actions/')
|
|
reference_uuids = [
|
|
s.get('next_uuid', '') for s in response['actions']
|
|
]
|
|
|
|
response = self.get_json('/actions/?sort_key=next_uuid')
|
|
|
|
self.assertEqual(5, len(response['actions']))
|
|
uuids = [(s['next_uuid'] if 'next_uuid' in s else '')
|
|
for s in response['actions']]
|
|
self.assertEqual(sorted(reference_uuids), uuids)
|
|
|
|
response = self.get_json('/actions/?sort_key=next_uuid&sort_dir=desc')
|
|
|
|
self.assertEqual(5, len(response['actions']))
|
|
uuids = [(s['next_uuid'] if 'next_uuid' in s else '')
|
|
for s in response['actions']]
|
|
self.assertEqual(sorted(reference_uuids, reverse=True), uuids)
|
|
|
|
def test_links(self):
|
|
uuid = utils.generate_uuid()
|
|
obj_utils.create_test_action(self.context, id=1, uuid=uuid)
|
|
response = self.get_json('/actions/%s' % uuid)
|
|
self.assertIn('links', response.keys())
|
|
self.assertEqual(2, len(response['links']))
|
|
self.assertIn(uuid, response['links'][0]['href'])
|
|
for l in response['links']:
|
|
bookmark = l['rel'] == 'bookmark'
|
|
self.assertTrue(self.validate_link(l['href'], bookmark=bookmark))
|
|
|
|
def test_collection_links(self):
|
|
next = -1
|
|
for id_ in range(5):
|
|
action = obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid(),
|
|
next=next)
|
|
next = action.id
|
|
response = self.get_json('/actions/?limit=3')
|
|
self.assertEqual(3, len(response['actions']))
|
|
|
|
next_marker = response['actions'][-1]['uuid']
|
|
self.assertIn(next_marker, response['next'])
|
|
|
|
def test_collection_links_default_limit(self):
|
|
cfg.CONF.set_override('max_limit', 3, 'api',
|
|
enforce_type=True)
|
|
for id_ in range(5):
|
|
obj_utils.create_test_action(self.context, id=id_,
|
|
uuid=utils.generate_uuid())
|
|
response = self.get_json('/actions')
|
|
self.assertEqual(3, len(response['actions']))
|
|
|
|
next_marker = response['actions'][-1]['uuid']
|
|
self.assertIn(next_marker, response['next'])
|
|
|
|
|
|
class TestPatch(api_base.FunctionalTest):
|
|
|
|
def setUp(self):
|
|
super(TestPatch, self).setUp()
|
|
obj_utils.create_test_action_plan(self.context)
|
|
self.action = obj_utils.create_test_action(self.context, next=None)
|
|
p = mock.patch.object(db_api.BaseConnection, 'update_action')
|
|
self.mock_action_update = p.start()
|
|
self.mock_action_update.side_effect = self._simulate_rpc_action_update
|
|
self.addCleanup(p.stop)
|
|
|
|
def _simulate_rpc_action_update(self, action):
|
|
action.save()
|
|
return action
|
|
|
|
@mock.patch('oslo_utils.timeutils.utcnow')
|
|
def test_replace_ok(self, mock_utcnow):
|
|
test_time = datetime.datetime(2000, 1, 1, 0, 0)
|
|
mock_utcnow.return_value = test_time
|
|
|
|
new_state = 'SUBMITTED'
|
|
response = self.get_json('/actions/%s' % self.action.uuid)
|
|
self.assertNotEqual(new_state, response['state'])
|
|
|
|
response = self.patch_json(
|
|
'/actions/%s' % self.action.uuid,
|
|
[{'path': '/state', 'value': new_state,
|
|
'op': 'replace'}])
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertEqual(200, response.status_code)
|
|
|
|
response = self.get_json('/actions/%s' % self.action.uuid)
|
|
self.assertEqual(new_state, response['state'])
|
|
return_updated_at = timeutils.parse_isotime(
|
|
response['updated_at']).replace(tzinfo=None)
|
|
self.assertEqual(test_time, return_updated_at)
|
|
|
|
def test_replace_non_existent_action(self):
|
|
response = self.patch_json('/actions/%s' % utils.generate_uuid(),
|
|
[{'path': '/state', 'value': 'SUBMITTED',
|
|
'op': 'replace'}],
|
|
expect_errors=True)
|
|
self.assertEqual(404, response.status_int)
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertTrue(response.json['error_message'])
|
|
|
|
def test_add_ok(self):
|
|
new_state = 'SUCCEEDED'
|
|
response = self.patch_json(
|
|
'/actions/%s' % self.action.uuid,
|
|
[{'path': '/state', 'value': new_state, 'op': 'add'}])
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertEqual(200, response.status_int)
|
|
|
|
response = self.get_json('/actions/%s' % self.action.uuid)
|
|
self.assertEqual(new_state, response['state'])
|
|
|
|
def test_add_non_existent_property(self):
|
|
response = self.patch_json(
|
|
'/actions/%s' % self.action.uuid,
|
|
[{'path': '/foo', 'value': 'bar', 'op': 'add'}],
|
|
expect_errors=True)
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertEqual(400, response.status_int)
|
|
self.assertTrue(response.json['error_message'])
|
|
|
|
def test_remove_ok(self):
|
|
response = self.get_json('/actions/%s' % self.action.uuid)
|
|
self.assertIsNotNone(response['state'])
|
|
|
|
response = self.patch_json('/actions/%s' % self.action.uuid,
|
|
[{'path': '/state', 'op': 'remove'}])
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertEqual(200, response.status_code)
|
|
|
|
response = self.get_json('/actions/%s' % self.action.uuid)
|
|
self.assertIsNone(response['state'])
|
|
|
|
def test_remove_uuid(self):
|
|
response = self.patch_json('/actions/%s' % self.action.uuid,
|
|
[{'path': '/uuid', 'op': 'remove'}],
|
|
expect_errors=True)
|
|
self.assertEqual(400, response.status_int)
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertTrue(response.json['error_message'])
|
|
|
|
def test_remove_non_existent_property(self):
|
|
response = self.patch_json(
|
|
'/actions/%s' % self.action.uuid,
|
|
[{'path': '/non-existent', 'op': 'remove'}],
|
|
expect_errors=True)
|
|
self.assertEqual(400, response.status_code)
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertTrue(response.json['error_message'])
|
|
|
|
|
|
# class TestDelete(api_base.FunctionalTest):
|
|
|
|
# def setUp(self):
|
|
# super(TestDelete, self).setUp()
|
|
# self.action = obj_utils.create_test_action(self.context, next=None)
|
|
# p = mock.patch.object(db_api.Connection, 'destroy_action')
|
|
# self.mock_action_delete = p.start()
|
|
# self.mock_action_delete.side_effect =
|
|
# self._simulate_rpc_action_delete
|
|
# self.addCleanup(p.stop)
|
|
|
|
# def _simulate_rpc_action_delete(self, action_uuid):
|
|
# action = objects.Action.get_by_uuid(self.context, action_uuid)
|
|
# action.destroy()
|
|
|
|
# def test_delete_action(self):
|
|
# self.delete('/actions/%s' % self.action.uuid)
|
|
# response = self.get_json('/actions/%s' % self.action.uuid,
|
|
# expect_errors=True)
|
|
# self.assertEqual(404, response.status_int)
|
|
# self.assertEqual('application/json', response.content_type)
|
|
# self.assertTrue(response.json['error_message'])
|
|
|
|
# def test_delete_action_not_found(self):
|
|
# uuid = utils.generate_uuid()
|
|
# response = self.delete('/actions/%s' % uuid, expect_errors=True)
|
|
# self.assertEqual(404, response.status_int)
|
|
# self.assertEqual('application/json', response.content_type)
|
|
# self.assertTrue(response.json['error_message'])
|
|
|
|
class TestDelete(api_base.FunctionalTest):
|
|
|
|
def setUp(self):
|
|
super(TestDelete, self).setUp()
|
|
obj_utils.create_test_action_plan(self.context)
|
|
self.action = obj_utils.create_test_action(self.context, next=None)
|
|
p = mock.patch.object(db_api.BaseConnection, 'update_action')
|
|
self.mock_action_update = p.start()
|
|
self.mock_action_update.side_effect = self._simulate_rpc_action_update
|
|
self.addCleanup(p.stop)
|
|
|
|
def _simulate_rpc_action_update(self, action):
|
|
action.save()
|
|
return action
|
|
|
|
@mock.patch('oslo_utils.timeutils.utcnow')
|
|
def test_delete_action(self, mock_utcnow):
|
|
test_time = datetime.datetime(2000, 1, 1, 0, 0)
|
|
mock_utcnow.return_value = test_time
|
|
self.delete('/actions/%s' % self.action.uuid)
|
|
response = self.get_json('/actions/%s' % self.action.uuid,
|
|
expect_errors=True)
|
|
self.assertEqual(404, response.status_int)
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertTrue(response.json['error_message'])
|
|
|
|
self.context.show_deleted = True
|
|
action = objects.Action.get_by_uuid(self.context, self.action.uuid)
|
|
|
|
return_deleted_at = timeutils.strtime(action['deleted_at'])
|
|
self.assertEqual(timeutils.strtime(test_time), return_deleted_at)
|
|
self.assertEqual(action['state'], 'DELETED')
|
|
|
|
def test_delete_action_not_found(self):
|
|
uuid = utils.generate_uuid()
|
|
response = self.delete('/actions/%s' % uuid, expect_errors=True)
|
|
self.assertEqual(404, response.status_int)
|
|
self.assertEqual('application/json', response.content_type)
|
|
self.assertTrue(response.json['error_message'])
|