aerospike 2.0.0

Aerospike Client for Rust
Documentation
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
// Copyright 2015-2020 Aerospike, Inc.
//
// Portions may be licensed to Aerospike, Inc. under one or more contributor
// license agreements.
//
// 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.

use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Arc;

use futures::stream::StreamExt;

use crate::common;

use aerospike::query::{Filter, PartitionFilter};
use aerospike::Task;
use aerospike::*;
use aerospike_rt::time::{Duration, Instant};

const EXPECTED: usize = 1000;

async fn create_test_set(client: &Client, no_records: usize) -> String {
    let namespace = common::namespace();
    let set_name = common::rand_str(10);

    let wpolicy = WritePolicy::default();
    let apolicy = AdminPolicy::default();
    for i in 0..no_records as i64 {
        let key = as_key!(namespace, &set_name, i);
        let wbin1 = as_bin!("bin", i);
        let wbin2 = as_bin!("bin2", "hello");
        let wbin3 = as_bin!("extra", "extra");
        let bins = vec![wbin1, wbin2, wbin3];
        client.delete(&wpolicy, &key).await.unwrap();
        client.put(&wpolicy, &key, &bins).await.unwrap();
    }

    let task = client
        .create_index_on_bin(
            &apolicy,
            namespace,
            &set_name,
            "bin",
            &format!("{}_{}_{}", namespace, set_name, "bin"),
            IndexType::Numeric,
            CollectionIndexType::Default,
            None,
        )
        .await
        .expect("Failed to create index");
    task.wait_till_complete(None).await.unwrap();

    set_name
}

