File: test_serialize.py

package info (click to toggle)
python-botocore 1.40.72%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128,088 kB
  • sloc: python: 76,667; xml: 14,037; javascript: 181; makefile: 157
file content (739 lines) | stat: -rw-r--r-- 26,433 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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
"""Additional tests for request serialization.

While there are compliance tests in tests/unit/protocols where
the majority of the request serialization/response parsing is tested,
this test module contains additional tests that go above and beyond the
spec.  This can happen for a number of reasons:

* We are testing python specific behavior that doesn't make sense as a
  compliance test.
* We are testing behavior that is not strictly part of the spec.  These
  may result in a a coverage gap that would otherwise be untested.

"""

import base64
import datetime
import decimal
import io
import json

import dateutil.tz

from botocore import serialize
from botocore.exceptions import ParamValidationError
from botocore.model import ServiceModel
from botocore.serialize import (
    TIMESTAMP_PRECISION_DEFAULT,
    TIMESTAMP_PRECISION_MILLISECOND,
)
from tests import unittest


class BaseModelWithBlob(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'query', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'Blob': {'shape': 'BlobType'},
                    },
                },
                'BlobType': {
                    'type': 'blob',
                },
            },
        }

    def serialize_to_request(self, input_params):
        service_model = ServiceModel(self.model)
        request_serializer = serialize.create_serializer(
            service_model.metadata['protocol']
        )
        return request_serializer.serialize_to_request(
            input_params, service_model.operation_model('TestOperation')
        )

    def assert_serialized_blob_equals(self, request, blob_bytes):
        # This method handles all the details of the base64 decoding.
        encoded = base64.b64encode(blob_bytes)
        # Now the serializers actually have the base64 encoded contents
        # as str types so we need to decode back.  We know that this is
        # ascii so it's safe to use the ascii encoding.
        expected = encoded.decode('ascii')
        self.assertEqual(request['body']['Blob'], expected)


class TestBinaryTypes(BaseModelWithBlob):
    def test_blob_accepts_bytes_type(self):
        body = b'bytes body'
        request = self.serialize_to_request(input_params={'Blob': body})
        self.assert_serialized_blob_equals(request, blob_bytes=body)

    def test_blob_accepts_str_type(self):
        body = 'ascii text'
        request = self.serialize_to_request(input_params={'Blob': body})
        self.assert_serialized_blob_equals(
            request, blob_bytes=body.encode('ascii')
        )

    def test_blob_handles_unicode_chars(self):
        body = '\u2713'
        request = self.serialize_to_request(input_params={'Blob': body})
        self.assert_serialized_blob_equals(
            request, blob_bytes=body.encode('utf-8')
        )


class TestBinaryTypesJSON(BaseModelWithBlob):
    def setUp(self):
        super().setUp()
        self.model['metadata'] = {
            'protocol': 'json',
            'apiVersion': '2014-01-01',
            'jsonVersion': '1.1',
            'targetPrefix': 'foo',
        }

    def test_blob_accepts_bytes_type(self):
        body = b'bytes body'
        request = self.serialize_to_request(input_params={'Blob': body})
        serialized_blob = json.loads(request['body'].decode('utf-8'))['Blob']
        self.assertEqual(
            base64.b64encode(body).decode('ascii'), serialized_blob
        )


class TestBinaryTypesWithRestXML(BaseModelWithBlob):
    def setUp(self):
        super().setUp()
        self.model['metadata'] = {
            'protocol': 'rest-xml',
            'apiVersion': '2014-01-01',
        }
        self.model['operations']['TestOperation']['input'] = {
            'shape': 'InputShape',
            'locationName': 'OperationRequest',
            'payload': 'Blob',
        }

    def test_blob_serialization_with_file_like_object(self):
        body = io.BytesIO(b'foobar')
        request = self.serialize_to_request(input_params={'Blob': body})
        self.assertEqual(request['body'], body)

    def test_blob_serialization_when_payload_is_unicode(self):
        # When the body is a text type, we should encode the
        # text to bytes.
        body = '\u2713'
        request = self.serialize_to_request(input_params={'Blob': body})
        self.assertEqual(request['body'], body.encode('utf-8'))

    def test_blob_serialization_when_payload_is_bytes(self):
        body = b'bytes body'
        request = self.serialize_to_request(input_params={'Blob': body})
        self.assertEqual(request['body'], body)


