This patch adds the task command which allows to perform the following operations on tasks in Fuel: - List tasks task list - Show details about a task task show Blueprint: re-thinking-fuel-client Change-Id: I3994ddc52f7454114b81ba9aa1ee22e6225fe477
47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2015 Mirantis, Inc.
|
|
#
|
|
# 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 requests_mock as rm
|
|
|
|
import fuelclient
|
|
from fuelclient.tests.lib import test_api
|
|
|
|
|
|
class TestTaskFacade(test_api.BaseLibTest):
|
|
|
|
def setUp(self):
|
|
super(TestTaskFacade, self).setUp()
|
|
|
|
self.version = 'v1'
|
|
self.res_uri = '/api/{version}/tasks/'.format(version=self.version)
|
|
|
|
self.client = fuelclient.get_client('task', self.version)
|
|
|
|
def test_node_list(self):
|
|
self.client.get_all()
|
|
|
|
self.assertEqual(rm.GET, self.session_adapter.last_request.method)
|
|
self.assertEqual(self.res_uri, self.session_adapter.last_request.path)
|
|
|
|
def test_node_show(self):
|
|
task_id = 42
|
|
expected_uri = self.get_object_uri(self.res_uri, task_id)
|
|
|
|
self.client.get_by_id(task_id)
|
|
|
|
self.assertEqual(rm.GET, self.session_adapter.last_request.method)
|
|
self.assertEqual(expected_uri, self.session_adapter.last_request.path)
|