#[aerospike_macro::test]
async fn query_timeout() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let mut qpolicy = QueryPolicy::default();
    qpolicy.base_policy.total_timeout = 5;
    qpolicy.base_policy.socket_timeout = 5;

    // Filter Query
    let statement = Statement::new(namespace, &set_name, Bins::All);
    let pf = PartitionFilter::all();

    let start = Instant::now();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut rs = rs.into_stream();
    let mut timed_out = false;
    while let Some(res) = rs.next().await {
        match res {
            Ok(_) => (),
            Err(Error::Timeout(_)) => timed_out = true,
            Err(err) => panic!("{:?}", err),
        }
    }
    let duration = start.elapsed();

    let expected_duration = Duration::from_millis((qpolicy.total_timeout() * 2) as u64);
    assert!(duration < expected_duration);
    assert_eq!(timed_out, true);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_single_consumer_no_setname() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = "";
    let mut qpolicy = QueryPolicy::default();
    qpolicy.expected_duration = QueryDuration::Short;

    // Filter Query
    let statement = Statement::new(namespace, &set_name, Bins::All);
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(_) => {
                count += 1;
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert!(count > 0);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_single_consumer() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let mut qpolicy = QueryPolicy::default();
    qpolicy.expected_duration = QueryDuration::Short;

    // Filter Query
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::equal("bin", 1));
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                assert_eq!(rec.bins["bin"], as_val!(1));
                count += 1;
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 1);

    // Range Query
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::range("bin", 0, 9));
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                let v: i64 = rec.bins["bin"].clone().into();
                assert!(v >= 0);
                assert!(v < 10);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_single_consumer_with_cursor() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let mut qpolicy = QueryPolicy::default();
    qpolicy.expected_duration = QueryDuration::Short;

    let mut pf = PartitionFilter::all();
    let mut count = 0;
    while !pf.done() {
        // Filter Query
        let mut statement = Statement::new(namespace, &set_name, Bins::All);
        statement.add_filter(Filter::equal("bin", 1));
        let rs = client.query(&qpolicy, pf, statement).await.unwrap();
        let mut rs = rs.into_stream();
        while let Some(res) = rs.next().await {
            match res {
                Ok(rec) => {
                    assert_eq!(rec.bins["bin"], as_val!(1));
                    count += 1;
                }
                Err(err) => panic!("{:?}", err),
            }
        }
        pf = rs.partition_filter().await.unwrap();
    }
    assert_eq!(count, 1);

    let mut pf = PartitionFilter::all();
    let mut iter = 0;
    count = 0;
    qpolicy.max_records = 1;
    while !pf.done() {
        iter += 1;
        // Range Query
        let mut statement = Statement::new(namespace, &set_name, Bins::Some(vec!["bin".into()]));
        statement.add_filter(Filter::range("bin", 0, 9));
        let rs = client.query(&qpolicy, pf, statement).await.unwrap();
        let mut rs = rs.into_stream();
        while let Some(res) = rs.next().await {
            match res {
                Ok(rec) => {
                    count += 1;
                    let v: i64 = rec.bins["bin"].clone().into();
                    assert!(v >= 0);
                    assert!(v < 10);
                }
                Err(err) => panic!("{:?}", err),
            }
        }
        pf = rs.partition_filter().await.unwrap();
    }
    assert_eq!(count, 10);
    assert_eq!(iter, 11);

    let mut pf = PartitionFilter::all();
    qpolicy.max_records = (EXPECTED / 3) as u64;
    iter = 0;
    count = 0;
    while !pf.done() {
        iter += 1;
        // Range Query
        let statement = Statement::new(namespace, &set_name, Bins::Some(vec!["bin".into()]));
        let rs = client.query(&qpolicy, pf, statement).await.unwrap();
        let mut rs = rs.into_stream();
        while let Some(res) = rs.next().await {
            match res {
                Ok(rec) => {
                    count += 1;
                    rec.bins.get("bin").unwrap(); // must exists
                }
                Err(err) => panic!("{:?}", err),
            }
        }
        pf = rs.partition_filter().await.unwrap();
    }
    assert_eq!(count, EXPECTED);
    assert_eq!(iter, 4);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_single_consumer_rps() {
    let client = common::client().await;

    // only run on single node clusters
    if client.nodes().len() != 1 {
        return;
    }

    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let mut qpolicy = QueryPolicy::default();

    // Range Query
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::range("bin", 0, (EXPECTED / 3) as i64));

    qpolicy.records_per_second = 3;
    let start_time = Instant::now();
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                let v: i64 = rec.bins["bin"].clone().into();
                assert!(v >= 0);
                assert!(v <= (EXPECTED / 3) as i64);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, EXPECTED / 3 + 1);

    // Should take at least 3 seconds due to rps
    let duration = Instant::now() - start_time;
    assert!(duration.as_millis() > 3000);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_nobins() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let qpolicy = QueryPolicy::default();

    let mut statement = Statement::new(namespace, &set_name, Bins::None);
    statement.add_filter(Filter::range("bin", 0, 9));
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                assert!(rec.generation > 0);
                assert_eq!(0, rec.bins.len());
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_some_bins() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let qpolicy = QueryPolicy::default();

    let mut statement = Statement::new(namespace, &set_name, Bins::Some(vec!["bin".into()]));
    statement.add_filter(Filter::range("bin", 0, 9));
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                assert!(rec.generation > 0);
                assert_eq!(1, rec.bins.len());
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_multi_consumer() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let qpolicy = QueryPolicy::default();

    // Range Query
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    let f = Filter::range("bin", 0, 9);
    statement.add_filter(f);

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();

    let count = Arc::new(AtomicUsize::new(0));
    let mut threads = vec![];

    for _ in 0..8 {
        let count = count.clone();
        let rs = rs.clone();
        threads.push(aerospike_rt::spawn(async move {
            let mut rs = rs.into_stream();
            while let Some(res) = rs.next().await {
                match res {
                    Ok(rec) => {
                        count.fetch_add(1, Ordering::Relaxed);
                        let v: i64 = rec.bins["bin"].clone().into();
                        assert!(v >= 0);
                        assert!(v < 10);
                    }
                    Err(err) => panic!("{:?}", err),
                }
            }
        }));
    }

    futures::future::join_all(threads).await;

    assert_eq!(count.load(Ordering::Relaxed), 10);

    client.close().await.unwrap();
}

