File: test_document_types.py

package info (click to toggle)
awscli 2.31.35-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156,692 kB
  • sloc: python: 213,816; xml: 14,082; makefile: 189; sh: 178; javascript: 8
file content (521 lines) | stat: -rw-r--r-- 17,812 bytes parent folder | download
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
#     http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file 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 copy
import json
import os

from botocore.loaders import Loader

from awscli.testutils import (
    BaseAWSCommandParamsTest,
    BaseAWSHelpOutputTest,
    FileCreator,
    create_clidriver,
)

# NOTE: Typically, the functional tests reuse preexisting models. However
# because document types was released without any service model using them,
# we are using through a fake service model to fully test document type
# behavior.
DOCTYPE_MODEL = {
    "version": "2.0",
    "metadata": {
        "apiVersion": "2011-06-15",
        "endpointPrefix": "doctype",
        "protocol": "json",
        "jsonVersion": "1.1",
        "serviceAbbreviation": "AWS DocType",
        "serviceFullName": "AWS DocType",
        "serviceId": "DocType",
        "signatureVersion": "v4",
        "targetPrefix": "DocType",
        "uid": "doctype-2011-06-15",
    },
    "operations": {
        "DescribeResource": {
            "name": "DescribeResource",
            "http": {"method": "POST", "requestUri": "/"},
            "input": {"shape": "DescribeResourceShape"},
            "output": {"shape": "DescribeResourceShape"},
            "errors": [],
            "documentation": "<p>Describes resource.</p>",
        }
    },
    "shapes": {
        "DescribeResourceShape": {
            "type": "structure",
            "members": {
                "DocTypeParam": {"shape": "DocType"},
                "ModeledMixedWithDocTypeParam": {"shape": "Mixed"},
                "ListOfDocTypesParam": {"shape": "ListOfDocTypes"},
                "MapOfDocTypesParam": {"shape": "MapOfDocTypes"},
                "NestedListsOfDocTypesParam": {
                    "shape": "NestedListsOfDocTypes"
                },
            },
        },
        "DocType": {
            "type": "structure",
            "members": {},
            "document": True,
            "documentation": "<p>Document type</p>",
        },
        "ListOfDocTypes": {"type": "list", "member": {"shape": "DocType"}},
        "MapOfDocTypes": {
            "type": "map",
            "key": {"shape": "String"},
            "value": {"shape": "DocType"},
        },
        "NestedListsOfDocTypes": {
            "type": "list",
            "member": {"shape": "ListOfDocTypes"},
        },
        "Mixed": {
            "type": "structure",
            "members": {
                "DocType": {"shape": "DocType"},
                "StringMember": {"shape": "String"},
                "ListOfDocTypes": {"shape": "ListOfDocTypes"},
                "MapOfDocTypes": {"shape": "MapOfDocTypes"},
                "NestedListsOfDocTypes": {"shape": "NestedListsOfDocTypes"},
            },
            "documentation": (
                "<p>Structure with modeled and document type parameter</p>"
            ),
        },
        "String": {"type": "string"},
    },
}


def _add_doctype_service_model(file_creator, session, model=None):
    if model is None:
        model = DOCTYPE_MODEL
    file_creator.create_file(
        os.path.join('doctype', '2011-06-15', 'service-2.json'),
        json.dumps(model),
    )
    data_path = session.get_config_variable('data_path').split(os.pathsep)
    loader = Loader()
    loader.search_paths.extend(data_path + [file_creator.rootdir])
    session.register_component('data_loader', loader)