class TestTimestampHeadersWithRestXML(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'rest-xml', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'TimestampHeader': {
                            'shape': 'TimestampType',
                            'location': 'header',
                            'locationName': 'x-timestamp',
                        },
                    },
                },
                'TimestampType': {
                    'type': 'timestamp',
                },
            },
        }
        self.service_model = ServiceModel(self.model)

    def serialize_to_request(self, input_params):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol']
        )
        return request_serializer.serialize_to_request(
            input_params, self.service_model.operation_model('TestOperation')
        )

    def test_accepts_datetime_object(self):
        request = self.serialize_to_request(
            {
                'TimestampHeader': datetime.datetime(
                    2014, 1, 1, 12, 12, 12, tzinfo=dateutil.tz.tzutc()
                )
            }
        )
        self.assertEqual(
            request['headers']['x-timestamp'], 'Wed, 01 Jan 2014 12:12:12 GMT'
        )

    def test_accepts_iso_8601_format(self):
        request = self.serialize_to_request(
            {'TimestampHeader': '2014-01-01T12:12:12+00:00'}
        )
        self.assertEqual(
            request['headers']['x-timestamp'], 'Wed, 01 Jan 2014 12:12:12 GMT'
        )

    def test_accepts_iso_8601_format_non_utc(self):
        request = self.serialize_to_request(
            {'TimestampHeader': '2014-01-01T07:12:12-05:00'}
        )
        self.assertEqual(
            request['headers']['x-timestamp'], 'Wed, 01 Jan 2014 12:12:12 GMT'
        )

    def test_accepts_rfc_822_format(self):
        request = self.serialize_to_request(
            {'TimestampHeader': 'Wed, 01 Jan 2014 12:12:12 GMT'}
        )
        self.assertEqual(
            request['headers']['x-timestamp'], 'Wed, 01 Jan 2014 12:12:12 GMT'
        )

    def test_accepts_unix_timestamp_integer(self):
        request = self.serialize_to_request({'TimestampHeader': 1388578332})
        self.assertEqual(
            request['headers']['x-timestamp'], 'Wed, 01 Jan 2014 12:12:12 GMT'
        )


class TestTimestamps(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'query', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'Timestamp': {'shape': 'TimestampType'},
                    },
                },
                'TimestampType': {
                    'type': 'timestamp',
                },
            },
        }
        self.service_model = ServiceModel(self.model)

    def serialize_to_request(self, input_params):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol']
        )
        return request_serializer.serialize_to_request(
            input_params, self.service_model.operation_model('TestOperation')
        )

    def test_accepts_datetime_object(self):
        request = self.serialize_to_request(
            {
                'Timestamp': datetime.datetime(
                    2014, 1, 1, 12, 12, 12, tzinfo=dateutil.tz.tzutc()
                )
            }
        )
        self.assertEqual(request['body']['Timestamp'], '2014-01-01T12:12:12Z')

    def test_accepts_naive_datetime_object(self):
        request = self.serialize_to_request(
            {'Timestamp': datetime.datetime(2014, 1, 1, 12, 12, 12)}
        )
        self.assertEqual(request['body']['Timestamp'], '2014-01-01T12:12:12Z')

    def test_accepts_iso_8601_format(self):
        request = self.serialize_to_request(
            {'Timestamp': '2014-01-01T12:12:12Z'}
        )
        self.assertEqual(request['body']['Timestamp'], '2014-01-01T12:12:12Z')

    def test_accepts_timestamp_without_tz_info(self):
        # If a timezone/utc is not specified, assume they meant
        # UTC.  This is also the previous behavior from older versions
        # of botocore so we want to make sure we preserve this behavior.
        request = self.serialize_to_request(
            {'Timestamp': '2014-01-01T12:12:12'}
        )
        self.assertEqual(request['body']['Timestamp'], '2014-01-01T12:12:12Z')

    def test_microsecond_timestamp_without_tz_info(self):
        request = self.serialize_to_request(
            {'Timestamp': '2014-01-01T12:12:12.123456'}
        )
        self.assertEqual(
            request['body']['Timestamp'], '2014-01-01T12:12:12.123456Z'
        )


class TestJSONTimestampSerialization(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {
                'protocol': 'json',
                'apiVersion': '2014-01-01',
                'jsonVersion': '1.1',
                'targetPrefix': 'foo',
            },
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'Timestamp': {'shape': 'TimestampType'},
                    },
                },
                'TimestampType': {
                    'type': 'timestamp',
                },
            },
        }
        self.service_model = ServiceModel(self.model)

    def serialize_to_request(self, input_params):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol']
        )
        return request_serializer.serialize_to_request(
            input_params, self.service_model.operation_model('TestOperation')
        )

    def test_accepts_iso_8601_format(self):
        body = json.loads(
            self.serialize_to_request({'Timestamp': '1970-01-01T00:00:00'})[
                'body'
            ].decode('utf-8')
        )
        self.assertEqual(body['Timestamp'], 0)

    def test_accepts_epoch(self):
        body = json.loads(
            self.serialize_to_request({'Timestamp': '0'})['body'].decode(
                'utf-8'
            )
        )
        self.assertEqual(body['Timestamp'], 0)
        # Can also be an integer 0.
        body = json.loads(
            self.serialize_to_request({'Timestamp': 0})['body'].decode('utf-8')
        )
        self.assertEqual(body['Timestamp'], 0)

    def test_accepts_partial_iso_format(self):
        body = json.loads(
            self.serialize_to_request({'Timestamp': '1970-01-01'})[
                'body'
            ].decode('utf-8')
        )
        self.assertEqual(body['Timestamp'], 0)