// https://github.com/aerospike/aerospike-client-rust/issues/115
#[aerospike_macro::test]
async fn query_large_i64() {
    const SET: &str = "large_i64";
    const BIN: &str = "val";

    let client = Arc::new(common::client().await);
    let value = Value::from(i64::max_value());
    let key = Key::new(common::namespace(), SET, value.clone()).unwrap();
    let wpolicy = WritePolicy::default();
    let apolicy = AdminPolicy::default();

    let res = client
        .put(&wpolicy, &key, &[aerospike::Bin::new(BIN.into(), value)])
        .await;

    assert!(res.is_ok());

    let mut qpolicy = aerospike::QueryPolicy::new();
    let bin_name = aerospike::expressions::int_bin(BIN.into());
    let bin_val = aerospike::expressions::int_val(i64::max_value());
    qpolicy
        .base_policy
        .filter_expression
        .replace(aerospike::expressions::eq(bin_name, bin_val));
    let stmt = aerospike::Statement::new(common::namespace(), SET, aerospike::Bins::All);
    let pf = PartitionFilter::all();
    let recordset = client.query(&qpolicy, pf, stmt).await.unwrap();

    let mut recordset = recordset.into_stream();
    while let Some(r) = recordset.next().await {
        assert!(r.is_ok());
        let int = r.unwrap().bins.remove(BIN).unwrap();
        assert_eq!(int, Value::Int(i64::max_value()));
    }

    let _ = client.truncate(&apolicy, common::namespace(), SET, 0).await;
}

