
Added tests for secret create (single and two-phase), order create, and versioning to run in the devstack gate. These should both provide a base for additional tempest-based tests and also ensure that future CRs won't regress basic Barbican functionality. Added skip to version tests until blueprint fix-version-api has been implemented. Change-Id: Ib1d6bb3a2251c21b9d7d647687d0ac30ad52e4c9
47 lines
1.4 KiB
Python
47 lines
1.4 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
|
|
|
|
from functionaltests.api import base
|
|
|
|
|
|
create_order_data = {
|
|
"secret": {
|
|
"name": "secretname",
|
|
"algorithm": "AES",
|
|
"bit_length": 256,
|
|
"mode": "cbc",
|
|
"payload_content_type": "application/octet-stream",
|
|
}
|
|
}
|
|
|
|
|
|
class OrdersTestCase(base.TestCase):
|
|
|
|
def test_create_order(self):
|
|
"""Covers order creation. All of the data needed to
|
|
create the order is provided in a single POST.
|
|
"""
|
|
json_data = json.dumps(create_order_data)
|
|
project_id = self.client.project_id
|
|
resp, body = self.client.post(
|
|
'{0}/orders'.format(project_id), json_data, headers={
|
|
'content-type': 'application/json'})
|
|
self.assertEqual(resp.status, 202)
|
|
|
|
returned_data = json.loads(body)
|
|
order_ref = returned_data['order_ref']
|
|
self.assertIsNotNone(order_ref)
|