144 lines
6.0 KiB
Python
144 lines
6.0 KiB
Python
# Copyright (c) 2014 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 pecan
|
|
from webtest import app
|
|
|
|
from poppy.transport.pecan.controllers import base as c_base
|
|
from tests.functional.transport.pecan import base
|
|
|
|
|
|
class ServiceControllerTest(base.FunctionalTest):
|
|
|
|
def test_get_all(self):
|
|
response = self.app.get('/v1.0/0001/services', params={
|
|
"marker": 2,
|
|
"limit": 3
|
|
})
|
|
|
|
self.assertEqual(200, response.status_code)
|
|
|
|
def test_get_one(self):
|
|
response = self.app.get('/v1.0/0001/services/fake_service_name')
|
|
|
|
self.assertEqual(200, response.status_code)
|
|
|
|
def test_create(self):
|
|
# create with errorenous data: invalid json data
|
|
self.assertRaises(app.AppError, self.app.put,
|
|
'/v1.0/0001/services/fake_service_name_2',
|
|
params="{", headers={
|
|
"Content-Type": "application/json"
|
|
})
|
|
|
|
# create with errorenous data
|
|
self.assertRaises(app.AppError, self.app.put,
|
|
'/v1.0/0001/services/fake_service_name_2',
|
|
params=json.dumps({
|
|
"domain": "www.mytest.com"
|
|
}), headers={
|
|
"Content-Type": "application/json"
|
|
})
|
|
|
|
# create with good data
|
|
response = self.app.put('/v1.0/0001/services/fake_service_name_2',
|
|
params=json.dumps({
|
|
"domains": [
|
|
{"domain": "www.mywebsite.com"},
|
|
{"domain": "blog.mywebsite.com"},
|
|
],
|
|
"origins": [{"origin": "mywebsite.com",
|
|
"port": 80,
|
|
"ssl": False},
|
|
{"origin": "mywebsite.com",
|
|
}],
|
|
"caching": [{"name": "default",
|
|
"ttl": 3600},
|
|
{"name": "home",
|
|
"ttl": 17200,
|
|
"rules": [
|
|
{"name": "index",
|
|
"request_url":
|
|
"/index.htm"}]},
|
|
{"name": "images",
|
|
"ttl": 12800,
|
|
"rules": [
|
|
{"name": "images",
|
|
"request_url": "*.png"}]}
|
|
]}),
|
|
headers={"Content-Type": "application/json"})
|
|
self.assertEqual(200, response.status_code)
|
|
|
|
def test_update(self):
|
|
# update with erroneous data
|
|
self.assertRaises(app.AppError, self.app.patch,
|
|
'/v1.0/0001/services/fake_service_name_3',
|
|
params=json.dumps({
|
|
"origins": [
|
|
{
|
|
# missing "origin" here
|
|
"port": 80,
|
|
"ssl": False
|
|
}
|
|
]
|
|
}), headers={
|
|
"Content-Type": "application/json"
|
|
})
|
|
|
|
# update with good data
|
|
response = self.app.patch('/v1.0/0001/services/fake_service_name_3',
|
|
params=json.dumps({
|
|
"origins": [
|
|
{
|
|
"origin": "44.33.22.11",
|
|
"port": 80,
|
|
"ssl": False
|
|
}
|
|
]
|
|
}), headers={
|
|
"Content-Type": "application/json"
|
|
})
|
|
self.assertEqual(200, response.status_code)
|
|
|
|
def test_patch_non_exist(self):
|
|
# This is for coverage 100%
|
|
self.assertRaises(app.AppError, self.app.patch, "/v1.0/0001",
|
|
headers={
|
|
"Content-Type": "application/json"
|
|
})
|
|
|
|
self.assertRaises(app.AppError, self.app.patch,
|
|
"/v1.0/01234/123",
|
|
headers={
|
|
"Content-Type": "application/json"
|
|
})
|
|
|
|
class FakeController(c_base.Controller):
|
|
|
|
@pecan.expose("json")
|
|
def patch_all(self):
|
|
return "Hello World!"
|
|
|
|
self.test_fake_controller = FakeController(None)
|
|
patch_ret_val = self.test_fake_controller._handle_patch('patch', '')
|
|
self.assertTrue(len(patch_ret_val) == 2)
|
|
|
|
def test_delete(self):
|
|
response = self.app.delete('/v1.0/0001/services/fake_service_name_4')
|
|
|
|
self.assertEqual(200, response.status_code)
|