#[aerospike_macro::test]
async fn test_query_geo_within_geojson_region() {
    let namespace: &str = common::namespace();
    let set_name = &common::rand_str(10);
    let bin_name = "geo_bin";

    let client = Arc::new(common::client().await);
    let apolicy = AdminPolicy::default();

    let task = client
        .create_index_on_bin(
            &apolicy,
            namespace,
            set_name,
            bin_name,
            &format!("{}_{}_{}", namespace, set_name, bin_name),
            IndexType::Geo2DSphere,
            CollectionIndexType::Default,
            None,
        )
        .await
        .expect("Failed to create index");
    task.wait_till_complete(None).await.unwrap();

    let wp = WritePolicy::default();

    // Records inside the polygon
    let key1 = as_key!(namespace, set_name, "point1");
    client
        .put(
            &wp,
            &key1,
            &vec![as_bin!(
                bin_name,
                as_geo!(r#"{"type": "Point", "coordinates": [-122.0, 37.5]}"#)
            )],
        )
        .await
        .unwrap();

    let key2 = as_key!(namespace, set_name, "point2");
    client
        .put(
            &wp,
            &key2,
            &vec![as_bin!(
                bin_name,
                as_geo!(r#"{"type": "Point", "coordinates": [-121.5, 37.5]}"#)
            )],
        )
        .await
        .unwrap();

    // Record outside the polygon
    let key3 = as_key!(namespace, set_name, "point3");
    client
        .put(
            &wp,
            &key3,
            &vec![as_bin!(
                bin_name,
                as_geo!(r#"{"type": "Point", "coordinates": [-120.0, 37.5]}"#)
            )],
        )
        .await
        .unwrap();

    let region_str = r#"{
            "type": "Polygon",
            "coordinates": [[[-122.500000, 37.000000],
                             [-121.000000, 37.000000],
                             [-121.000000, 38.080000],
                             [-122.500000, 38.080000],
                             [-122.500000, 37.000000]]]
        }"#;

    let predicate = Filter::geo_within_region(bin_name, region_str);

    let qpolicy = QueryPolicy::default();
    let mut stmt = aerospike::Statement::new(namespace, set_name, aerospike::Bins::All);
    stmt.add_filter(predicate);
    let pf = PartitionFilter::all();
    let mut rs = client
        .query(&qpolicy, pf, stmt)
        .await
        .unwrap()
        .into_stream();

    let mut count = 0;
    while let Some(r) = rs.next().await {
        assert!(r.is_ok());
        count += 1;
    }

    assert!(count == 2);

    let _ = client.truncate(&apolicy, namespace, set_name, 0).await;
}

/// Query with a secondary index filter and specific bin selection.
/// This exercises the QUERY_BINLIST wire-protocol field: when a filter is
/// present, bin names are sent as a compact QUERY_BINLIST field rather than
/// individual READ operations.
#[aerospike_macro::test]
async fn query_filter_with_specific_bins() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let qpolicy = QueryPolicy::default();

    // Request only "bin" and "bin2" out of three bins (bin, bin2, extra)
    let mut statement = Statement::new(
        namespace,
        &set_name,
        Bins::Some(vec!["bin".into(), "bin2".into()]),
    );
    statement.add_filter(Filter::range("bin", 0, 9));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                // Exactly the two requested bins should be present
                assert_eq!(rec.bins.len(), 2, "expected 2 bins, got {:?}", rec.bins);
                assert!(rec.bins.contains_key("bin"), "missing 'bin'");
                assert!(rec.bins.contains_key("bin2"), "missing 'bin2'");
                assert!(
                    !rec.bins.contains_key("extra"),
                    "'extra' should not be returned"
                );
                let v: i64 = rec.bins["bin"].clone().into();
                assert!(v >= 0 && v < 10);
                assert_eq!(rec.bins["bin2"], as_val!("hello"));
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

/// Query using `Filter::new_by_index` to target a specific secondary index by name.
/// The server should use the named index instead of performing an index lookup by bin name.
#[aerospike_macro::test]
async fn query_filter_with_index_name() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let qpolicy = QueryPolicy::default();

    // The index name created by create_test_set
    let index_name = format!("{}_{}_{}", namespace, set_name, "bin");

    let mut statement = Statement::new(
        namespace,
        &set_name,
        Bins::Some(vec!["bin".into(), "bin2".into()]),
    );
    // Use Filter::range_by_index to target the index by name
    let filter = Filter::range_by_index(&index_name, 0, 9);
    statement.add_filter(filter);

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                assert_eq!(rec.bins.len(), 2, "expected 2 bins, got {:?}", rec.bins);
                assert!(rec.bins.contains_key("bin"), "missing 'bin'");
                assert!(rec.bins.contains_key("bin2"), "missing 'bin2'");
                let v: i64 = rec.bins["bin"].clone().into();
                assert!(v >= 0 && v < 10);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

/// Query with `include_bin_data` set to false.
/// This exercises the `NOBINDATA` flag via the `QueryPolicy.include_bin_data` field.
/// Records should be returned with metadata but no bin data.
#[aerospike_macro::test]
async fn query_include_bin_data_false() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let mut qpolicy = QueryPolicy::default();
    qpolicy.include_bin_data = false;

    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::range("bin", 0, 9));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                assert!(rec.generation > 0);
                assert_eq!(rec.bins.len(), 0, "expected no bins, got {:?}", rec.bins);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

/// Scan (no filter) with specific bin selection.
/// Without a filter, bin names are encoded as READ operations rather than
/// QUERY_BINLIST. This verifies that path still works correctly.
#[aerospike_macro::test]
async fn query_scan_with_specific_bins() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, 50).await;
    let qpolicy = QueryPolicy::default();

    // Scan (no filter) requesting only "bin" and "bin2"
    let statement = Statement::new(
        namespace,
        &set_name,
        Bins::Some(vec!["bin".into(), "bin2".into()]),
    );

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                assert_eq!(rec.bins.len(), 2, "expected 2 bins, got {:?}", rec.bins);
                assert!(rec.bins.contains_key("bin"), "missing 'bin'");
                assert!(rec.bins.contains_key("bin2"), "missing 'bin2'");
                assert!(
                    !rec.bins.contains_key("extra"),
                    "'extra' should not be returned"
                );
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 50);

    client.close().await.unwrap();
}

