poppy/tests/functional/transport/pecan/controllers/test_san_cert_config.py

80 lines
2.9 KiB
Python

# Copyright (c) 2016 Rackspace, 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 json
import uuid
import ddt
import mock
from tests.functional.transport.pecan import base
@ddt.ddt
class TestSanCertConfigController(base.FunctionalTest):
def setUp(self):
super(TestSanCertConfigController, self).setUp()
self.project_id = str(uuid.uuid1())
def test_get_san_cert_config(self):
response = self.app.get('/v1.0/admin/provider/akamai/'
'ssl_certificate/config/'
'secure1.test-san.com',
headers={'X-Project-ID': self.project_id}
)
self.assertEqual(200, response.status_code)
@ddt.file_data("data_update_san_cert_config_bad.json")
def test_update_san_cert_config_negative(self, config_data):
# create with erroneous data: invalid json data
response = self.app.post('/v1.0/admin/provider/akamai/'
'ssl_certificate/config/'
'secure1.test-san.com',
params=json.dumps(config_data),
headers={
'Content-Type': 'application/json',
'X-Project-ID': self.project_id
},
expect_errors=True)
self.assertEqual(400, response.status_code)
def test_update_san_cert_config_positive(self):
resp_mock = mock.Mock()
type(resp_mock).status_code = 200
type(resp_mock).ok = True
resp_mock.json.return_value = {
'requestList': [
{'jobId': 1234}
]
}
self.sps_api_client_mock.get.return_value = resp_mock
config_data = {
'spsId': 1345,
'enabled': False
}
response = self.app.post('/v1.0/admin/provider/akamai/'
'ssl_certificate/config/'
'secure1.test-san.com',
params=json.dumps(config_data),
headers={
'Content-Type': 'application/json',
'X-Project-ID': self.project_id
})
self.assertEqual(200, response.status_code)