deb-python-fuelclient/fuelclient/tests/unit/v2/lib/test_snapshot.py

62 lines
2.1 KiB
Python

# -*- coding: utf-8 -*-
#
# Copyright 2016 Vitalii Kulanov
#
# 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 fuelclient
from fuelclient.tests.unit.v2.lib import test_api
from fuelclient.tests import utils
class TestSnapshotFacade(test_api.BaseLibTest):
def setUp(self):
super(TestSnapshotFacade, self).setUp()
self.version = 'v1'
self.res_uri = '/api/{version}/logs/package'.format(
version=self.version)
self.client = fuelclient.get_client('snapshot', self.version)
self.fake_task = utils.get_fake_task()
def test_snapshot_config_download(self):
fake_resp = {'test_key': 'test_value'}
expected_uri = '/api/{version}/logs/package/config/default/'.format(
version=self.version)
matcher = self.m_request.get(expected_uri, json=fake_resp)
conf = self.client.get_default_config()
self.assertTrue(matcher.called)
self.assertEqual(conf, fake_resp)
def test_snapshot_create(self):
fake_config = {}
matcher = self.m_request.put(self.res_uri, json=self.fake_task)
self.client.create_snapshot(fake_config)
self.assertTrue(matcher.called)
self.assertEqual(fake_config, matcher.last_request.json())
def test_snapshot_create_w_config(self):
fake_config = {'key_value': 'data_value'}
matcher = self.m_request.put(self.res_uri, json=self.fake_task)
self.client.create_snapshot(fake_config)
self.assertTrue(matcher.called)
self.assertEqual(fake_config, matcher.last_request.json())