class TestJSONFloatSerialization(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {
                'protocol': 'json',
                'apiVersion': '2014-01-01',
                'jsonVersion': '1.1',
                'targetPrefix': 'foo',
            },
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'Double': {'shape': 'DoubleType'},
                        'Float': {'shape': 'FloatType'},
                    },
                },
                'DoubleType': {
                    'type': 'double',
                },
                'FloatType': {
                    'type': 'float',
                },
            },
        }
        self.service_model = ServiceModel(self.model)

    def serialize_to_request(self, input_params):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol']
        )
        return request_serializer.serialize_to_request(
            input_params, self.service_model.operation_model('TestOperation')
        )

    def test_accepts_decimal_with_precision_above_floats(self):
        float_string = '0.12345678901234567890'
        float_as_float = float(
            float_string
        )  # This has less precision; it will be lost on serialization
        float_as_decimal = decimal.Decimal(float_string)
        body = json.loads(
            self.serialize_to_request({'Float': float_as_decimal})[
                'body'
            ].decode('utf-8')
        )
        self.assertEqual(decimal.Decimal(body['Float']), float_as_float)

    def test_accepts_decimal_with_precision_above_doubles(self):
        double_string = '0.12345678901234567890'
        double_as_float = float(
            double_string
        )  # This has less precision; it will be lost on serialization
        double_as_decimal = decimal.Decimal(double_string)
        body = json.loads(
            self.serialize_to_request({'Double': double_as_decimal})[
                'body'
            ].decode('utf-8')
        )
        self.assertEqual(decimal.Decimal(body['Double']), double_as_float)


class TestInstanceCreation(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'query', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'Timestamp': {'shape': 'StringTestType'},
                    },
                },
                'StringTestType': {'type': 'string', 'min': 15},
            },
        }
        self.service_model = ServiceModel(self.model)

    def assert_serialize_valid_parameter(self, request_serializer):
        valid_string = 'valid_string_with_min_15_chars'
        request = request_serializer.serialize_to_request(
            {'Timestamp': valid_string},
            self.service_model.operation_model('TestOperation'),
        )

        self.assertEqual(request['body']['Timestamp'], valid_string)

    def assert_serialize_invalid_parameter(self, request_serializer):
        invalid_string = 'short string'
        request = request_serializer.serialize_to_request(
            {'Timestamp': invalid_string},
            self.service_model.operation_model('TestOperation'),
        )

        self.assertEqual(request['body']['Timestamp'], invalid_string)

    def test_instantiate_without_validation(self):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol'], False
        )

        try:
            self.assert_serialize_valid_parameter(request_serializer)
        except ParamValidationError as e:
            self.fail(
                "Shouldn't fail serializing valid parameter without "
                f"validation: {e}"
            )

        try:
            self.assert_serialize_invalid_parameter(request_serializer)
        except ParamValidationError as e:
            self.fail(
                "Shouldn't fail serializing invalid parameter without "
                f"validation: {e}"
            )

    def test_instantiate_with_validation(self):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol'], True
        )
        try:
            self.assert_serialize_valid_parameter(request_serializer)
        except ParamValidationError as e:
            self.fail(
                "Shouldn't fail serializing invalid parameter without "
                f"validation: {e}"
            )

        with self.assertRaises(ParamValidationError):
            self.assert_serialize_invalid_parameter(request_serializer)


class TestHeaderSerialization(BaseModelWithBlob):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'rest-xml', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'ContentLength': {
                            'shape': 'Integer',
                            'location': 'header',
                            'locationName': 'Content-Length',
                        },
                    },
                },
                'Integer': {'type': 'integer'},
            },
        }
        self.service_model = ServiceModel(self.model)

    def test_always_serialized_as_str(self):
        request = self.serialize_to_request({'ContentLength': 100})
        self.assertEqual(request['headers']['Content-Length'], '100')


class TestRestXMLUnicodeSerialization(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'rest-xml', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'Foo': {'shape': 'FooShape', 'locationName': 'Foo'},
                    },
                    'payload': 'Foo',
                },
                'FooShape': {
                    'type': 'list',
                    'member': {'shape': 'StringShape'},
                },
                'StringShape': {
                    'type': 'string',
                },
            },
        }
        self.service_model = ServiceModel(self.model)

    def serialize_to_request(self, input_params):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol']
        )
        return request_serializer.serialize_to_request(
            input_params, self.service_model.operation_model('TestOperation')
        )

    def test_restxml_serializes_unicode(self):
        params = {'Foo': ['\u65e5\u672c\u8a9e\u3067\u304a\uff4b']}
        try:
            self.serialize_to_request(params)
        except UnicodeEncodeError:
            self.fail("RestXML serializer failed to serialize unicode text.")