class TestDocumentTypeIO(BaseAWSCommandParamsTest):
    def setUp(self):
        super(TestDocumentTypeIO, self).setUp()
        self.files = FileCreator()
        _add_doctype_service_model(self.files, self.driver.session)

    def tearDown(self):
        super(TestDocumentTypeIO, self).tearDown()
        self.files.remove_all()

    def assert_raises_shorthand_syntax_error(
        self, cmdline, stderr_contains=None
    ):
        _, stderr, _ = self.run_cmd(cmdline, expected_rc=252)
        if stderr_contains:
            self.assertIn(stderr_contains, stderr)

    def nested_doctype_shorthand_error(self, parameter_name, member_name):
        return (
            "Error parsing parameter '%s': Shorthand syntax does not support "
            "document types. Use JSON input for top-level argument to specify "
            "nested parameter: %s" % (parameter_name, member_name)
        )

    def test_can_provide_json_for_doc_type(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--doc-type-param',
            '{"foo":"bar"}',
        ]
        self.assert_params_for_cmd(
            cmdline, params={'DocTypeParam': {"foo": "bar"}}
        )

    def test_can_provide_json_for_doc_type_with_scalar_value(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--doc-type-param',
            '"json-string"',
        ]
        self.assert_params_for_cmd(
            cmdline, params={'DocTypeParam': 'json-string'}
        )

    def test_can_provide_json_for_doc_type_in_list(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--list-of-doc-types-param',
            '["foo", {"bar": "baz"}, 1, null]',
        ]
        self.assert_params_for_cmd(
            cmdline,
            params={'ListOfDocTypesParam': ["foo", {"bar": "baz"}, 1, None]},
        )

    def test_can_provide_json_for_doc_type_in_map(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--map-of-doc-types-param',
            '{"key1": "foo", "key2": {"bar": "baz"}, "key3": 1}',
        ]
        self.assert_params_for_cmd(
            cmdline,
            params={
                'MapOfDocTypesParam': {
                    "key1": "foo",
                    "key2": {"bar": "baz"},
                    "key3": 1,
                }
            },
        )

    def test_can_provide_json_for_doc_type_in_nested_list(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--nested-lists-of-doc-types-param',
            '[["foo", {"bar": "baz"}, 1, null]]',
        ]
        self.assert_params_for_cmd(
            cmdline,
            params={
                'NestedListsOfDocTypesParam': [
                    ["foo", {"bar": "baz"}, 1, None]
                ]
            },
        )

    def test_can_provide_json_for_nested_doc_type(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--modeled-mixed-with-doc-type-param',
            (
                '{'
                '   "DocType": {"foo": "bar"},'
                '   "ListOfDocTypes": ["foo", {"bar": "baz"}, 1, null],'
                '   "MapOfDocTypes": {'
                '       "key1": "foo", "key2": {"bar": "baz"}, "key3": 1},'
                '   "NestedListsOfDocTypes":[["foo", {"bar": "baz"}, 1, null]]'
                '}'
            ),
        ]
        self.assert_params_for_cmd(
            cmdline,
            params={
                'ModeledMixedWithDocTypeParam': {
                    'DocType': {'foo': 'bar'},
                    'ListOfDocTypes': ["foo", {"bar": "baz"}, 1, None],
                    'MapOfDocTypes': {
                        "key1": "foo",
                        "key2": {"bar": "baz"},
                        "key3": 1,
                    },
                    'NestedListsOfDocTypes': [
                        ["foo", {"bar": "baz"}, 1, None]
                    ],
                }
            },
        )

    def test_shorthand_not_supported_for_doc_type_argument(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--doc-type-param',
            'foo=1',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=(
                "Error parsing parameter '--doc-type-param': Invalid JSON"
            ),
        )

    def test_shorthand_not_supported_for_doc_type_in_list(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--list-of-doc-types-param',
            'bar,1,null',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=(
                "Error parsing parameter '--list-of-doc-types-param': "
                "Invalid JSON"
            ),
        )

    def test_shorthand_not_supported_for_doc_type_in_map(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--map-of-doc-types-param',
            'key1={foo=bar}',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=(
                "Error parsing parameter '--map-of-doc-types-param': "
                "Invalid JSON"
            ),
        )

    def test_shorthand_not_supported_for_doc_type_in_nested_list(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--nested-lists-of-doc-types-param',
            '[bar,1,null],[foo,2]',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=(
                "Error parsing parameter '--nested-lists-of-doc-types-param': "
                "Invalid JSON"
            ),
        )

    def test_shorthand_not_supported_for_nested_doc_type(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--modeled-mixed-with-doc-type-param',
            'DocType={foo=bar}',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=self.nested_doctype_shorthand_error(
                '--modeled-mixed-with-doc-type-param', member_name='DocType'
            ),
        )

    def test_shorthand_not_supported_for_nested_doc_type_in_list(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--modeled-mixed-with-doc-type-param',
            'ListOfDocTypes=[{foo=bar}]',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=self.nested_doctype_shorthand_error(
                '--modeled-mixed-with-doc-type-param',
                member_name='ListOfDocTypes',
            ),
        )

    def test_shorthand_not_supported_for_nested_doc_type_in_map(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--modeled-mixed-with-doc-type-param',
            'MapOfDocTypes={key={foo=bar}}',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=self.nested_doctype_shorthand_error(
                '--modeled-mixed-with-doc-type-param',
                member_name='MapOfDocTypes',
            ),
        )

    def test_shorthand_not_supported_for_nested_doc_type_in_nested_list(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--modeled-mixed-with-doc-type-param',
            'NestedListsOfDocTypes=[[{foo=bar}]]',
        ]
        self.assert_raises_shorthand_syntax_error(
            cmdline,
            stderr_contains=self.nested_doctype_shorthand_error(
                '--modeled-mixed-with-doc-type-param',
                member_name='NestedListsOfDocTypes',
            ),
        )

    def test_can_use_shorthand_if_only_modeled_members_used(self):
        cmdline = [
            'doctype',
            'describe-resource',
            '--modeled-mixed-with-doc-type-param',
            'StringMember=str-val',
        ]
        self.assert_params_for_cmd(
            cmdline,
            params={
                'ModeledMixedWithDocTypeParam': {
                    'StringMember': 'str-val',
                }
            },
        )

    def test_can_generate_cli_skeleton(self):
        cmdline = ['doctype', 'describe-resource', '--generate-cli-skeleton']
        stdout, _, _ = self.run_cmd(cmdline)
        skeleton_output = json.loads(stdout)
        self.assertEqual(
            skeleton_output,
            {
                'DocTypeParam': {},
                'ModeledMixedWithDocTypeParam': {
                    'DocType': {},
                    'StringMember': '',
                    'ListOfDocTypes': [{}],
                    'MapOfDocTypes': {'KeyName': {}},
                    'NestedListsOfDocTypes': [[{}]],
                },
                'ListOfDocTypesParam': [{}],
                'MapOfDocTypesParam': {'KeyName': {}},
                'NestedListsOfDocTypesParam': [[{}]],
            },
        )


