aboutsummaryrefslogtreecommitdiffstats
path: root/keystone-moon/keystone/tests/unit/backend/legacy_drivers/resource/V8/sql.py
blob: 16acbdc3381384336856a19efdd63ca30fa99cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# 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 unittest

from keystone.resource.V8_backends import sql
from keystone.tests import unit
from keystone.tests.unit.ksfixtures import database
from keystone.tests.unit.resource import test_backends
from keystone.tests.unit import test_backend_sql


class SqlIdentityV8(test_backend_sql.SqlIdentity):
    """Test that a V8 driver still passes the same tests.

    We use the SQL driver as an example of a V8 legacy driver.

    """

    def config_overrides(self):
        super(SqlIdentityV8, self).config_overrides()
        # V8 SQL specific driver overrides
        self.config_fixture.config(
            group='resource',
            driver='keystone.resource.V8_backends.sql.Resource')
        self.use_specific_sql_driver_version(
            'keystone.resource', 'backends', 'V8_')

    def test_delete_projects_from_ids(self):
        self.skipTest('Operation not supported in v8 and earlier drivers')

    def test_delete_projects_from_ids_with_no_existing_project_id(self):
        self.skipTest('Operation not supported in v8 and earlier drivers')

    def test_delete_project_cascade(self):
        self.skipTest('Operation not supported in v8 and earlier drivers')

    def test_delete_large_project_cascade(self):
        self.skipTest('Operation not supported in v8 and earlier drivers')

    def test_hidden_project_domain_root_is_really_hidden(self):
        self.skipTest('Operation not supported in v8 and earlier drivers')


class TestSqlResourceDriverV8(unit.BaseTestCase,
                              test_backends.ResourceDriverTests):
    def setUp(self):
        super(TestSqlResourceDriverV8, self).setUp()

        version_specifiers = {
            'keystone.resource': {
                'versionless_backend': 'backends',
                'versioned_backend': 'V8_backends'
            }
        }
        self.useFixture(database.Database(version_specifiers))

        self.driver = sql.Resource()

    @unittest.skip('Null domain not allowed.')
    def test_create_project_null_domain(self):
        pass