class TestTimestampPrecisionParameter(unittest.TestCase):
    def setUp(self):
        self.model = {
            'metadata': {'protocol': 'query', 'apiVersion': '2014-01-01'},
            'documentation': '',
            'operations': {
                'TestOperation': {
                    'name': 'TestOperation',
                    'http': {
                        'method': 'POST',
                        'requestUri': '/',
                    },
                    'input': {'shape': 'InputShape'},
                }
            },
            'shapes': {
                'InputShape': {
                    'type': 'structure',
                    'members': {
                        'UnixTimestamp': {'shape': 'UnixTimestampType'},
                        'IsoTimestamp': {'shape': 'IsoTimestampType'},
                        'Rfc822Timestamp': {'shape': 'Rfc822TimestampType'},
                    },
                },
                'IsoTimestampType': {
                    'type': 'timestamp',
                    "timestampFormat": "iso8601",
                },
                'UnixTimestampType': {
                    'type': 'timestamp',
                    "timestampFormat": "unixTimestamp",
                },
                'Rfc822TimestampType': {
                    'type': 'timestamp',
                    "timestampFormat": "rfc822",
                },
            },
        }
        self.service_model = ServiceModel(self.model)

    def serialize_to_request(
        self, input_params, timestamp_precision=TIMESTAMP_PRECISION_DEFAULT
    ):
        request_serializer = serialize.create_serializer(
            self.service_model.metadata['protocol'],
            timestamp_precision=timestamp_precision,
        )
        return request_serializer.serialize_to_request(
            input_params, self.service_model.operation_model('TestOperation')
        )

    def test_second_precision_maintains_existing_behavior(self):
        test_datetime = datetime.datetime(2024, 1, 1, 12, 0, 0, 123456)
        request = self.serialize_to_request(
            {'UnixTimestamp': test_datetime, 'IsoTimestamp': test_datetime}
        )
        # To maintain backwards compatibility, unix should not include milliseconds by default
        self.assertEqual(1704110400, request['body']['UnixTimestamp'])

        # ISO always supported microseconds, so we need to continue supporting this
        self.assertEqual(
            '2024-01-01T12:00:00.123456Z',
            request['body']['IsoTimestamp'],
        )

    def test_millisecond_precision_serialization(self):
        test_datetime = datetime.datetime(2024, 1, 1, 12, 0, 0, 123456)

        # Check that millisecond precision is used when it is opted in to via the input param
        request = self.serialize_to_request(
            {'UnixTimestamp': test_datetime, 'IsoTimestamp': test_datetime},
            TIMESTAMP_PRECISION_MILLISECOND,
        )
        self.assertEqual(1704110400.123, request['body']['UnixTimestamp'])
        self.assertEqual(
            '2024-01-01T12:00:00.123Z',
            request['body']['IsoTimestamp'],
        )

    def test_millisecond_precision_with_zero_microseconds(self):
        test_datetime = datetime.datetime(2024, 1, 1, 12, 0, 0, 0)

        request = self.serialize_to_request(
            {'UnixTimestamp': test_datetime, 'IsoTimestamp': test_datetime},
            TIMESTAMP_PRECISION_MILLISECOND,
        )
        self.assertEqual(1704110400.0, request['body']['UnixTimestamp'])
        self.assertEqual(
            '2024-01-01T12:00:00.000Z',
            request['body']['IsoTimestamp'],
        )

    def test_rfc822_timestamp_always_uses_second_precision(self):
        # RFC822 format doesn't support sub-second precision.
        test_datetime = datetime.datetime(2024, 1, 1, 12, 0, 0, 123456)
        request_second = self.serialize_to_request(
            {'Rfc822Timestamp': test_datetime},
        )
        request_milli = self.serialize_to_request(
            {'Rfc822Timestamp': test_datetime}, TIMESTAMP_PRECISION_MILLISECOND
        )
        self.assertEqual(
            request_second['body']['Rfc822Timestamp'],
            request_milli['body']['Rfc822Timestamp'],
        )
        self.assertIn('2024', request_second['body']['Rfc822Timestamp'])
        self.assertIn('GMT', request_second['body']['Rfc822Timestamp'])

    def test_invalid_timestamp_precision_raises_error(self):
        with self.assertRaises(ValueError) as context:
            serialize.create_serializer(
                self.service_model.metadata['protocol'],
                timestamp_precision='invalid',
            )
        self.assertIn("Invalid timestamp precision", str(context.exception))