/// Query using `QueryDuration::LongRelaxAP`.
/// This exercises the fix where `INFO2_RELAX_AP_LONG_QUERY` is correctly
/// written into the info2 byte instead of info1.
#[aerospike_macro::test]
async fn query_long_relax_ap_duration() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let mut qpolicy = QueryPolicy::default();
    qpolicy.expected_duration = QueryDuration::LongRelaxAP;

    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::range("bin", 0, 9));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                let v: i64 = rec.bins["bin"].clone().into();
                assert!(v >= 0 && v < 10);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_operate_write() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;

    let wpolicy = WritePolicy::default();

    // Use query_operate to add 100 to every record's "bin" value in range [0, 99]
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::range("bin", 0, 99));
    let ops = vec![operations::add(&as_bin!("bin", 100))];
    let task = client
        .query_operate(&wpolicy, statement, &ops)
        .await
        .expect("query_operate failed");
    task.wait_till_complete(Some(Duration::from_secs(30)))
        .await
        .expect("task did not complete");

    // Verify the records were updated
    let rpolicy = ReadPolicy::default();
    for i in 0..100_i64 {
        let key = as_key!(namespace, &set_name, i);
        let rec = client.get(&rpolicy, &key, Bins::All).await.unwrap();
        let val: i64 = rec.bins["bin"].clone().into();
        assert_eq!(val, i + 100, "record {i} was not updated correctly");
    }

    client.close().await.unwrap();
}

#[aerospike_macro::test]
async fn query_operate_scan_all() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, 50).await;

    let wpolicy = WritePolicy::default();

    // Use query_operate without filter (scan mode) to set a new bin on all records
    let statement = Statement::new(namespace, &set_name, Bins::All);
    let ops = vec![operations::put(&as_bin!("new_bin", 999))];
    let task = client
        .query_operate(&wpolicy, statement, &ops)
        .await
        .expect("query_operate scan failed");
    task.wait_till_complete(Some(Duration::from_secs(30)))
        .await
        .expect("task did not complete");

    // Verify all records have the new bin
    let rpolicy = ReadPolicy::default();
    for i in 0..50_i64 {
        let key = as_key!(namespace, &set_name, i);
        let rec = client.get(&rpolicy, &key, Bins::All).await.unwrap();
        let val: i64 = rec.bins["new_bin"].clone().into();
        assert_eq!(val, 999, "record {i} missing new_bin");
    }

    client.close().await.unwrap();
}

// ============================================================================
// Filter::equal_by_index — equality filter targeting a named secondary index
// ============================================================================

#[aerospike_macro::test]
async fn query_filter_equal_by_index() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_test_set(&client, EXPECTED).await;
    let qpolicy = QueryPolicy::default();

    let index_name = format!("{}_{}_{}", namespace, set_name, "bin");

    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::equal_by_index(&index_name, 5_i64));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                let v: i64 = rec.bins["bin"].clone().into();
                assert_eq!(v, 5);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 1);

    client.close().await.unwrap();
}

// ============================================================================
// Filter::contains — list collection index
// ============================================================================

async fn create_list_test_set(client: &Client) -> String {
    let namespace = common::namespace();
    let set_name = common::rand_str(10);

    let wpolicy = WritePolicy::default();
    let apolicy = AdminPolicy::default();

    // Each record has a "list_bin" containing a list of integers [i, i+1, i+2],
    // built via list_append_items so the server stores native CDT lists.
    let list_policy = aerospike::operations::lists::ListPolicy::default();
    for i in 0..20_i64 {
        let key = as_key!(namespace, &set_name, i);
        let ops = vec![operations::lists::append_items(
            &list_policy,
            "list_bin",
            vec![as_val!(i), as_val!(i + 1), as_val!(i + 2)],
        )];
        client.operate(&wpolicy, &key, &ops).await.unwrap();
    }

    // Create a secondary index on list elements
    let idx_name = format!("{}_{}_list_bin", namespace, set_name);
    let task = client
        .create_index_on_bin(
            &apolicy,
            namespace,
            &set_name,
            "list_bin",
            &idx_name,
            IndexType::Numeric,
            CollectionIndexType::List,
            None,
        )
        .await
        .expect("Failed to create list index");
    task.wait_till_complete(None).await.unwrap();

    set_name
}

#[aerospike_macro::test]
async fn query_filter_contains_list() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_list_test_set(&client).await;
    let qpolicy = QueryPolicy::default();

    // Value 1 is in record 0's list [0,1,2] and record 1's list [1,2,3]
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::contains(
        "list_bin",
        1_i64,
        CollectionIndexType::List,
    ));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(_) => count += 1,
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 2);

    client.close().await.unwrap();
}

