-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathtest_session.py
1237 lines (1055 loc) · 47.8 KB
/
test_session.py
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
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2017 MongoDB, Inc.
#
# 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.
"""Test the client_session module."""
from __future__ import annotations
import copy
import sys
import time
from io import BytesIO
from typing import Any, Callable, List, Set, Tuple
from pymongo.synchronous.mongo_client import MongoClient
sys.path[0:0] = [""]
from test.asynchronous import (
AsyncIntegrationTest,
AsyncPyMongoTestCase,
AsyncUnitTest,
SkipTest,
async_client_context,
unittest,
)
from test.utils import (
EventListener,
ExceptionCatchingThread,
OvertCommandListener,
async_wait_until,
wait_until,
)
from bson import DBRef
from gridfs.asynchronous.grid_file import AsyncGridFS, AsyncGridFSBucket
from pymongo import ASCENDING, AsyncMongoClient, monitoring
from pymongo.asynchronous.command_cursor import AsyncCommandCursor
from pymongo.asynchronous.cursor import AsyncCursor
from pymongo.asynchronous.helpers import anext
from pymongo.common import _MAX_END_SESSIONS
from pymongo.errors import ConfigurationError, InvalidOperation, NetworkTimeout, OperationFailure
from pymongo.operations import IndexModel, InsertOne, UpdateOne
from pymongo.read_concern import ReadConcern
_IS_SYNC = False
# Ignore auth commands like saslStart, so we can assert lsid is in all commands.
class SessionTestListener(EventListener):
def started(self, event):
if not event.command_name.startswith("sasl"):
super().started(event)
def succeeded(self, event):
if not event.command_name.startswith("sasl"):
super().succeeded(event)
def failed(self, event):
if not event.command_name.startswith("sasl"):
super().failed(event)
def first_command_started(self):
assert len(self.started_events) >= 1, "No command-started events"
return self.started_events[0]
def session_ids(client):
return [s.session_id for s in copy.copy(client._topology._session_pool)]
class TestSession(AsyncIntegrationTest):
client2: AsyncMongoClient
sensitive_commands: Set[str]
@classmethod
@async_client_context.require_sessions
async def _setup_class(cls):
await super()._setup_class()
# Create a second client so we can make sure clients cannot share
# sessions.
cls.client2 = await cls.unmanaged_async_rs_or_single_client()
# Redact no commands, so we can test user-admin commands have "lsid".
cls.sensitive_commands = monitoring._SENSITIVE_COMMANDS.copy()
monitoring._SENSITIVE_COMMANDS.clear()
@classmethod
async def _tearDown_class(cls):
monitoring._SENSITIVE_COMMANDS.update(cls.sensitive_commands)
await cls.client2.close()
await super()._tearDown_class()
async def asyncSetUp(self):
self.listener = SessionTestListener()
self.session_checker_listener = SessionTestListener()
self.client = await self.async_rs_or_single_client(
event_listeners=[self.listener, self.session_checker_listener]
)
self.addAsyncCleanup(self.client.close)
self.db = self.client.pymongo_test
self.initial_lsids = {s["id"] for s in session_ids(self.client)}
async def asyncTearDown(self):
"""All sessions used in the test must be returned to the pool."""
await self.client.drop_database("pymongo_test")
used_lsids = self.initial_lsids.copy()
for event in self.session_checker_listener.started_events:
if "lsid" in event.command:
used_lsids.add(event.command["lsid"]["id"])
current_lsids = {s["id"] for s in session_ids(self.client)}
self.assertLessEqual(used_lsids, current_lsids)
async def _test_ops(self, client, *ops):
listener = client.options.event_listeners[0]
for f, args, kw in ops:
async with client.start_session() as s:
listener.reset()
s._materialize()
last_use = s._server_session.last_use
start = time.monotonic()
self.assertLessEqual(last_use, start)
# In case "f" modifies its inputs.
args = copy.copy(args)
kw = copy.copy(kw)
kw["session"] = s
await f(*args, **kw)
self.assertGreaterEqual(len(listener.started_events), 1)
for event in listener.started_events:
self.assertTrue(
"lsid" in event.command,
f"{f.__name__} sent no lsid with {event.command_name}",
)
self.assertEqual(
s.session_id,
event.command["lsid"],
f"{f.__name__} sent wrong lsid with {event.command_name}",
)
self.assertFalse(s.has_ended)
self.assertTrue(s.has_ended)
with self.assertRaisesRegex(InvalidOperation, "ended session"):
await f(*args, **kw)
# Test a session cannot be used on another client.
async with self.client2.start_session() as s:
# In case "f" modifies its inputs.
args = copy.copy(args)
kw = copy.copy(kw)
kw["session"] = s
with self.assertRaisesRegex(
InvalidOperation,
"Can only use session with the AsyncMongoClient that started it",
):
await f(*args, **kw)
# No explicit session.
for f, args, kw in ops:
listener.reset()
await f(*args, **kw)
self.assertGreaterEqual(len(listener.started_events), 1)
lsids = []
for event in listener.started_events:
self.assertTrue(
"lsid" in event.command,
f"{f.__name__} sent no lsid with {event.command_name}",
)
lsids.append(event.command["lsid"])
if not (sys.platform.startswith("java") or "PyPy" in sys.version):
# Server session was returned to pool. Ignore interpreters with
# non-deterministic GC.
for lsid in lsids:
self.assertIn(
lsid,
session_ids(client),
f"{f.__name__} did not return implicit session to pool",
)
@async_client_context.require_sync
def test_implicit_sessions_checkout(self):
# "To confirm that implicit sessions only allocate their server session after a
# successful connection checkout" test from Driver Sessions Spec.
succeeded = False
lsid_set = set()
failures = 0
for _ in range(5):
listener = OvertCommandListener()
client = self.async_rs_or_single_client(event_listeners=[listener], maxPoolSize=1)
cursor = client.db.test.find({})
ops: List[Tuple[Callable, List[Any]]] = [
(client.db.test.find_one, [{"_id": 1}]),
(client.db.test.delete_one, [{}]),
(client.db.test.update_one, [{}, {"$set": {"x": 2}}]),
(client.db.test.bulk_write, [[UpdateOne({}, {"$set": {"x": 2}})]]),
(client.db.test.find_one_and_delete, [{}]),
(client.db.test.find_one_and_update, [{}, {"$set": {"x": 1}}]),
(client.db.test.find_one_and_replace, [{}, {}]),
(client.db.test.aggregate, [[{"$limit": 1}]]),
(client.db.test.find, []),
(client.server_info, []),
(client.db.aggregate, [[{"$listLocalSessions": {}}, {"$limit": 1}]]),
(cursor.distinct, ["_id"]),
(client.db.list_collections, []),
]
threads = []
listener.reset()
def thread_target(op, *args):
res = op(*args)
if isinstance(res, (AsyncCursor, AsyncCommandCursor)):
list(res) # type: ignore[call-overload]
for op, args in ops:
threads.append(
ExceptionCatchingThread(
target=thread_target, args=[op, *args], name=op.__name__
)
)
threads[-1].start()
self.assertEqual(len(threads), len(ops))
for thread in threads:
thread.join()
self.assertIsNone(thread.exc)
client.close()
lsid_set.clear()
for i in listener.started_events:
if i.command.get("lsid"):
lsid_set.add(i.command.get("lsid")["id"])
if len(lsid_set) == 1:
succeeded = True
else:
failures += 1
self.assertTrue(succeeded, lsid_set)
async def test_pool_lifo(self):
# "Pool is LIFO" test from Driver Sessions Spec.
a = self.client.start_session()
b = self.client.start_session()
a_id = a.session_id
b_id = b.session_id
await a.end_session()
await b.end_session()
s = self.client.start_session()
self.assertEqual(b_id, s.session_id)
self.assertNotEqual(a_id, s.session_id)
s2 = self.client.start_session()
self.assertEqual(a_id, s2.session_id)
self.assertNotEqual(b_id, s2.session_id)
await s.end_session()
await s2.end_session()
async def test_end_session(self):
# We test elsewhere that using an ended session throws InvalidOperation.
client = self.client
s = client.start_session()
self.assertFalse(s.has_ended)
self.assertIsNotNone(s.session_id)
await s.end_session()
self.assertTrue(s.has_ended)
with self.assertRaisesRegex(InvalidOperation, "ended session"):
s.session_id
async def test_end_sessions(self):
# Use a new client so that the tearDown hook does not error.
listener = SessionTestListener()
client = await self.async_rs_or_single_client(event_listeners=[listener])
# Start many sessions.
sessions = [client.start_session() for _ in range(_MAX_END_SESSIONS + 1)]
for s in sessions:
s._materialize()
for s in sessions:
await s.end_session()
# Closing the client should end all sessions and clear the pool.
self.assertEqual(len(client._topology._session_pool), _MAX_END_SESSIONS + 1)
await client.close()
self.assertEqual(len(client._topology._session_pool), 0)
end_sessions = [e for e in listener.started_events if e.command_name == "endSessions"]
self.assertEqual(len(end_sessions), 2)
# Closing again should not send any commands.
listener.reset()
await client.close()
self.assertEqual(len(listener.started_events), 0)
async def test_client(self):
client = self.client
ops: list = [
(client.server_info, [], {}),
(client.list_database_names, [], {}),
(client.drop_database, ["pymongo_test"], {}),
]
await self._test_ops(client, *ops)
async def test_database(self):
client = self.client
db = client.pymongo_test
ops: list = [
(db.command, ["ping"], {}),
(db.create_collection, ["collection"], {}),
(db.list_collection_names, [], {}),
(db.validate_collection, ["collection"], {}),
(db.drop_collection, ["collection"], {}),
(db.dereference, [DBRef("collection", 1)], {}),
]
await self._test_ops(client, *ops)
@staticmethod
def collection_write_ops(coll):
"""Generate database write ops for tests."""
return [
(coll.drop, [], {}),
(coll.bulk_write, [[InsertOne({})]], {}),
(coll.insert_one, [{}], {}),
(coll.insert_many, [[{}, {}]], {}),
(coll.replace_one, [{}, {}], {}),
(coll.update_one, [{}, {"$set": {"a": 1}}], {}),
(coll.update_many, [{}, {"$set": {"a": 1}}], {}),
(coll.delete_one, [{}], {}),
(coll.delete_many, [{}], {}),
(coll.find_one_and_replace, [{}, {}], {}),
(coll.find_one_and_update, [{}, {"$set": {"a": 1}}], {}),
(coll.find_one_and_delete, [{}, {}], {}),
(coll.rename, ["collection2"], {}),
# Drop collection2 between tests of "rename", above.
(coll.database.drop_collection, ["collection2"], {}),
(coll.create_indexes, [[IndexModel("a")]], {}),
(coll.create_index, ["a"], {}),
(coll.drop_index, ["a_1"], {}),
(coll.drop_indexes, [], {}),
(coll.aggregate, [[{"$out": "aggout"}]], {}),
]
async def test_collection(self):
client = self.client
coll = client.pymongo_test.collection
# Test some collection methods - the rest are in test_cursor.
ops = self.collection_write_ops(coll)
ops.extend(
[
(coll.distinct, ["a"], {}),
(coll.find_one, [], {}),
(coll.count_documents, [{}], {}),
(coll.list_indexes, [], {}),
(coll.index_information, [], {}),
(coll.options, [], {}),
(coll.aggregate, [[]], {}),
]
)
await self._test_ops(client, *ops)
async def test_cursor_clone(self):
coll = self.client.pymongo_test.collection
# Ensure some batches.
await coll.insert_many({} for _ in range(10))
self.addAsyncCleanup(coll.drop)
async with self.client.start_session() as s:
cursor = coll.find(session=s)
self.assertTrue(cursor.session is s)
clone = cursor.clone()
self.assertTrue(clone.session is s)
# No explicit session.
cursor = coll.find(batch_size=2)
await anext(cursor)
# Session is "owned" by cursor.
self.assertIsNone(cursor.session)
self.assertIsNotNone(cursor._session)
clone = cursor.clone()
await anext(clone)
self.assertIsNone(clone.session)
self.assertIsNotNone(clone._session)
self.assertFalse(cursor._session is clone._session)
await cursor.close()
await clone.close()
async def test_cursor(self):
listener = self.listener
client = self.client
coll = client.pymongo_test.collection
await coll.insert_many([{} for _ in range(1000)])
# Test all cursor methods.
if _IS_SYNC:
# getitem is only supported in the synchronous API
ops = [
("find", lambda session: coll.find(session=session).to_list()),
("getitem", lambda session: coll.find(session=session)[0]),
("distinct", lambda session: coll.find(session=session).distinct("a")),
("explain", lambda session: coll.find(session=session).explain()),
]
else:
ops = [
("find", lambda session: coll.find(session=session).to_list()),
("distinct", lambda session: coll.find(session=session).distinct("a")),
("explain", lambda session: coll.find(session=session).explain()),
]
for name, f in ops:
async with client.start_session() as s:
listener.reset()
await f(session=s)
self.assertGreaterEqual(len(listener.started_events), 1)
for event in listener.started_events:
self.assertTrue(
"lsid" in event.command,
f"{name} sent no lsid with {event.command_name}",
)
self.assertEqual(
s.session_id,
event.command["lsid"],
f"{name} sent wrong lsid with {event.command_name}",
)
with self.assertRaisesRegex(InvalidOperation, "ended session"):
await f(session=s)
# No explicit session.
for name, f in ops:
listener.reset()
await f(session=None)
event0 = listener.first_command_started()
self.assertTrue(
"lsid" in event0.command, f"{name} sent no lsid with {event0.command_name}"
)
lsid = event0.command["lsid"]
for event in listener.started_events[1:]:
self.assertTrue(
"lsid" in event.command, f"{name} sent no lsid with {event.command_name}"
)
self.assertEqual(
lsid,
event.command["lsid"],
f"{name} sent wrong lsid with {event.command_name}",
)
async def test_gridfs(self):
client = self.client
fs = AsyncGridFS(client.pymongo_test)
async def new_file(session=None):
grid_file = fs.new_file(_id=1, filename="f", session=session)
# 1 MB, 5 chunks, to test that each chunk is fetched with same lsid.
await grid_file.write(b"a" * 1048576)
await grid_file.close()
async def find(session=None):
files = await fs.find({"_id": 1}, session=session).to_list()
for f in files:
await f.read()
async def get(session=None):
await (await fs.get(1, session=session)).read()
async def get_version(session=None):
await (await fs.get_version("f", session=session)).read()
async def get_last_version(session=None):
await (await fs.get_last_version("f", session=session)).read()
async def find_list(session=None):
await fs.find(session=session).to_list()
await self._test_ops(
client,
(new_file, [], {}),
(fs.put, [b"data"], {}),
(get, [], {}),
(get_version, [], {}),
(get_last_version, [], {}),
(fs.list, [], {}),
(fs.find_one, [1], {}),
(find_list, [], {}),
(fs.exists, [1], {}),
(find, [], {}),
(fs.delete, [1], {}),
)
async def test_gridfs_bucket(self):
client = self.client
bucket = AsyncGridFSBucket(client.pymongo_test)
async def upload(session=None):
stream = bucket.open_upload_stream("f", session=session)
await stream.write(b"a" * 1048576)
await stream.close()
async def upload_with_id(session=None):
stream = bucket.open_upload_stream_with_id(1, "f1", session=session)
await stream.write(b"a" * 1048576)
await stream.close()
async def open_download_stream(session=None):
stream = await bucket.open_download_stream(1, session=session)
await stream.read()
async def open_download_stream_by_name(session=None):
stream = await bucket.open_download_stream_by_name("f", session=session)
await stream.read()
async def find(session=None):
files = await bucket.find({"_id": 1}, session=session).to_list()
for f in files:
await f.read()
sio = BytesIO()
await self._test_ops(
client,
(upload, [], {}),
(upload_with_id, [], {}),
(bucket.upload_from_stream, ["f", b"data"], {}),
(bucket.upload_from_stream_with_id, [2, "f", b"data"], {}),
(open_download_stream, [], {}),
(open_download_stream_by_name, [], {}),
(bucket.download_to_stream, [1, sio], {}),
(bucket.download_to_stream_by_name, ["f", sio], {}),
(find, [], {}),
(bucket.rename, [1, "f2"], {}),
# Delete both files so _test_ops can run these operations twice.
(bucket.delete, [1], {}),
(bucket.delete, [2], {}),
)
async def test_gridfsbucket_cursor(self):
client = self.client
bucket = AsyncGridFSBucket(client.pymongo_test)
for file_id in 1, 2:
stream = bucket.open_upload_stream_with_id(file_id, str(file_id))
await stream.write(b"a" * 1048576)
await stream.close()
async with client.start_session() as s:
cursor = bucket.find(session=s)
async for f in cursor:
await f.read()
self.assertFalse(s.has_ended)
self.assertTrue(s.has_ended)
# No explicit session.
cursor = bucket.find(batch_size=1)
files = [await cursor.next()]
s = cursor._session
self.assertFalse(s.has_ended)
cursor.__del__()
self.assertTrue(s.has_ended)
self.assertIsNone(cursor._session)
# Files are still valid, they use their own sessions.
for f in files:
await f.read()
# Explicit session.
async with client.start_session() as s:
cursor = bucket.find(session=s)
assert cursor.session is not None
s = cursor.session
files = await cursor.to_list()
cursor.__del__()
self.assertFalse(s.has_ended)
for f in files:
await f.read()
for f in files:
# Attempt to read the file again.
await f.seek(0)
with self.assertRaisesRegex(InvalidOperation, "ended session"):
await f.read()
async def test_aggregate(self):
client = self.client
coll = client.pymongo_test.collection
async def agg(session=None):
await (await coll.aggregate([], batchSize=2, session=session)).to_list()
# With empty collection.
await self._test_ops(client, (agg, [], {}))
# Now with documents.
await coll.insert_many([{} for _ in range(10)])
self.addAsyncCleanup(coll.drop)
await self._test_ops(client, (agg, [], {}))
async def test_killcursors(self):
client = self.client
coll = client.pymongo_test.collection
await coll.insert_many([{} for _ in range(10)])
async def explicit_close(session=None):
cursor = coll.find(batch_size=2, session=session)
await anext(cursor)
await cursor.close()
await self._test_ops(client, (explicit_close, [], {}))
async def test_aggregate_error(self):
listener = self.listener
client = self.client
coll = client.pymongo_test.collection
# 3.6.0 mongos only validates the aggregate pipeline when the
# database exists.
await coll.insert_one({})
listener.reset()
with self.assertRaises(OperationFailure):
await coll.aggregate([{"$badOperation": {"bar": 1}}])
event = listener.first_command_started()
self.assertEqual(event.command_name, "aggregate")
lsid = event.command["lsid"]
# Session was returned to pool despite error.
self.assertIn(lsid, session_ids(client))
async def _test_cursor_helper(self, create_cursor, close_cursor):
coll = self.client.pymongo_test.collection
await coll.insert_many([{} for _ in range(1000)])
cursor = await create_cursor(coll, None)
await anext(cursor)
# Session is "owned" by cursor.
session = cursor._session
self.assertIsNotNone(session)
lsid = session.session_id
await anext(cursor)
# Cursor owns its session unto death.
self.assertNotIn(lsid, session_ids(self.client))
await close_cursor(cursor)
self.assertIn(lsid, session_ids(self.client))
# An explicit session is not ended by cursor.close() or list(cursor).
async with self.client.start_session() as s:
cursor = await create_cursor(coll, s)
await anext(cursor)
await close_cursor(cursor)
self.assertFalse(s.has_ended)
lsid = s.session_id
self.assertTrue(s.has_ended)
self.assertIn(lsid, session_ids(self.client))
async def test_cursor_close(self):
async def find(coll, session):
return coll.find(session=session)
await self._test_cursor_helper(find, lambda cursor: cursor.close())
async def test_command_cursor_close(self):
async def aggregate(coll, session):
return await coll.aggregate([], session=session)
await self._test_cursor_helper(aggregate, lambda cursor: cursor.close())
async def test_cursor_del(self):
async def find(coll, session):
return coll.find(session=session)
async def delete(cursor):
return cursor.__del__()
await self._test_cursor_helper(find, delete)
async def test_command_cursor_del(self):
async def aggregate(coll, session):
return await coll.aggregate([], session=session)
async def delete(cursor):
return cursor.__del__()
await self._test_cursor_helper(aggregate, delete)
async def test_cursor_exhaust(self):
async def find(coll, session):
return coll.find(session=session)
await self._test_cursor_helper(find, lambda cursor: cursor.to_list())
async def test_command_cursor_exhaust(self):
async def aggregate(coll, session):
return await coll.aggregate([], session=session)
await self._test_cursor_helper(aggregate, lambda cursor: cursor.to_list())
async def test_cursor_limit_reached(self):
async def find(coll, session):
return coll.find(limit=4, batch_size=2, session=session)
await self._test_cursor_helper(
find,
lambda cursor: cursor.to_list(),
)
async def test_command_cursor_limit_reached(self):
async def aggregate(coll, session):
return await coll.aggregate([], batchSize=900, session=session)
await self._test_cursor_helper(
aggregate,
lambda cursor: cursor.to_list(),
)
async def _test_unacknowledged_ops(self, client, *ops):
listener = client.options.event_listeners[0]
for f, args, kw in ops:
async with client.start_session() as s:
listener.reset()
# In case "f" modifies its inputs.
args = copy.copy(args)
kw = copy.copy(kw)
kw["session"] = s
with self.assertRaises(
ConfigurationError, msg=f"{f.__name__} did not raise ConfigurationError"
):
await f(*args, **kw)
if f.__name__ == "create_collection":
# create_collection runs listCollections first.
event = listener.started_events.pop(0)
self.assertEqual("listCollections", event.command_name)
self.assertIn(
"lsid",
event.command,
f"{f.__name__} sent no lsid with {event.command_name}",
)
# Should not run any command before raising an error.
self.assertFalse(listener.started_events, f"{f.__name__} sent command")
self.assertTrue(s.has_ended)
# Unacknowledged write without a session does not send an lsid.
for f, args, kw in ops:
listener.reset()
await f(*args, **kw)
self.assertGreaterEqual(len(listener.started_events), 1)
if f.__name__ == "create_collection":
# create_collection runs listCollections first.
event = listener.started_events.pop(0)
self.assertEqual("listCollections", event.command_name)
self.assertIn(
"lsid",
event.command,
f"{f.__name__} sent no lsid with {event.command_name}",
)
for event in listener.started_events:
self.assertNotIn(
"lsid", event.command, f"{f.__name__} sent lsid with {event.command_name}"
)
async def test_unacknowledged_writes(self):
# Ensure the collection exists.
await self.client.pymongo_test.test_unacked_writes.insert_one({})
client = await self.async_rs_or_single_client(w=0, event_listeners=[self.listener])
db = client.pymongo_test
coll = db.test_unacked_writes
ops: list = [
(client.drop_database, [db.name], {}),
(db.create_collection, ["collection"], {}),
(db.drop_collection, ["collection"], {}),
]
ops.extend(self.collection_write_ops(coll))
await self._test_unacknowledged_ops(client, *ops)
async def drop_db():
try:
await self.client.drop_database(db.name)
return True
except OperationFailure as exc:
# Try again on BackgroundOperationInProgressForDatabase and
# BackgroundOperationInProgressForNamespace.
if exc.code in (12586, 12587):
return False
raise
await async_wait_until(drop_db, "dropped database after w=0 writes")
async def test_snapshot_incompatible_with_causal_consistency(self):
async with self.client.start_session(causal_consistency=False, snapshot=False):
pass
async with self.client.start_session(causal_consistency=False, snapshot=True):
pass
async with self.client.start_session(causal_consistency=True, snapshot=False):
pass
with self.assertRaises(ConfigurationError):
async with self.client.start_session(causal_consistency=True, snapshot=True):
pass
async def test_session_not_copyable(self):
client = self.client
async with client.start_session() as s:
self.assertRaises(TypeError, lambda: copy.copy(s))
class TestCausalConsistency(AsyncUnitTest):
listener: SessionTestListener
client: AsyncMongoClient
@classmethod
async def _setup_class(cls):
cls.listener = SessionTestListener()
cls.client = await cls.unmanaged_async_rs_or_single_client(event_listeners=[cls.listener])
@classmethod
async def _tearDown_class(cls):
await cls.client.close()
@async_client_context.require_sessions
async def asyncSetUp(self):
await super().asyncSetUp()
@async_client_context.require_no_standalone
async def test_core(self):
async with self.client.start_session() as sess:
self.assertIsNone(sess.cluster_time)
self.assertIsNone(sess.operation_time)
self.listener.reset()
await self.client.pymongo_test.test.find_one(session=sess)
started = self.listener.started_events[0]
cmd = started.command
self.assertIsNone(cmd.get("readConcern"))
op_time = sess.operation_time
self.assertIsNotNone(op_time)
succeeded = self.listener.succeeded_events[0]
reply = succeeded.reply
self.assertEqual(op_time, reply.get("operationTime"))
# No explicit session
await self.client.pymongo_test.test.insert_one({})
self.assertEqual(sess.operation_time, op_time)
self.listener.reset()
try:
await self.client.pymongo_test.command("doesntexist", session=sess)
except:
pass
failed = self.listener.failed_events[0]
failed_op_time = failed.failure.get("operationTime")
# Some older builds of MongoDB 3.5 / 3.6 return None for
# operationTime when a command fails. Make sure we don't
# change operation_time to None.
if failed_op_time is None:
self.assertIsNotNone(sess.operation_time)
else:
self.assertEqual(sess.operation_time, failed_op_time)
async with self.client.start_session() as sess2:
self.assertIsNone(sess2.cluster_time)
self.assertIsNone(sess2.operation_time)
self.assertRaises(TypeError, sess2.advance_cluster_time, 1)
self.assertRaises(ValueError, sess2.advance_cluster_time, {})
self.assertRaises(TypeError, sess2.advance_operation_time, 1)
# No error
assert sess.cluster_time is not None
assert sess.operation_time is not None
sess2.advance_cluster_time(sess.cluster_time)
sess2.advance_operation_time(sess.operation_time)
self.assertEqual(sess.cluster_time, sess2.cluster_time)
self.assertEqual(sess.operation_time, sess2.operation_time)
async def _test_reads(self, op, exception=None):
coll = self.client.pymongo_test.test
async with self.client.start_session() as sess:
await coll.find_one({}, session=sess)
operation_time = sess.operation_time
self.assertIsNotNone(operation_time)
self.listener.reset()
if exception:
with self.assertRaises(exception):
await op(coll, sess)
else:
await op(coll, sess)
act = (
self.listener.started_events[0]
.command.get("readConcern", {})
.get("afterClusterTime")
)
self.assertEqual(operation_time, act)
@async_client_context.require_no_standalone
async def test_reads(self):
# Make sure the collection exists.
await self.client.pymongo_test.test.insert_one({})
async def aggregate(coll, session):
return await (await coll.aggregate([], session=session)).to_list()
async def aggregate_raw(coll, session):
return await (await coll.aggregate_raw_batches([], session=session)).to_list()
async def find_raw(coll, session):
return await coll.find_raw_batches({}, session=session).to_list()
await self._test_reads(aggregate)
await self._test_reads(lambda coll, session: coll.find({}, session=session).to_list())
await self._test_reads(lambda coll, session: coll.find_one({}, session=session))
await self._test_reads(lambda coll, session: coll.count_documents({}, session=session))
await self._test_reads(lambda coll, session: coll.distinct("foo", session=session))
await self._test_reads(aggregate_raw)
await self._test_reads(find_raw)
with self.assertRaises(ConfigurationError):
await self._test_reads(
lambda coll, session: coll.estimated_document_count(session=session)
)
async def _test_writes(self, op):
coll = self.client.pymongo_test.test
async with self.client.start_session() as sess:
await op(coll, sess)
operation_time = sess.operation_time
self.assertIsNotNone(operation_time)
self.listener.reset()
await coll.find_one({}, session=sess)
act = (
self.listener.started_events[0]
.command.get("readConcern", {})
.get("afterClusterTime")
)
self.assertEqual(operation_time, act)
@async_client_context.require_no_standalone
async def test_writes(self):
await self._test_writes(
lambda coll, session: coll.bulk_write([InsertOne[dict]({})], session=session)
)
await self._test_writes(lambda coll, session: coll.insert_one({}, session=session))
await self._test_writes(lambda coll, session: coll.insert_many([{}], session=session))
await self._test_writes(
lambda coll, session: coll.replace_one({"_id": 1}, {"x": 1}, session=session)
)
await self._test_writes(
lambda coll, session: coll.update_one({}, {"$set": {"X": 1}}, session=session)
)
await self._test_writes(
lambda coll, session: coll.update_many({}, {"$set": {"x": 1}}, session=session)
)
await self._test_writes(lambda coll, session: coll.delete_one({}, session=session))
await self._test_writes(lambda coll, session: coll.delete_many({}, session=session))
await self._test_writes(
lambda coll, session: coll.find_one_and_replace({"x": 1}, {"y": 1}, session=session)
)
await self._test_writes(
lambda coll, session: coll.find_one_and_update(
{"y": 1}, {"$set": {"x": 1}}, session=session
)
)
await self._test_writes(
lambda coll, session: coll.find_one_and_delete({"x": 1}, session=session)
)
await self._test_writes(lambda coll, session: coll.create_index("foo", session=session))
await self._test_writes(
lambda coll, session: coll.create_indexes(
[IndexModel([("bar", ASCENDING)])], session=session
)
)
await self._test_writes(lambda coll, session: coll.drop_index("foo_1", session=session))
await self._test_writes(lambda coll, session: coll.drop_indexes(session=session))
async def _test_no_read_concern(self, op):
coll = self.client.pymongo_test.test
async with self.client.start_session() as sess:
await coll.find_one({}, session=sess)
operation_time = sess.operation_time