From 8b7dce4803b17c52f6652686b0e0b2dfedbe07b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Fran=C3=A7oise?= Date: Mon, 25 Jan 2016 16:51:02 +0100 Subject: [PATCH] API Tempest tests on goals This patchset adds CRUD tests on goals via the API. Partially Implements: blueprint tempest-basic-set-up Change-Id: Ief544e738d4530bcf981824803de059ae554a059 --- .../services/infra_optim/v1/json/client.py | 21 +++++++ .../tests/api/admin/test_goal.py | 62 +++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 watcher_tempest_plugin/tests/api/admin/test_goal.py diff --git a/watcher_tempest_plugin/services/infra_optim/v1/json/client.py b/watcher_tempest_plugin/services/infra_optim/v1/json/client.py index 2e00d3dce..9a28f6ec5 100644 --- a/watcher_tempest_plugin/services/infra_optim/v1/json/client.py +++ b/watcher_tempest_plugin/services/infra_optim/v1/json/client.py @@ -233,3 +233,24 @@ class InfraOptimClientJSON(base.BaseInfraOptimClient): """ return self._patch_request('/action_plans', action_plan_uuid, patch) + + # ### GOALS ### # + + @base.handle_errors + def list_goals(self, **kwargs): + """List all existing goals""" + return self._list_request('/goals', **kwargs) + + @base.handle_errors + def list_goals_detail(self, **kwargs): + """Lists details of all existing goals""" + return self._list_request('/goals/detail', **kwargs) + + @base.handle_errors + def show_goal(self, goal): + """Gets a specific goal + + :param goal: Name of the goal + :return: Serialized goal as a dictionary + """ + return self._show_request('/goals', goal) diff --git a/watcher_tempest_plugin/tests/api/admin/test_goal.py b/watcher_tempest_plugin/tests/api/admin/test_goal.py new file mode 100644 index 000000000..913566e62 --- /dev/null +++ b/watcher_tempest_plugin/tests/api/admin/test_goal.py @@ -0,0 +1,62 @@ +# -*- encoding: utf-8 -*- +# Copyright (c) 2016 b<>com +# +# 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 __future__ import unicode_literals + +from tempest import test + +from watcher_tempest_plugin.tests.api.admin import base + + +class TestShowListGoal(base.BaseInfraOptimTest): + """Tests for goals""" + + DUMMY_GOAL = "DUMMY" + + @classmethod + def resource_setup(cls): + super(TestShowListGoal, cls).resource_setup() + + def assert_expected(self, expected, actual, + keys=('created_at', 'updated_at', 'deleted_at')): + super(TestShowListGoal, self).assert_expected( + expected, actual, keys) + + @test.attr(type='smoke') + def test_show_goal(self): + _, goal = self.client.show_goal(self.DUMMY_GOAL) + + self.assertEqual(goal['name'], self.DUMMY_GOAL) + self.assertEqual(goal['strategy'], "dummy") + + @test.attr(type='smoke') + def test_show_goal_with_links(self): + _, goal = self.client.show_goal(self.DUMMY_GOAL) + self.assertIn('links', goal.keys()) + self.assertEqual(2, len(goal['links'])) + self.assertIn(goal['name'], + goal['links'][0]['href']) + + @test.attr(type="smoke") + def test_list_goals(self): + _, body = self.client.list_goals() + self.assertIn(self.DUMMY_GOAL, + [i['name'] for i in body['goals']]) + + # Verify self links. + for goal in body['goals']: + self.validate_self_link('goals', goal['name'], + goal['links'][0]['href'])