// ============================================================================
// Filter::contains_range — list collection index with range
// ============================================================================

#[aerospike_macro::test]
async fn query_filter_contains_range_list() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = create_list_test_set(&client).await;
    let qpolicy = QueryPolicy::default();

    // Range [0, 1]: matches any record whose list contains a value in [0, 1]
    // record 0: [0,1,2] has 0 and 1 => match
    // record 1: [1,2,3] has 1 => match
    // record 2: [2,3,4] has neither 0 nor 1 => no match
    let mut statement = Statement::new(namespace, &set_name, Bins::All);
    statement.add_filter(Filter::contains_range(
        "list_bin",
        0_i64,
        1_i64,
        CollectionIndexType::List,
    ));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, statement).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(_) => count += 1,
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 2);

    client.close().await.unwrap();
}

// ============================================================================
// Filter::geo_within_radius — points within a radius
// ============================================================================

async fn create_geo_test_set(client: &Client) -> String {
    let namespace = common::namespace();
    let set_name = common::rand_str(10);
    let bin_name = "geo_bin";

    let apolicy = AdminPolicy::default();
    let wp = WritePolicy::default();

    let task = client
        .create_index_on_bin(
            &apolicy,
            namespace,
            &set_name,
            bin_name,
            &format!("{}_{}_{}", namespace, set_name, bin_name),
            IndexType::Geo2DSphere,
            CollectionIndexType::Default,
            None,
        )
        .await
        .expect("Failed to create geo index");
    task.wait_till_complete(None).await.unwrap();

    // Points near San Francisco
    let key1 = as_key!(namespace, &set_name, "close1");
    client
        .put(
            &wp,
            &key1,
            &vec![as_bin!(
                bin_name,
                as_geo!(r#"{"type": "Point", "coordinates": [-122.0, 37.5]}"#)
            )],
        )
        .await
        .unwrap();

    let key2 = as_key!(namespace, &set_name, "close2");
    client
        .put(
            &wp,
            &key2,
            &vec![as_bin!(
                bin_name,
                as_geo!(r#"{"type": "Point", "coordinates": [-122.1, 37.5]}"#)
            )],
        )
        .await
        .unwrap();

    // Point far away (New York)
    let key3 = as_key!(namespace, &set_name, "far");
    client
        .put(
            &wp,
            &key3,
            &vec![as_bin!(
                bin_name,
                as_geo!(r#"{"type": "Point", "coordinates": [-73.9, 40.7]}"#)
            )],
        )
        .await
        .unwrap();

    set_name
}

#[aerospike_macro::test]
async fn query_filter_geo_within_radius() {
    let client = Arc::new(common::client().await);
    let namespace = common::namespace();
    let set_name = create_geo_test_set(&client).await;
    let qpolicy = QueryPolicy::default();

    // 50km radius around [-122.0, 37.5] should include close1 and close2 but not far
    let mut stmt = Statement::new(namespace, &set_name, Bins::All);
    stmt.add_filter(Filter::geo_within_radius("geo_bin", -122.0, 37.5, 50000.0));

    let pf = PartitionFilter::all();
    let mut rs = client
        .query(&qpolicy, pf, stmt)
        .await
        .unwrap()
        .into_stream();

    let mut count = 0;
    while let Some(r) = rs.next().await {
        assert!(r.is_ok());
        count += 1;
    }
    assert_eq!(count, 2);

    let apolicy = AdminPolicy::default();
    let _ = client.truncate(&apolicy, namespace, &set_name, 0).await;
}

// ============================================================================
// Filter::geo_contains — regions containing a point
// ============================================================================

#[aerospike_macro::test]
async fn query_filter_geo_contains() {
    let namespace = common::namespace();
    let set_name = &common::rand_str(10);
    let bin_name = "region_bin";

    let client = Arc::new(common::client().await);
    let apolicy = AdminPolicy::default();
    let wp = WritePolicy::default();

    let task = client
        .create_index_on_bin(
            &apolicy,
            namespace,
            set_name,
            bin_name,
            &format!("{}_{}_{}", namespace, set_name, bin_name),
            IndexType::Geo2DSphere,
            CollectionIndexType::Default,
            None,
        )
        .await
        .expect("Failed to create geo index");
    task.wait_till_complete(None).await.unwrap();

    // Region that contains the test point [-122.0, 37.5]
    let key1 = as_key!(namespace, set_name, "region1");
    client
        .put(
            &wp,
            &key1,
            &vec![as_bin!(
                bin_name,
                as_geo!(
                    r#"{
                    "type": "Polygon",
                    "coordinates": [[[-123.0, 37.0], [-121.0, 37.0],
                                     [-121.0, 38.0], [-123.0, 38.0],
                                     [-123.0, 37.0]]]
                }"#
                )
            )],
        )
        .await
        .unwrap();

    // Region that does NOT contain the test point
    let key2 = as_key!(namespace, set_name, "region2");
    client
        .put(
            &wp,
            &key2,
            &vec![as_bin!(
                bin_name,
                as_geo!(
                    r#"{
                    "type": "Polygon",
                    "coordinates": [[[-74.0, 40.0], [-73.0, 40.0],
                                     [-73.0, 41.0], [-74.0, 41.0],
                                     [-74.0, 40.0]]]
                }"#
                )
            )],
        )
        .await
        .unwrap();

    // Query: which regions contain the point [-122.0, 37.5]?
    let point = r#"{"type": "Point", "coordinates": [-122.0, 37.5]}"#;
    let mut stmt = Statement::new(namespace, set_name, Bins::All);
    stmt.add_filter(Filter::geo_contains(bin_name, point));

    let pf = PartitionFilter::all();
    let mut rs = client
        .query(&QueryPolicy::default(), pf, stmt)
        .await
        .unwrap()
        .into_stream();

    let mut count = 0;
    while let Some(r) = rs.next().await {
        assert!(r.is_ok());
        count += 1;
    }
    assert_eq!(count, 1);

    let _ = client.truncate(&apolicy, namespace, set_name, 0).await;
}

// ============================================================================
// Filter::expression() builder — expression-based secondary index on filter
// ============================================================================

#[aerospike_macro::test]
async fn query_filter_with_expression_builder() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = common::rand_str(10);
    let apolicy = AdminPolicy::default();
    let wpolicy = WritePolicy::default();

    for i in 0..50_i64 {
        let key = as_key!(namespace, &set_name, i);
        let bins = vec![as_bin!("a", i)];
        client.put(&wpolicy, &key, &bins).await.unwrap();
    }

    // Create an expression-based secondary index: int_bin("a")
    let exp = aerospike::expressions::int_bin("a".to_string());
    let idx_name = format!("{}_{}_exp_a", namespace, set_name);
    let task = client
        .create_index_using_expression(
            &apolicy,
            namespace,
            &set_name,
            &idx_name,
            IndexType::Numeric,
            CollectionIndexType::Default,
            &exp,
        )
        .await
        .expect("Failed to create expression index");
    task.wait_till_complete(None).await.unwrap();

    // Query using Filter::range().expression() builder
    let mut stmt = Statement::new(namespace, &set_name, Bins::All);
    stmt.add_filter(Filter::range("a", 0_i64, 9_i64).expression(exp));

    let qpolicy = QueryPolicy::default();
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, stmt).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                let v: i64 = rec.bins["a"].clone().into();
                assert!(v >= 0 && v <= 9);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    assert_eq!(count, 10);

    client.close().await.unwrap();
}

