Files
freezer-api/tests/test_versions.py
Fabrizio Vanni c86f04978e freezer api support for client registration
Adds an endpoint to the api for the registration of freezer clients

Change-Id: I1ca2a5e0021d383df70dfd001ab12967714c35bc
Implements: blueprint freezerclient-registration
2015-04-30 14:07:19 +01:00

43 lines
1.3 KiB
Python

"""Freezer swift.py related tests
Copyright 2014 Hewlett-Packard
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.
This product includes cryptographic software written by Eric Young
(eay@cryptsoft.com). This product includes software written by Tim
Hudson (tjh@cryptsoft.com).
========================================================================
"""
import unittest
from mock import Mock
import falcon
from freezer_api.api import versions
from freezer_api.api import v1
import json
class TestVersionResource(unittest.TestCase):
def setUp(self):
self.resource = versions.Resource()
self.req = Mock()
def test_on_get_return_versions(self):
self.resource.on_get(self.req, self.req)
self.assertEquals(self.req.status, falcon.HTTP_300)
expected_result = json.dumps({'versions': [v1.VERSION]})
self.assertEquals(self.req.data, expected_result)