Files
deb-python-fuelclient/fuelclient/tests/lib/test_node.py
Roman Prykhodchenko 9ed2ced330 Add node command
This patch adds the node command which allows to perform
the following operations on nodes in Fuel:

 - List nodes
   node list
 - Show details about a node
   node show

Blueprint: re-thinking-fuel-client
Change-Id: I598f82620223200eda0e31d9e75588b65e6182bc
2015-03-19 15:29:40 +01:00

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 TestNodeFacade(test_api.BaseLibTest):
def setUp(self):
super(TestNodeFacade, self).setUp()
self.version = 'v1'
self.res_uri = '/api/{version}/nodes/'.format(version=self.version)
self.client = fuelclient.get_client('node', 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):
node_id = 42
expected_uri = self.get_object_uri(self.res_uri, node_id)
self.client.get_by_id(node_id)
self.assertEqual(rm.GET, self.session_adapter.last_request.method)
self.assertEqual(expected_uri, self.session_adapter.last_request.path)