// ============================================================================
// Filter::context() builder — CDT context on secondary index filter
// ============================================================================

#[aerospike_macro::test]
async fn query_filter_with_context_builder() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = common::rand_str(10);
    let apolicy = AdminPolicy::default();
    let wpolicy = WritePolicy::default();

    let bin_name = "nested";

    // Each record has a "nested" bin containing a list with a single integer: [i]
    for i in 0..20_i64 {
        let key = as_key!(namespace, &set_name, i);
        let list_val = as_list!(i);
        let bins = vec![as_bin!(bin_name, list_val)];
        client.put(&wpolicy, &key, &bins).await.unwrap();
    }

    // Create a secondary index on list element at index 0 using CDT context
    use aerospike::operations::cdt_context::ctx_list_index;
    let ctx = vec![ctx_list_index(0)];
    let idx_name = format!("{}_{}_nested_ctx", namespace, set_name);
    let task = client
        .create_index_on_bin(
            &apolicy,
            namespace,
            &set_name,
            bin_name,
            &idx_name,
            IndexType::Numeric,
            CollectionIndexType::Default,
            Some(&ctx),
        )
        .await
        .expect("Failed to create context index");
    task.wait_till_complete(None).await.unwrap();

    // Query using Filter::range().context() builder
    let mut stmt = Statement::new(namespace, &set_name, Bins::All);
    stmt.add_filter(Filter::range(bin_name, 0_i64, 4_i64).context(vec![ctx_list_index(0)]));

    let qpolicy = QueryPolicy::default();
    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, stmt).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(_) => count += 1,
            Err(err) => panic!("{:?}", err),
        }
    }
    // Records 0..=4 have list [0]..[4], all in range [0,4]
    assert_eq!(count, 5);

    client.close().await.unwrap();
}

