File: test_acl_utils.py

package info (click to toggle)
swift 2.36.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,676 kB
  • sloc: python: 286,220; javascript: 1,059; sh: 619; pascal: 295; makefile: 81; xml: 32
file content (74 lines) | stat: -rw-r--r-- 2,908 bytes parent folder | download | duplicates (3)
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
72
73
74
# Copyright (c) 2014 OpenStack Foundation
#
# 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 swift.common.swob import Request
from swift.common.middleware.s3api import s3response
from swift.common.middleware.s3api.acl_utils import handle_acl_header

from test.unit.common.middleware.s3api import S3ApiTestCase


class TestS3ApiAclUtils(S3ApiTestCase):

    def setUp(self):
        super(TestS3ApiAclUtils, self).setUp()

    def check_generated_acl_header(self, acl, expected):
        req = Request.blank('/bucket',
                            headers={'X-Amz-Acl': acl})
        try:
            handle_acl_header(req)
        except s3response.ErrorResponse as e:
            if isinstance(e, expected):
                self.assertEqual(expected._status, e._status)
            else:
                raise
        else:
            for target in expected:
                self.assertTrue(target[0] in req.headers)
                self.assertEqual(req.headers[target[0]], target[1])

    def test_canned_acl_header(self):
        # https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#canned-acl
        self.check_generated_acl_header(
            'private',
            [('X-Container-Read', '.'), ('X-Container-Write', '.')])
        self.check_generated_acl_header(
            'public-read', [('X-Container-Read', '.r:*,.rlistings')])
        self.check_generated_acl_header(
            'public-read-write', [('X-Container-Read', '.r:*,.rlistings'),
                                  ('X-Container-Write', '.r:*')])
        self.check_generated_acl_header(
            'aws-exec-read', s3response.InvalidArgument)
        self.check_generated_acl_header(
            'authenticated-read', s3response.S3NotImplemented)
        self.check_generated_acl_header(
            'bucket-owner-read', [('X-Container-Read', '.'),
                                  ('X-Container-Write', '.')])
        self.check_generated_acl_header(
            'bucket-owner-full-control', [('X-Container-Read', '.'),
                                          ('X-Container-Write', '.')])
        self.check_generated_acl_header(
            'log-delivery-write', s3response.S3NotImplemented)

        # the 400 response is the catch all
        self.check_generated_acl_header(
            'some-non-sense', s3response.InvalidArgument)


if __name__ == '__main__':
    unittest.main()