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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
describe 'QueryCache' do
around do |spec|
Mongo::QueryCache.clear
Mongo::QueryCache.cache { spec.run }
end
before do
authorized_collection.delete_many
subscriber.clear_events!
end
before(:all) do
# It is likely that there are other session leaks in the driver that are
# unrelated to the query cache. Clear the SessionRegistry at the start of
# these tests in order to detect leaks that occur only within the scope of
# these tests.
#
# Other session leaks will be detected and addressed as part of RUBY-2391.
Mrss::SessionRegistry.instance.clear_registry
end
after do
Mrss::SessionRegistry.instance.verify_sessions_ended!
end
let(:subscriber) { Mrss::EventSubscriber.new }
let(:client) do
authorized_client.tap do |client|
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
end
end
let(:authorized_collection) { client['collection_spec'] }
let(:events) do
subscriber.command_started_events('find')
end
describe '#cache' do
before do
Mongo::QueryCache.enabled = false
authorized_collection.insert_one({ name: 'testing' })
authorized_collection.find(name: 'testing').to_a
end
it 'enables the query cache inside the block' do
Mongo::QueryCache.cache do
authorized_collection.find(name: 'testing').to_a
expect(Mongo::QueryCache.enabled?).to be(true)
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
expect(events.length).to eq(2)
end
authorized_collection.find(name: 'testing').to_a
expect(Mongo::QueryCache.enabled?).to be(false)
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
expect(events.length).to eq(2)
end
end
describe '#uncached' do
before do
authorized_collection.insert_one({ name: 'testing' })
authorized_collection.find(name: 'testing').to_a
end
it 'disables the query cache inside the block' do
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
Mongo::QueryCache.uncached do
authorized_collection.find(name: 'testing').to_a
expect(Mongo::QueryCache.enabled?).to be(false)
expect(events.length).to eq(2)
end
authorized_collection.find(name: 'testing').to_a
expect(Mongo::QueryCache.enabled?).to be(true)
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
expect(events.length).to eq(2)
end
end
describe 'query with multiple batches' do
before do
102.times { |i| authorized_collection.insert_one(_id: i) }
end
let(:expected_results) { [*0..101].map { |id| { "_id" => id } } }
it 'returns the correct result' do
result = authorized_collection.find.to_a
expect(result.length).to eq(102)
expect(result).to eq(expected_results)
end
it 'returns the correct result multiple times' do
result1 = authorized_collection.find.to_a
result2 = authorized_collection.find.to_a
expect(result1).to eq(expected_results)
expect(result2).to eq(expected_results)
end
it 'caches the query' do
authorized_collection.find.to_a
authorized_collection.find.to_a
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
it 'uses cached cursor when limited' do
authorized_collection.find.to_a
result = authorized_collection.find({}, limit: 5).to_a
expect(result.length).to eq(5)
expect(result).to eq(expected_results.first(5))
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
it 'can be used with a block API' do
authorized_collection.find.to_a
result = []
authorized_collection.find.each do |doc|
result << doc
end
expect(result).to eq(expected_results)
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
context 'when the cursor isn\'t fully iterated the first time' do
it 'continues iterating' do
result1 = authorized_collection.find.first(5)
expect(result1.length).to eq(5)
expect(result1).to eq(expected_results.first(5))
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(0)
result2 = authorized_collection.find.to_a
expect(result2.length).to eq(102)
expect(result2).to eq(expected_results)
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
it 'can be iterated multiple times' do
authorized_collection.find.first(5)
authorized_collection.find.to_a
result = authorized_collection.find.to_a
expect(result.length).to eq(102)
expect(result).to eq(expected_results)
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
it 'can be used with a block API' do
authorized_collection.find.first(5)
result = []
authorized_collection.find.each do |doc|
result << doc
end
expect(result.length).to eq(102)
expect(result).to eq(expected_results)
expect(subscriber.command_started_events('find').length).to eq(1)
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
end
end
describe 'queries with read concern' do
require_wired_tiger
min_server_fcv '3.6'
before do
authorized_client['test', write_concern: { w: :majority }].drop
end
context 'when two queries have same read concern' do
before do
authorized_client['test', read_concern: { level: :majority }].find.to_a
authorized_client['test', read_concern: { level: :majority }].find.to_a
end
it 'executes one query' do
expect(events.length).to eq(1)
end
end
context 'when two queries have different read concerns' do
before do
authorized_client['test', read_concern: { level: :majority }].find.to_a
authorized_client['test', read_concern: { level: :local }].find.to_a
end
it 'executes two queries' do
expect(events.length).to eq(2)
end
end
end
describe 'queries with read preference' do
before do
subscriber.clear_events!
authorized_client['test'].drop
end
context 'when two queries have different read preferences' do
before do
authorized_client['test', read: { mode: :primary }].find.to_a
authorized_client['test', read: { mode: :primary_preferred }].find.to_a
end
it 'executes two queries' do
expect(events.length).to eq(2)
end
end
context 'when two queries have same read preference' do
before do
authorized_client['test', read: { mode: :primary }].find.to_a
authorized_client['test', read: { mode: :primary }].find.to_a
end
it 'executes one query' do
expect(events.length).to eq(1)
end
end
end
describe 'query fills up entire batch' do
before do
subscriber.clear_events!
authorized_client['test'].drop
2.times { |i| authorized_client['test'].insert_one(_id: i) }
end
let(:expected_result) do
[{ "_id" => 0 }, { "_id" => 1 }]
end
# When the last batch runs out, try_next will return nil instead of a
# document. This test checks that nil is not added to the list of cached
# documents or returned as a result.
it 'returns the correct response' do
expect(authorized_client['test'].find({}, batch_size: 2).to_a).to eq(expected_result)
expect(authorized_client['test'].find({}, batch_size: 2).to_a).to eq(expected_result)
end
end
context 'when querying in the same collection' do
before do
10.times do |i|
authorized_collection.insert_one(test: i)
end
end
context 'when query cache is disabled' do
before do
Mongo::QueryCache.enabled = false
authorized_collection.find(test: 1).to_a
end
it 'queries again' do
authorized_collection.find(test: 1).to_a
expect(events.length).to eq(2)
expect(Mongo::QueryCache.send(:cache_table).length).to eq(0)
end
end
context 'when query cache is enabled' do
before do
authorized_collection.find(test: 1).to_a
end
it 'does not query again' do
authorized_collection.find(test: 1).to_a
expect(events.length).to eq(1)
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
end
end
context 'when query has collation' do
min_server_fcv '3.4'
let(:options1) do
{ :collation => { locale: 'fr' } }
end
let(:options2) do
{ collation: { locale: 'en_US' } }
end
before do
authorized_collection.find({ test: 3 }, options1).to_a
end
context 'when query has the same collation' do
it 'uses the cache' do
authorized_collection.find({ test: 3 }, options1).to_a
expect(events.length).to eq(1)
end
end
context 'when query has a different collation' do
it 'queries again' do
authorized_collection.find({ test: 3 }, options2).to_a
expect(events.length).to eq(2)
expect(Mongo::QueryCache.send(:cache_table)['ruby-driver.collection_spec'].length).to eq(2)
end
end
end
describe 'queries with limits' do
context 'when the first query has no limit and the second does' do
before do
authorized_collection.find.to_a.count
end
it 'uses the cache' do
results_limit_5 = authorized_collection.find.limit(5).to_a
results_limit_negative_5 = authorized_collection.find.limit(-5).to_a
results_limit_3 = authorized_collection.find.limit(3).to_a
results_limit_negative_3 = authorized_collection.find.limit(-3).to_a
results_no_limit = authorized_collection.find.to_a
results_limit_0 = authorized_collection.find.limit(0).to_a
expect(results_limit_5.length).to eq(5)
expect(results_limit_5.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4])
expect(results_limit_negative_5.length).to eq(5)
expect(results_limit_negative_5.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4])
expect(results_limit_3.length).to eq(3)
expect(results_limit_3.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results_limit_negative_3.length).to eq(3)
expect(results_limit_negative_3.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results_no_limit.length).to eq(10)
expect(results_no_limit.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
expect(results_limit_0.length).to eq(10)
expect(results_limit_0.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
expect(events.length).to eq(1)
end
end
context 'when the first query has a 0 limit' do
before do
authorized_collection.find.limit(0).to_a
end
it 'uses the cache' do
results_limit_5 = authorized_collection.find.limit(5).to_a
results_limit_negative_5 = authorized_collection.find.limit(-5).to_a
results_limit_3 = authorized_collection.find.limit(3).to_a
results_limit_negative_3 = authorized_collection.find.limit(-3).to_a
results_no_limit = authorized_collection.find.to_a
results_limit_0 = authorized_collection.find.limit(0).to_a
expect(results_limit_5.length).to eq(5)
expect(results_limit_5.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4])
expect(results_limit_negative_5.length).to eq(5)
expect(results_limit_negative_5.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4])
expect(results_limit_3.length).to eq(3)
expect(results_limit_3.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results_limit_negative_3.length).to eq(3)
expect(results_limit_negative_3.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results_no_limit.length).to eq(10)
expect(results_no_limit.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
expect(results_limit_0.length).to eq(10)
expect(results_limit_0.map { |r| r["test"] }).to eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
expect(events.length).to eq(1)
end
end
context 'when the first query has a limit' do
before do
authorized_collection.find.limit(2).to_a
end
context 'and the second query has a larger limit' do
let(:results) { authorized_collection.find.limit(3).to_a }
it 'queries again' do
expect(results.length).to eq(3)
expect(results.map { |result| result["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and two queries are performed with a larger limit' do
it 'uses the query cache for the third query' do
results1 = authorized_collection.find.limit(3).to_a
results2 = authorized_collection.find.limit(3).to_a
expect(results1.length).to eq(3)
expect(results1.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results2.length).to eq(3)
expect(results2.map { |r| r["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and two queries are performed with a larger negative limit' do
it 'uses the query cache for the third query' do
results1 = authorized_collection.find.limit(-3).to_a
results2 = authorized_collection.find.limit(-3).to_a
expect(results1.length).to eq(3)
expect(results1.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results2.length).to eq(3)
expect(results2.map { |r| r["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and the second query has a smaller limit' do
let(:results) { authorized_collection.find.limit(1).to_a }
it 'uses the cached query' do
expect(results.count).to eq(1)
expect(results.first["test"]).to eq(0)
expect(events.length).to eq(1)
end
end
context 'and the second query has a smaller negative limit' do
let(:results) { authorized_collection.find.limit(-1).to_a }
it 'uses the cached query' do
expect(results.count).to eq(1)
expect(results.first["test"]).to eq(0)
expect(events.length).to eq(1)
end
end
context 'and the second query has no limit' do
it 'queries again' do
expect(authorized_collection.find.to_a.count).to eq(10)
expect(events.length).to eq(2)
end
end
end
context 'when the first query has a negative limit' do
before do
authorized_collection.find.limit(-2).to_a
end
context 'and the second query has a larger limit' do
let(:results) { authorized_collection.find.limit(3).to_a }
it 'queries again' do
expect(results.length).to eq(3)
expect(results.map { |result| result["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and the second query has a larger negative limit' do
let(:results) { authorized_collection.find.limit(-3).to_a }
it 'queries again' do
expect(results.length).to eq(3)
expect(results.map { |result| result["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and two queries are performed with a larger limit' do
it 'uses the query cache for the third query' do
results1 = authorized_collection.find.limit(3).to_a
results2 = authorized_collection.find.limit(3).to_a
expect(results1.length).to eq(3)
expect(results1.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results2.length).to eq(3)
expect(results2.map { |r| r["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and two queries are performed with a larger negative limit' do
it 'uses the query cache for the third query' do
results1 = authorized_collection.find.limit(-3).to_a
results2 = authorized_collection.find.limit(-3).to_a
expect(results1.length).to eq(3)
expect(results1.map { |r| r["test"] }).to eq([0, 1, 2])
expect(results2.length).to eq(3)
expect(results2.map { |r| r["test"] }).to eq([0, 1, 2])
expect(events.length).to eq(2)
end
end
context 'and the second query has a smaller limit' do
let(:results) { authorized_collection.find.limit(1).to_a }
it 'uses the cached query' do
expect(results.count).to eq(1)
expect(results.first["test"]).to eq(0)
expect(events.length).to eq(1)
end
end
context 'and the second query has a smaller negative limit' do
let(:results) { authorized_collection.find.limit(-1).to_a }
it 'uses the cached query' do
expect(results.count).to eq(1)
expect(results.first["test"]).to eq(0)
expect(events.length).to eq(1)
end
end
context 'and the second query has no limit' do
it 'queries again' do
expect(authorized_collection.find.to_a.count).to eq(10)
expect(events.length).to eq(2)
end
end
end
end
context 'when querying only the first' do
before do
5.times do |i|
authorized_collection.insert_one(test: 11)
end
end
before do
authorized_collection.find({test: 11}).to_a
end
it 'does not query again' do
expect(authorized_collection.find({test: 11}).count).to eq(5)
authorized_collection.find({test: 11}).first
expect(events.length).to eq(1)
end
context 'when limiting the result' do
it 'does not query again' do
authorized_collection.find({test: 11}, limit: 2).to_a
expect(authorized_collection.find({test: 11}, limit: 2).to_a.count).to eq(2)
expect(events.length).to eq(1)
end
end
end
context 'when specifying a different skip value' do
before do
authorized_collection.find({}, {limit: 2, skip: 3}).to_a
end
it 'queries again' do
results = authorized_collection.find({}, {limit: 2, skip: 5}).to_a
expect(results.count).to eq(2)
expect(events.length).to eq(2)
end
end
context 'when sorting documents' do
before do
authorized_collection.find({}, desc).to_a
end
let(:desc) do
{ sort: {test: -1} }
end
let(:asc) do
{ sort: {test: 1} }
end
context 'with different selector' do
it 'queries again' do
authorized_collection.find({}, asc).to_a
expect(events.length).to eq(2)
end
end
it 'does not query again' do
authorized_collection.find({}, desc).to_a
expect(events.length).to eq(1)
end
end
context 'when inserting new documents' do
context 'when inserting and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.insert_one({ name: "bob" })
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when inserting and querying from different collections' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].insert_one({ name: "bob" })
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
[:delete_many, :delete_one].each do |method|
context "when deleting with #{method}" do
context 'when deleting and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.send(method)
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when deleting and querying from different collections' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].send(method)
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
end
[:find_one_and_delete, :find_one_and_replace, :find_one_and_update,
:replace_one].each do |method|
context "when updating with #{method}" do
context 'when updating and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.send(method, { field: 'value' }, { field: 'new value' })
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when updating and querying from different collections' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].send(method, { field: 'value' }, { field: 'new value' })
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
end
[:update_one, :update_many].each do |method|
context "when updating with ##{method}" do
context 'when updating and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.send(method, { field: 'value' }, { "$inc" => { :field => 1 } })
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when updating and querying from different collections' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].send(method, { field: 'value' }, { "$inc" => { :field => 1 } })
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
end
context 'when performing bulk write' do
context 'with insert_one' do
context 'when inserting and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.bulk_write([ { insert_one: { name: 'bob' } } ])
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when inserting and querying from different collection' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].bulk_write(
[ { insert_one: { name: 'bob' } } ]
)
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
[:update_one, :update_many].each do |method|
context "with #{method}" do
context 'when updating and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.bulk_write([
{
method => {
filter: { field: 'value' },
update: { '$set' => { field: 'new value' } }
}
}
])
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when updating and querying from different collection' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].bulk_write([
{
method => {
filter: { field: 'value' },
update: { '$set' => { field: 'new value' } }
}
}
])
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
end
[:delete_one, :delete_many].each do |method|
context "with #{method}" do
context 'when delete and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.bulk_write([
{
method => {
filter: { field: 'value' },
}
}
])
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when delete and querying from different collection' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].bulk_write([
{
method => {
filter: { field: 'value' },
}
}
])
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
end
context 'with replace_one' do
context 'when replacing and querying from same collection' do
before do
authorized_collection.find.to_a
authorized_collection.bulk_write([
{
replace_one: {
filter: { field: 'value' },
replacement: { field: 'new value' }
}
}
])
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
end
context 'when replacing and querying from different collection' do
before do
authorized_collection.find.to_a
authorized_client['different_collection'].bulk_write([
{
replace_one: {
filter: { field: 'value' },
replacement: { field: 'new value' }
}
}
])
end
it 'uses the cached query' do
authorized_collection.find.to_a
expect(events.length).to eq(1)
end
end
end
context 'when query occurs between bulk write creation and execution' do
before do
authorized_collection.delete_many
end
it 'queries again' do
bulk_write = Mongo::BulkWrite.new(
authorized_collection,
[{ insert_one: { test: 1 } }]
)
expect(authorized_collection.find(test: 1).to_a.length).to eq(0)
bulk_write.execute
expect(authorized_collection.find(test: 1).to_a.length).to eq(1)
expect(events.length).to eq(2)
end
end
end
context 'when aggregating with $out' do
before do
authorized_collection.find.to_a
authorized_collection.aggregate([
{ '$match' => { test: 1 } },
{ '$out' => { coll: 'new_coll' } }
])
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
it 'clears the cache' do
expect(Mongo::QueryCache.send(:cache_table)).to be_empty
end
end
context 'when aggregating with $merge' do
min_server_fcv '4.2'
before do
authorized_collection.delete_many
authorized_collection.find.to_a
authorized_collection.aggregate([
{ '$match' => { 'test' => 1 } },
{ '$merge' => {
into: {
db: SpecConfig.instance.test_db,
coll: 'new_coll',
},
on: "_id",
whenMatched: "replace",
whenNotMatched: "insert",
}
}
])
end
it 'queries again' do
authorized_collection.find.to_a
expect(events.length).to eq(2)
end
it 'clears the cache' do
expect(Mongo::QueryCache.send(:cache_table)).to be_empty
end
end
end
context 'when aggregating' do
before do
3.times { authorized_collection.insert_one(test: 1) }
end
let(:events) do
subscriber.command_started_events('aggregate')
end
let(:aggregation) do
authorized_collection.aggregate([ { '$match' => { test: 1 } } ])
end
it 'caches the aggregation' do
expect(aggregation.to_a.length).to eq(3)
expect(aggregation.to_a.length).to eq(3)
expect(events.length).to eq(1)
end
context 'with read concern' do
require_wired_tiger
min_server_fcv '3.6'
let(:aggregation_read_concern) do
authorized_client['collection_spec', { read_concern: { level: :local } }]
.aggregate([ { '$match' => { test: 1 } } ])
end
it 'queries twice' do
expect(aggregation.to_a.length).to eq(3)
expect(aggregation_read_concern.to_a.length).to eq(3)
expect(events.length).to eq(2)
end
end
context 'with read preference' do
let(:aggregation_read_preference) do
authorized_client['collection_spec', { read: { mode: :primary } }]
.aggregate([ { '$match' => { test: 1 } } ])
end
it 'queries twice' do
expect(aggregation.to_a.length).to eq(3)
expect(aggregation_read_preference.to_a.length).to eq(3)
expect(events.length).to eq(2)
end
end
context 'when collation is specified' do
min_server_fcv '3.4'
let(:aggregation_collation) do
authorized_collection.aggregate(
[ { '$match' => { test: 1 } } ],
{ collation: { locale: 'fr' } }
)
end
it 'queries twice' do
expect(aggregation.to_a.length).to eq(3)
expect(aggregation_collation.to_a.length).to eq(3)
expect(events.length).to eq(2)
end
end
context 'when insert_one is performed on another collection' do
before do
aggregation.to_a
authorized_client['different_collection'].insert_one(name: 'bob')
aggregation.to_a
end
it 'queries again' do
expect(events.length).to eq(2)
end
end
context 'when insert_many is performed on another collection' do
before do
aggregation.to_a
authorized_client['different_collection'].insert_many([name: 'bob'])
aggregation.to_a
end
it 'queries again' do
expect(events.length).to eq(2)
end
end
[:delete_many, :delete_one].each do |method|
context "when #{method} is performed on another collection" do
before do
aggregation.to_a
authorized_client['different_collection'].send(method)
aggregation.to_a
end
it 'queries again' do
expect(events.length).to eq(2)
end
end
end
[:find_one_and_delete, :find_one_and_replace, :find_one_and_update,
:replace_one].each do |method|
context "when #{method} is performed on another collection" do
before do
aggregation.to_a
authorized_client['different_collection'].send(method, { field: 'value' }, { field: 'new value' })
aggregation.to_a
end
it 'queries again' do
expect(events.length).to eq(2)
end
end
end
[:update_one, :update_many].each do |method|
context 'when update_many is performed on another collection' do
before do
aggregation.to_a
authorized_client['different_collection'].send(method, { field: 'value' }, { "$inc" => { :field => 1 } })
aggregation.to_a
end
it 'queries again' do
expect(events.length).to eq(2)
end
end
end
context '#count_documents' do
context 'on same collection' do
it 'caches the query' do
expect(authorized_collection.count_documents(test: 1)).to eq(3)
expect(authorized_collection.count_documents(test: 1)).to eq(3)
expect(events.length).to eq(1)
end
end
context 'on different collections' do
let(:other_collection) { authorized_client['other_collection'] }
before do
other_collection.drop
6.times { other_collection.insert_one(test: 1) }
end
it 'caches the query' do
expect(authorized_collection.count_documents(test: 1)).to eq(3)
expect(other_collection.count_documents(test: 1)).to eq(6)
expect(events.length).to eq(2)
end
end
end
end
context 'when find command fails and retries' do
require_fail_command
require_no_multi_mongos
require_warning_clean
before do
5.times do |i|
authorized_collection.insert_one(test: i)
end
end
before do
client.use('admin').command(
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: {
failCommands: ['find'],
closeConnection: true
}
)
end
let(:command_name) { 'find' }
it 'uses modern retryable reads when using query cache' do
expect(Mongo::QueryCache.enabled?).to be(true)
expect(Mongo::Logger.logger).to receive(:warn).once.with(/modern.*attempt 1/).and_call_original
authorized_collection.find(test: 1).to_a
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
expect(subscriber.command_started_events('find').length).to eq(2)
authorized_collection.find(test: 1).to_a
expect(Mongo::QueryCache.send(:cache_table).length).to eq(1)
expect(subscriber.command_started_events('find').length).to eq(2)
end
end
context 'when querying in a different collection' do
let(:database) { client.database }
let(:new_collection) do
Mongo::Collection.new(database, 'foo')
end
before do
authorized_collection.find.to_a
end
it 'queries again' do
new_collection.find.to_a
expect(Mongo::QueryCache.send(:cache_table).length).to eq(2)
expect(events.length).to eq(2)
end
end
context 'with system collection' do
let(:client) do
ClientRegistry.instance.global_client('root_authorized').tap do |client|
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
end
end
before do
begin
client.database.users.remove('alanturing')
rescue Mongo::Error::OperationFailure
# can be user not found, ignore
end
end
it 'does not use the query cache' do
client['system.users'].find.to_a
client['system.users'].find.to_a
expect(events.length).to eq(2)
end
end
context 'when result set has multiple documents and cursor is iterated partially' do
before do
Mongo::QueryCache.enabled = false
5.times do
authorized_collection.insert_one({ name: 'testing' })
end
end
shared_examples 'retrieves full result set on second iteration' do
it 'retrieves full result set on second iteration' do
Mongo::QueryCache.clear
Mongo::QueryCache.enabled = true
partial_first_iteration
authorized_collection.find.to_a.length.should == 5
end
end
context 'using each & break' do
let(:partial_first_iteration) do
called = false
authorized_collection.find.each do
called = true
break
end
called.should be true
end
include_examples 'retrieves full result set on second iteration'
end
context 'using next' do
let(:partial_first_iteration) do
# #next is executed in its own fiber, and query cache is disabled
# for that operation.
authorized_collection.find.to_enum.next
end
include_examples 'retrieves full result set on second iteration'
end
end
describe 'concurrent queries with multiple batches' do
before do
102.times { |i| authorized_collection.insert_one(_id: i) }
end
# The query cache table is stored in thread local storage, so even though
# we executed the same queries in the first thread (and waited for them to
# finish), that query is going to be executed again (only once) in the
# second thread.
it "uses separate cache tables per thread" do
thread1 = Thread.new do
Mongo::QueryCache.cache do
authorized_collection.find.to_a
authorized_collection.find.to_a
authorized_collection.find.to_a
authorized_collection.find.to_a
end
end
thread1.join
thread2 = Thread.new do
Mongo::QueryCache.cache do
authorized_collection.find.to_a
authorized_collection.find.to_a
authorized_collection.find.to_a
authorized_collection.find.to_a
end
end
thread2.join
expect(subscriber.command_started_events('find').length).to eq(2)
expect(subscriber.command_started_events('getMore').length).to eq(2)
end
it "is able to query concurrently" do
wait_for_first_thread = true
wait_for_second_thread = true
threads = []
first_thread_docs = []
threads << Thread.new do
Mongo::QueryCache.cache do
# 1. iterate first batch
authorized_collection.find.each_with_index do |doc, i|
# 2. verify that we're getting all of the correct documents
first_thread_docs << doc
expect(doc).to eq({ "_id" => i })
if i == 50
# 2. check that there hasn't been a getmore
expect(subscriber.command_started_events('getMore').length).to eq(0)
# 3. mark second thread ready to start
wait_for_first_thread = false
# 4. wait for second thread
sleep 0.1 while wait_for_second_thread
# 5. verify that the other thread sent a getmore
expect(subscriber.command_started_events('getMore').length).to eq(1)
end
# 6. finish iterating the batch
end
# 7. verify that it still caches the query
authorized_collection.find.to_a
end
end
threads << Thread.new do
Mongo::QueryCache.cache do
# 1. wait for the first thread to finish first batch iteration
sleep 0.1 while wait_for_first_thread
# 2. iterate the entire result set
authorized_collection.find.each_with_index do |doc, i|
# 3. verify documnents
expect(doc).to eq({ "_id" => i })
end
# 4. verify get more
expect(subscriber.command_started_events('getMore').length).to eq(1)
# 5. mark second thread done
wait_for_second_thread = false
# 6. verify that it still caches the query
authorized_collection.find.to_a
end
end
threads.map(&:join)
expect(first_thread_docs.length).to eq(102)
expect(subscriber.command_started_events('find').length).to eq(2)
expect(subscriber.command_started_events('getMore').length).to eq(2)
end
end
end
|