~ubuntu-branches/ubuntu/trusty/python-keystoneclient/trusty-proposed

« back to all changes in this revision

Viewing changes to keystoneclient/tests/v3/test_services.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2013-11-14 10:51:32 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20131114105132-p1o428l7fclasv9e
Tags: 1:0.4.1-0ubuntu1
[ Adam Gandelman ]
* debian/patches: Refreshed.
* debian/patches/use-mox-dependency.patch: Use mox instead of mox3
  dependency.

[ Chuck Short ]
* New upstream release.
* debian/control:
  - open icehouse release.
  - Dropped python-d2to1 and python-httplib2 dependency.
* debian/patches/skip-tests-ubuntu.patch: Dropped no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 
2
 
 
3
# Licensed under the Apache License, Version 2.0 (the "License"); you may
 
4
# not use this file except in compliance with the License. You may obtain
 
5
# a copy of the License at
 
6
#
 
7
#      http://www.apache.org/licenses/LICENSE-2.0
 
8
#
 
9
# Unless required by applicable law or agreed to in writing, software
 
10
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
11
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
12
# License for the specific language governing permissions and limitations
 
13
# under the License.
 
14
 
 
15
import uuid
 
16
 
 
17
from keystoneclient.tests.v3 import utils
 
18
from keystoneclient.v3 import services
 
19
 
 
20
 
 
21
class ServiceTests(utils.TestCase, utils.CrudTests):
 
22
    def setUp(self):
 
23
        super(ServiceTests, self).setUp()
 
24
        self.key = 'service'
 
25
        self.collection_key = 'services'
 
26
        self.model = services.Service
 
27
        self.manager = self.client.services
 
28
 
 
29
    def new_ref(self, **kwargs):
 
30
        kwargs = super(ServiceTests, self).new_ref(**kwargs)
 
31
        kwargs.setdefault('name', uuid.uuid4().hex)
 
32
        kwargs.setdefault('type', uuid.uuid4().hex)
 
33
        kwargs.setdefault('enabled', True)
 
34
        return kwargs