class TestDocTypesHelp(BaseAWSHelpOutputTest):
    def setUp(self):
        super(TestDocTypesHelp, self).setUp()
        self.files = FileCreator()
        _add_doctype_service_model(self.files, self.driver.session)

    def tearDown(self):
        super(TestDocTypesHelp, self).tearDown()
        self.files.remove_all()

    def run_help(self):
        self.driver.main(['doctype', 'describe-resource', 'help'])

    def filter_params_in_model(self, include_params):
        model = copy.deepcopy(DOCTYPE_MODEL)
        request_members = model['shapes']['DescribeResourceShape']['members']
        for request_member in list(request_members):
            if request_member not in include_params:
                del request_members[request_member]

        self.driver = create_clidriver()
        _add_doctype_service_model(self.files, self.driver.session, model)

    def assert_has_document_value_in_json_syntax(self, parameter):
        self.assert_text_order(
            'JSON Syntax::', '{...}', starting_from=parameter
        )

    def assert_no_shorthand_syntax(self):
        self.assert_not_contains('Shorthand Sytanx::')

    def test_includes_note_about_document_types(self):
        self.run_help()
        self.assert_contains('uses document type values')

    def test_does_not_include_note_if_no_document_types(self):
        self.filter_params_in_model([])
        self.assert_not_contains('uses document type values')

    def test_annotates_as_document_type_for_input(self):
        self.run_help()
        self.assert_contains('``--doc-type-param`` (document)')

    def test_annotates_as_document_type_for_output(self):
        self.run_help()
        self.assert_contains('DocTypeParam -> (document)')

    def test_json_syntax_for_doc_type_argument(self):
        self.filter_params_in_model(include_params=['DocTypeParam'])
        self.run_help()
        self.assert_has_document_value_in_json_syntax(
            parameter='--doc-type-param'
        )

    def test_json_syntax_for_doc_type_in_list(self):
        self.filter_params_in_model(include_params=['ListOfDocTypesParam'])
        self.run_help()
        self.assert_has_document_value_in_json_syntax(
            parameter='--list-of-doc-types-param'
        )

    def test_json_syntax_for_doc_type_in_map(self):
        self.filter_params_in_model(include_params=['MapOfDocTypesParam'])
        self.run_help()
        self.assert_has_document_value_in_json_syntax(
            parameter='--map-of-doc-types-param'
        )

    def test_json_syntax_for_doc_type_in_nested_list(self):
        self.filter_params_in_model(
            include_params=['NestedListsOfDocTypesParam']
        )
        self.run_help()
        self.assert_has_document_value_in_json_syntax(
            parameter='--nested-lists-of-doc-types-param'
        )

    def test_json_syntax_for_nested_doc_type(self):
        self.filter_params_in_model(
            include_params=['ModeledMixedWithDocTypeParam']
        )
        self.run_help()
        self.assert_text_order(
            'JSON Syntax::',
            '"DocType": {...},',
            '"ListOfDocTypes": [',
            '"MapOfDocTypes": {"string": {...}',
            '"NestedListsOfDocTypes": [',
            starting_from='--modeled-mixed-with-doc-type-param',
        )

    def test_shorthand_not_documented_for_doc_type_argument(self):
        self.filter_params_in_model(include_params=['DocTypeParam'])
        self.run_help()
        self.assert_no_shorthand_syntax()

    def test_shorthand_not_documented_for_doc_type_in_list(self):
        self.filter_params_in_model(include_params=['ListOfDocTypesParam'])
        self.run_help()
        self.assert_no_shorthand_syntax()

    def test_shorthand_not_documented_for_doc_type_in_map(self):
        self.filter_params_in_model(include_params=['MapOfDocTypesParam'])
        self.run_help()
        self.assert_no_shorthand_syntax()

    def test_shorthand_not_documented_for_doc_type_in_nested_list(self):
        self.filter_params_in_model(
            include_params=['NestedListsOfDocTypesParam']
        )
        self.run_help()
        self.assert_no_shorthand_syntax()

    def test_documents_shorthand_for_only_modeled_members(self):
        self.filter_params_in_model(
            include_params=['ModeledMixedWithDocTypeParam']
        )
        self.run_help()
        self.assert_text_order(
            'Shorthand Syntax::',
            'StringMember=string',
            starting_from='--modeled-mixed-with-doc-type-param',
        )
        self.assert_not_contains('DocTypeParam=')
        self.assert_not_contains('ListOfDocTypesParam=')
        self.assert_not_contains('MapOfDocTypesParam=')
        self.assert_not_contains('NestedListsOfDocTypesParam=')