blob: ffca6ad190bddc67c8249a01c3187abe068ad4c2 [file] [log] [blame]
#!/usr/bin/env python
# encoding: utf-8
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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 mock
from gstack.helpers import read_file
from . import GStackAppTestCase
class RegionsTestCase(GStackAppTestCase):
def test_list_regions(self):
get = mock.Mock()
get.return_value.text = read_file(
'tests/data/valid_describe_regions.json')
get.return_value.status_code = 200
with mock.patch('requests.get', get):
headers = {
'authorization': 'Bearer ' + str(GStackAppTestCase.access_token)}
response = self.get(
'/compute/v1/projects/exampleproject/regions', headers=headers)
self.assert_ok(response)
def test_get_region(self):
get = mock.Mock()
get.return_value.text = read_file(
'tests/data/valid_describe_regions.json')
get.return_value.status_code = 200
with mock.patch('requests.get', get):
headers = {
'authorization': 'Bearer ' + str(GStackAppTestCase.access_token)}
response = self.get(
'/compute/v1/projects/exampleproject/regions/regionname', headers=headers)
self.assert_ok(response)
def test_get_region_region_not_found(self):
get = mock.Mock()
get.return_value.text = read_file(
'tests/data/valid_describe_regions.json')
get.return_value.status_code = 200
with mock.patch('requests.get', get):
headers = {
'authorization': 'Bearer ' + str(GStackAppTestCase.access_token)}
response = self.get(
'/compute/v1/projects/exampleproject/regions/invalidregionname', headers=headers)
self.assert_not_found(response)
assert 'The resource \'/compute/v1/projects/exampleproject/regions/invalidregionname\' was not found' \
in response.data