示例#1
0
    def test_view_builder_show_extra_specs_policy(self):
        with mock.patch('cinder.context.RequestContext.authorize',
                        side_effect=[True, False]):
            view_builder = views_types.ViewBuilder()
            now = timeutils.utcnow().isoformat()
            raw_volume_type = dict(
                name='new_type',
                description='new_type_desc',
                qos_specs_id='new_id',
                is_public=True,
                deleted=False,
                created_at=now,
                updated_at=now,
                extra_specs={},
                deleted_at=None,
                id=42,
            )

            request = fakes.HTTPRequest.blank("/v2")
            output = view_builder.show(request, raw_volume_type)

            self.assertIn('volume_type', output)
            expected_volume_type = dict(
                name='new_type',
                description='new_type_desc',
                extra_specs={},
                is_public=True,
                id=42,
            )
            self.assertDictEqual(expected_volume_type, output['volume_type'])

        with mock.patch('cinder.context.RequestContext.authorize',
                        side_effect=[False, False]):
            view_builder = views_types.ViewBuilder()
            now = timeutils.utcnow().isoformat()
            raw_volume_type = dict(
                name='new_type',
                description='new_type_desc',
                qos_specs_id='new_id',
                is_public=True,
                deleted=False,
                created_at=now,
                updated_at=now,
                extra_specs={},
                deleted_at=None,
                id=42,
            )

            request = fakes.HTTPRequest.blank("/v2")
            output = view_builder.show(request, raw_volume_type)

            self.assertIn('volume_type', output)
            expected_volume_type = dict(
                name='new_type',
                description='new_type_desc',
                is_public=True,
                id=42,
            )
            self.assertDictEqual(expected_volume_type, output['volume_type'])
示例#2
0
    def test_view_builder_list(self):
        view_builder = views_types.ViewBuilder()

        now = timeutils.utcnow().isoformat()
        raw_volume_types = []
        for i in range(0, 10):
            raw_volume_types.append(
                dict(
                    name='new_type',
                    description='new_type_desc',
                    qos_specs_id='new_id',
                    is_public=True,
                    deleted=False,
                    created_at=now,
                    updated_at=now,
                    extra_specs={},
                    deleted_at=None,
                    id=42 + i
                )
            )

        request = fakes.HTTPRequest.blank("/v2")
        output = view_builder.index(request, raw_volume_types)

        self.assertIn('volume_types', output)
        for i in range(0, 10):
            expected_volume_type = dict(
                name='new_type',
                description='new_type_desc',
                is_public=True,
                id=42 + i
            )
            self.assertDictMatch(expected_volume_type,
                                 output['volume_types'][i])
示例#3
0
    def test_view_builder_show_admin(self):
        view_builder = views_types.ViewBuilder()

        now = timeutils.utcnow().isoformat()
        raw_volume_type = dict(
            name='new_type',
            description='new_type_desc',
            qos_specs_id='new_id',
            is_public=True,
            deleted=False,
            created_at=now,
            updated_at=now,
            extra_specs={},
            deleted_at=None,
            id=42,
        )

        request = fakes.HTTPRequest.blank("/v2", use_admin_context=True)
        output = view_builder.show(request, raw_volume_type)

        self.assertIn('volume_type', output)
        expected_volume_type = dict(
            name='new_type',
            description='new_type_desc',
            qos_specs_id='new_id',
            is_public=True,
            extra_specs={},
            id=42,
        )
        self.assertDictMatch(expected_volume_type, output['volume_type'])
示例#4
0
    def test_view_builder_show(self):
        view_builder = views_types.ViewBuilder()
        self.mock_authorize.return_value = False
        now = timeutils.utcnow().isoformat()
        raw_volume_type = dict(
            name='new_type',
            description='new_type_desc',
            qos_specs_id='new_id',
            is_public=True,
            deleted=False,
            created_at=now,
            updated_at=now,
            extra_specs={},
            deleted_at=None,
            id=42,
        )

        request = fakes.HTTPRequest.blank("/v2")
        output = view_builder.show(request, raw_volume_type)

        self.assertIn('volume_type', output)
        expected_volume_type = dict(
            name='new_type',
            description='new_type_desc',
            is_public=True,
            id=42,
        )
        self.assertDictEqual(expected_volume_type, output['volume_type'])