freezer-tempest-plugin/freezer_tempest_plugin/tests/freezer_api/api/test_api_actions.py

217 lines
8.3 KiB
Python

# (C) Copyright 2016 Hewlett Packard Enterprise Development Company LP
#
# 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.
from tempest.lib import decorators
from tempest.lib import exceptions
from oslo_serialization import jsonutils as json
from freezer_tempest_plugin.tests.freezer_api.api import base
class TestFreezerApiActions(base.BaseFreezerApiTest):
@classmethod
def resource_setup(cls):
super(TestFreezerApiActions, cls).resource_setup()
@classmethod
def resource_cleanup(cls):
super(TestFreezerApiActions, cls).resource_cleanup()
@decorators.attr(type="gate")
def test_api_actions(self):
resp, response_body = self.freezer_api_client.get_actions()
self.assertEqual(200, resp.status)
resp_body_json = json.loads(response_body)
self.assertIn('actions', resp_body_json)
actions = resp_body_json['actions']
self.assertEqual(actions, [])
@decorators.attr(type="gate")
def test_api_actions_get_limit(self):
# limits > 0 should return successfully
for valid_limit in [2, 1]:
resp, body = self.freezer_api_client.get_actions(limit=valid_limit)
self.assertEqual(200, resp.status)
# limits <= 0 should raise a bad request error
for bad_limit in [0, -1, -2]:
self.assertRaises(exceptions.BadRequest,
self.freezer_api_client.get_actions,
limit=bad_limit)
@decorators.attr(type="gate")
def test_api_actions_get_offset(self):
# offsets >= 0 should return 200
for valid_offset in [1, 0]:
resp, body = self.freezer_api_client.get_actions(
offset=valid_offset)
self.assertEqual(200, resp.status)
# offsets < 0 should return 400
for bad_offset in [-1, -2]:
self.assertRaises(exceptions.BadRequest,
self.freezer_api_client.get_actions,
offset=bad_offset)
@decorators.attr(type="gate")
def test_api_actions_post(self):
Action = {
'freezer_action':
{
'action': 'backup',
'mode': 'fs',
'src_file': '/dev/null',
'backup_name': 'test freezer api actions',
'container': 'test_freezer_api_actions_container',
'max_backup_level': 1,
'always_backup_level': 0,
'no_incremental': True,
'encrypt_pass_file': '/dev/null',
'log_file': '/dev/null',
'hostname': False,
'max_cpu_priority': False
}
}
# Create the action with POST
resp, response_body = self.freezer_api_client.post_actions(Action)
self.assertEqual(201, resp.status)
self.assertIn('action_id', response_body)
action_id = response_body['action_id']
# Check that the action has the correct values
resp, response_body = self.freezer_api_client.get_actions(action_id)
self.assertEqual(200, resp.status)
resp_body_json = json.loads(response_body)
freezer_action_json = resp_body_json['freezer_action']
self.assertIn('backup_name', freezer_action_json)
backup_name = freezer_action_json['backup_name']
self.assertEqual('test freezer api actions', backup_name)
self.assertIn('container', freezer_action_json)
container = freezer_action_json['container']
self.assertEqual('test_freezer_api_actions_container', container)
self.assertIn('no_incremental', freezer_action_json)
no_incremental = freezer_action_json['no_incremental']
self.assertEqual(True, no_incremental)
self.assertIn('max_backup_level', freezer_action_json)
max_backup_level = freezer_action_json['max_backup_level']
self.assertEqual(1, max_backup_level)
self.assertIn('hostname', freezer_action_json)
hostname = freezer_action_json['hostname']
self.assertEqual(False, hostname)
# self.assertIn('_version', response_body)
# _version = resp_body_json['_version']
# self.assertEqual(1, _version)
self.assertIn('action', freezer_action_json)
action = freezer_action_json['action']
self.assertEqual('backup', action)
self.assertIn('src_file', freezer_action_json)
src_file = freezer_action_json['src_file']
self.assertEqual('/dev/null', src_file)
self.assertIn('always_backup_level', freezer_action_json)
always_backup_level = freezer_action_json['always_backup_level']
self.assertEqual(0, always_backup_level)
self.assertIn('mode', freezer_action_json)
mode = freezer_action_json['mode']
self.assertEqual('fs', mode)
self.assertIn('encrypt_pass_file', freezer_action_json)
encrypt_pass_file = freezer_action_json['encrypt_pass_file']
self.assertEqual('/dev/null', encrypt_pass_file)
self.assertIn('max_cpu_priority', freezer_action_json)
max_cpu_priority = freezer_action_json['max_cpu_priority']
self.assertEqual(False, max_cpu_priority)
self.assertIn('user_id', response_body)
self.assertIn('log_file', freezer_action_json)
log_file = freezer_action_json['log_file']
self.assertEqual('/dev/null', log_file)
self.assertIn('action_id', response_body)
action_id_in_resp_body = resp_body_json['action_id']
self.assertEqual(action_id, action_id_in_resp_body)
# Update the action backup_name with POST
Action['freezer_action']['backup_name'] = \
'test freezer api actions update with post'
resp, response_body = self.freezer_api_client.post_actions(
Action, action_id)
self.assertEqual(201, resp.status)
# self.assertIn('version', response_body)
# version = response_body['version']
# self.assertEqual(2, version)
self.assertIn('action_id', response_body)
action_id_in_resp_body = response_body['action_id']
self.assertEqual(action_id, action_id_in_resp_body)
resp, response_body = self.freezer_api_client.get_actions(action_id)
self.assertEqual(200, resp.status)
resp_body_json = json.loads(response_body)
freezer_action_json = resp_body_json['freezer_action']
self.assertIn('backup_name', freezer_action_json)
backup_name = freezer_action_json['backup_name']
self.assertEqual('test freezer api actions update with post',
backup_name)
# Update the action backup_name with PATCH
Action['freezer_action']['backup_name'] = \
'test freezer api actions update with patch'
resp, response_body = self.freezer_api_client.patch_actions(
Action, action_id)
self.assertEqual(200, resp.status)
# self.assertIn('version', response_body)
# version = response_body['version']
# self.assertEqual(3, version)
self.assertIn('action_id', response_body)
action_id_in_resp_body = response_body['action_id']
self.assertEqual(action_id, action_id_in_resp_body)
resp, response_body = self.freezer_api_client.get_actions(action_id)
self.assertEqual(200, resp.status)
resp_body_json = json.loads(response_body)
freezer_action_json = resp_body_json['freezer_action']
self.assertIn('backup_name', freezer_action_json)
backup_name = freezer_action_json['backup_name']
self.assertEqual('test freezer api actions update with patch',
backup_name)
# Delete the action
resp, response_body = self.freezer_api_client.delete_actions(
action_id)
self.assertEqual(204, resp.status)