// ============================================================================
// Filter::expression() + QueryPolicy.filter_expression combined
// ============================================================================

/// Tests that Filter.expression (index selection) and QueryPolicy.filter_expression
/// (post-filter) work correctly together in the same query.
///
/// Filter.expression selects the expression-based secondary index for the lookup.
/// QueryPolicy.filter_expression further narrows down the returned records.
#[aerospike_macro::test]
async fn query_filter_expression_with_policy_filter() {
    let client = common::client().await;
    let namespace = common::namespace();
    let set_name = common::rand_str(10);
    let apolicy = AdminPolicy::default();
    let wpolicy = WritePolicy::default();

    // Write 50 records: bin "a" = i, bin "b" = i % 2 (0 or 1)
    for i in 0..50_i64 {
        let key = as_key!(namespace, &set_name, i);
        let bins = vec![as_bin!("a", i), as_bin!("b", i % 2)];
        client.put(&wpolicy, &key, &bins).await.unwrap();
    }

    // Create an expression-based secondary index on int_bin("a")
    let idx_exp = aerospike::expressions::int_bin("a".to_string());
    let idx_name = format!("{}_{}_exp_ab", namespace, set_name);
    let task = client
        .create_index_using_expression(
            &apolicy,
            namespace,
            &set_name,
            &idx_name,
            IndexType::Numeric,
            CollectionIndexType::Default,
            &idx_exp,
        )
        .await
        .expect("Failed to create expression index");
    task.wait_till_complete(None).await.unwrap();

    // Filter.expression: use the expression-based index to find records with a in [0, 9]
    // QueryPolicy.filter_expression: post-filter to only return records where b == 0 (even a)
    let mut qpolicy = QueryPolicy::default();
    qpolicy
        .base_policy
        .filter_expression
        .replace(aerospike::expressions::eq(
            aerospike::expressions::int_bin("b".to_string()),
            aerospike::expressions::int_val(0),
        ));

    let mut stmt = Statement::new(namespace, &set_name, Bins::All);
    stmt.add_filter(Filter::range("a", 0_i64, 9_i64).expression(idx_exp));

    let pf = PartitionFilter::all();
    let rs = client.query(&qpolicy, pf, stmt).await.unwrap();
    let mut count = 0;
    let mut rs = rs.into_stream();
    while let Some(res) = rs.next().await {
        match res {
            Ok(rec) => {
                count += 1;
                let a: i64 = rec.bins["a"].clone().into();
                let b: i64 = rec.bins["b"].clone().into();
                assert!(a >= 0 && a <= 9, "a={} out of index range", a);
                assert_eq!(b, 0, "post-filter should exclude odd records, a={}", a);
            }
            Err(err) => panic!("{:?}", err),
        }
    }
    // a in [0,9] => 10 records, but only even a values have b==0: {0,2,4,6,8} => 5
    assert_eq!(count, 5);

    client.close().await.unwrap();
}