bdaddf8c5e
So far there is simply a CLI application called kds-api that launches the server using the reference wsgi server and a test just to make sure things are wired in correctly. blueprint: key-distribution-server Change-Id: I17f1943eb6cd71f6059606a1a099f5761896b131
23 lines
789 B
Python
23 lines
789 B
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# 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.
|
|
|
|
from keystone.tests.contrib.kds.api import base
|
|
|
|
|
|
class SimpleTest(base.BaseTestCase):
|
|
|
|
def test_simple(self):
|
|
resp = self.get("/")
|
|
self.assertEqual(resp.json['hello'], 'world')
|