Path: blob/develop/tests/functional/s3/test_website_command.py
1567 views
#!/usr/bin/env python1# Copyright 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.2#3# Licensed under the Apache License, Version 2.0 (the "License"). You4# may not use this file except in compliance with the License. A copy of5# the License is located at6#7# http://aws.amazon.com/apache2.0/8#9# or in the "license" file accompanying this file. This file is10# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF11# ANY KIND, either express or implied. See the License for the specific12# language governing permissions and limitations under the License.13from awscli.testutils import BaseAWSCommandParamsTest14import re151617class TestWebsiteCommand(BaseAWSCommandParamsTest):1819prefix = 's3 website '2021def test_index_document(self):22cmdline = self.prefix + 's3://mybucket --index-document index.html'23result = {24'WebsiteConfiguration':25{'IndexDocument': {'Suffix': 'index.html'}},26'Bucket': u'mybucket'}2728self.assert_params_for_cmd(cmdline, result)2930def test_error_document(self):31cmdline = self.prefix + 's3://mybucket --error-document mykey'32result = {33'WebsiteConfiguration': {34'ErrorDocument': {'Key': 'mykey'}}, 'Bucket': u'mybucket'}35self.assert_params_for_cmd(cmdline, result)363738if __name__ == "__main__":39unittest.main()404142