force 0.2.0

Production-ready Salesforce Platform API client with REST and Bulk API 2.0 support
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
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
//! Bulk Query API for Salesforce Bulk API 2.0.
//!
//! This module provides functionality for executing bulk queries against Salesforce,
//! allowing efficient retrieval of large datasets via CSV streaming.
//!
//! # Query Lifecycle
//!
//! 1. Create a query job with SOQL
//! 2. Poll job status until complete
//! 3. Stream CSV results
//! 4. Process results as typed records or DynamicSObject
//!
//! # Examples
//!
//! ```ignore
//! use force::api::bulk::query::{BulkQueryRequest, BulkQueryStream};
//!
//! // Create query job
//! let request = BulkQueryRequest::new("SELECT Id, Name FROM Account");
//! let job = client.bulk().create_query_job(request).await?;
//!
//! // Wait for completion
//! let completed = client.bulk().wait_for_query_job(&job.id).await?;
//!
//! // Stream results
//! let mut stream = client.bulk().query_results::<Account>(&job.id).await?;
//! while let Some(record) = stream.next().await? {
//!     println!("{:?}", record);
//! }
//! ```

use crate::api::bulk::BulkPollPolicy;
use crate::api::bulk::types::JobState;
use crate::error::Result;
use futures::Stream;
use serde::{Deserialize, Serialize};
use std::collections::VecDeque;
use std::sync::Arc;

/// Request to create a bulk query job.
#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BulkQueryRequest {
    /// The SOQL query to execute.
    pub query: String,
    /// Operation type (always "query" for bulk queries).
    pub operation: String,
}

impl BulkQueryRequest {
    /// Creates a new bulk query request.
    ///
    /// # Arguments
    ///
    /// * `query` - The SOQL query string
    ///
    /// # Examples
    ///
    /// ```
    /// use force::api::bulk::BulkQueryRequest;
    ///
    /// let request = BulkQueryRequest::new("SELECT Id, Name FROM Account WHERE CreatedDate > TODAY");
    /// ```
    #[must_use]
    pub fn new(query: impl Into<String>) -> Self {
        Self {
            query: query.into(),
            operation: "query".to_string(),
        }
    }
}

/// Response from creating a bulk query job.
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BulkQueryJobInfo {
    /// Unique job ID.
    pub id: String,
    /// Operation type (query).
    pub operation: String,
    /// Job state.
    pub state: super::types::JobState,
    /// Job creation timestamp.
    pub created_date: String,
    /// User who created the job.
    pub created_by_id: String,
    /// System modstamp timestamp.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub system_modstamp: Option<String>,
    /// Number of records processed.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub number_records_processed: Option<i64>,
    /// Total processing time in milliseconds.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub total_processing_time: Option<i64>,
    /// API version.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        deserialize_with = "super::types::deserialize_optional_string_or_number"
    )]
    pub api_version: Option<String>,
}

/// Stream for iterating over bulk query results.
///
/// This stream lazily fetches and deserializes CSV results from a completed
/// bulk query job. It's memory-efficient and suitable for processing large
/// result sets (100MB+).
///
/// Use `next().await` for simple iteration, or `into_stream()` to convert
/// to a standard `futures::Stream` for use with combinators.
pub struct BulkQueryStream<T, A: crate::auth::Authenticator> {
    /// Reference to the client's inner state.
    inner: Arc<crate::session::Session<A>>,
    /// Job ID for the query.
    job_id: String,
    /// Current batch of records being iterated.
    records: VecDeque<T>,
    /// Result locator for the next page (`None` means first page).
    next_locator: Option<String>,
    /// Whether the first page has been fetched.
    first_page_fetched: bool,
    /// Whether all records have been fetched.
    exhausted: bool,
}

impl<T, A: crate::auth::Authenticator> BulkQueryStream<T, A> {
    /// Creates a new bulk query stream.
    #[must_use]
    pub(crate) fn new(inner: Arc<crate::session::Session<A>>, job_id: String) -> Self {
        Self {
            inner,
            job_id,
            records: VecDeque::new(),
            next_locator: None,
            first_page_fetched: false,
            exhausted: false,
        }
    }

    /// Creates a new bulk query stream (async version for convenience methods).
    ///
    /// # Errors
    ///
    /// This version always succeeds; errors occur during streaming.
    #[allow(clippy::unused_async)]
    pub(crate) async fn new_async(
        inner: Arc<crate::session::Session<A>>,
        job_id: &str,
    ) -> Result<Self> {
        Ok(Self::new(inner, job_id.to_string()))
    }

    /// Fetches the next record from the stream.
    ///
    /// Returns `None` when all records have been consumed.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Authentication fails
    /// - The HTTP request fails
    /// - CSV deserialization fails
    #[allow(clippy::future_not_send)]
    pub async fn next(&mut self) -> Result<Option<T>>
    where
        T: for<'de> Deserialize<'de>,
    {
        loop {
            // If we've already marked as exhausted, return None
            if self.exhausted {
                return Ok(None);
            }

            // If we have records in the buffer, return the next one
            if let Some(record) = self.records.pop_front() {
                return Ok(Some(record));
            }

            if self.first_page_fetched && self.next_locator.is_none() {
                self.exhausted = true;
                return Ok(None);
            }

            self.fetch_next_page().await?;

            // If we fetched a page but it's empty, and there is no next locator, we are done
            if self.records.is_empty() && self.next_locator.is_none() {
                self.exhausted = true;
                return Ok(None);
            }

            // If it's empty but there IS a next locator, the loop will continue and fetch the next page.
        }
    }

    #[allow(clippy::future_not_send)]
    async fn fetch_next_page(&mut self) -> Result<()>
    where
        T: for<'de> Deserialize<'de>,
    {
        let response = self.execute_fetch_request().await?;
        self.update_locator(&response);
        self.deserialize_csv(response).await
    }

    #[allow(clippy::future_not_send)]
    async fn execute_fetch_request(&self) -> Result<reqwest::Response> {
        let base_url = self
            .inner
            .resolve_url(&format!("jobs/query/{}/results", self.job_id))
            .await?;
        let mut request_builder = self.inner.get(&base_url);
        if let Some(locator) = &self.next_locator {
            request_builder = request_builder.query(&[("locator", locator)]);
        }

        let request = request_builder
            .build()
            .map_err(crate::error::HttpError::from)?;
        self.inner
            .execute_and_check_success(
                request,
                &format!("Failed to fetch query results for job {}", self.job_id),
            )
            .await
    }

    fn update_locator(&mut self, response: &reqwest::Response) {
        self.first_page_fetched = true;
        self.next_locator = response
            .headers()
            .get("Sforce-Locator")
            .and_then(|value| value.to_str().ok())
            .and_then(|s| {
                if s == "null" {
                    None
                } else {
                    Some(s.to_string())
                }
            });
    }

    #[allow(clippy::future_not_send)]
    async fn deserialize_csv(&mut self, response: reqwest::Response) -> Result<()>
    where
        T: for<'de> Deserialize<'de>,
    {
        let csv_bytes =
            crate::http::error::read_capped_body_bytes(response, 100 * 1024 * 1024).await?;

        let mut reader = csv::Reader::from_reader(csv_bytes.as_slice());

        // Reuse the existing VecDeque allocation across pages
        self.records.clear();
        for result in reader.deserialize() {
            let record: T = result.map_err(crate::error::SerializationError::from)?;
            self.records.push_back(record);
        }

        Ok(())
    }

    /// Converts this query stream into a `futures::Stream`.
    ///
    /// This allows using `StreamExt` combinators like `map`, `filter`, `collect`, etc.
    ///
    /// # Examples
    ///
    /// ```ignore
    /// use futures::StreamExt;
    ///
    /// let results: Vec<_> = client.bulk().query_results::<Account>(&job_id)
    ///     .await?
    ///     .into_stream()
    ///     .map(|r| r.map(|a| a.name))
    ///     .collect()
    ///     .await;
    /// ```
    pub fn into_stream(self) -> impl Stream<Item = Result<T>>
    where
        T: for<'de> Deserialize<'de> + Unpin,
    {
        futures::stream::unfold(self, |mut stream| async move {
            match stream.next().await {
                Ok(Some(item)) => Some((Ok(item), stream)),
                Ok(None) => None,
                Err(e) => Some((Err(e), stream)),
            }
        })
    }
}

/// Extension methods for `BulkHandler` to support bulk queries.
impl<A: crate::auth::Authenticator> super::BulkHandler<A> {
    /// Constructs the base URL for Bulk Query API operations.
    ///
    /// The base URL is constructed as: `{instance_url}/services/data/{api_version}/jobs/query`
    ///
    /// # Errors
    ///
    /// Returns an error if token retrieval fails.
    pub async fn query_base_url(&self) -> Result<String> {
        self.inner.resolve_url("jobs/query").await
    }

    /// Creates a new bulk query job.
    ///
    /// Submits a SOQL query for bulk execution. The job will be processed
    /// asynchronously and results can be retrieved once the job completes.
    ///
    /// # Arguments
    ///
    /// * `request` - The bulk query request with SOQL
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Authentication fails
    /// - The HTTP request fails
    /// - The SOQL query is invalid
    /// - The response cannot be deserialized
    ///
    /// # Examples
    ///
    /// ```ignore
    /// use force::api::bulk::BulkQueryRequest;
    ///
    /// let request = BulkQueryRequest::new("SELECT Id, Name FROM Account");
    /// let job = client.bulk().create_query_job(request).await?;
    /// ```
    pub async fn create_query_job(&self, request: BulkQueryRequest) -> Result<BulkQueryJobInfo> {
        let url = self.query_base_url().await?;
        let inner = &*self.inner;
        let request = inner
            .post(&url)
            .json(&request)
            .build()
            .map_err(crate::error::HttpError::from)?;

        inner
            .send_request_and_decode::<BulkQueryJobInfo>(request, "Create query job request failed")
            .await
    }

    /// Retrieves information about a bulk query job.
    ///
    /// Gets the current state and statistics for a bulk query job.
    ///
    /// # Arguments
    ///
    /// * `job_id` - The unique identifier for the query job
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Authentication fails
    /// - The HTTP request fails
    /// - The job does not exist
    /// - The response cannot be deserialized
    ///
    /// # Examples
    ///
    /// ```ignore
    /// let job = client.bulk().get_query_job("750xx0000000001AAA").await?;
    /// println!("Job state: {:?}", job.state);
    /// ```
    pub async fn get_query_job(&self, job_id: &str) -> Result<BulkQueryJobInfo> {
        let url = self
            .inner
            .resolve_url(&format!("jobs/query/{}", job_id))
            .await?;
        let inner = &*self.inner;
        let request = inner
            .get(&url)
            .build()
            .map_err(crate::error::HttpError::from)?;

        inner
            .send_request_and_decode::<BulkQueryJobInfo>(
                request,
                &format!("Get query job request failed for job {}", job_id),
            )
            .await
    }

    /// Aborts a running bulk query job.
    ///
    /// Cancels a query job that is in progress. Once aborted, the job cannot
    /// be resumed and results cannot be retrieved.
    ///
    /// # Arguments
    ///
    /// * `job_id` - The unique identifier for the query job
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Authentication fails
    /// - The HTTP request fails
    /// - The job does not exist
    /// - The job is already complete
    ///
    /// # Examples
    ///
    /// ```ignore
    /// client.bulk().abort_query_job("750xx0000000001AAA").await?;
    /// ```
    pub async fn abort_query_job(&self, job_id: &str) -> Result<BulkQueryJobInfo> {
        let url = self
            .inner
            .resolve_url(&format!("jobs/query/{}", job_id))
            .await?;
        let inner = &*self.inner;

        let update_request = super::types::UpdateJobRequest {
            state: super::types::JobState::Aborted,
        };

        let request = inner
            .patch(&url)
            .json(&update_request)
            .build()
            .map_err(crate::error::HttpError::from)?;

        inner
            .send_request_and_decode::<BulkQueryJobInfo>(
                request,
                &format!("Abort query job request failed for job {}", job_id),
            )
            .await
    }

    /// Deletes a bulk query job.
    ///
    /// Permanently deletes a query job. Results will no longer be available.
    ///
    /// # Arguments
    ///
    /// * `job_id` - The unique identifier for the query job
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Authentication fails
    /// - The HTTP request fails
    /// - The job does not exist
    ///
    /// # Examples
    ///
    /// ```ignore
    /// client.bulk().delete_query_job("750xx0000000001AAA").await?;
    /// ```
    pub async fn delete_query_job(&self, job_id: &str) -> Result<()> {
        let url = self
            .inner
            .resolve_url(&format!("jobs/query/{}", job_id))
            .await?;
        let inner = &*self.inner;
        let request = inner
            .delete(&url)
            .build()
            .map_err(crate::error::HttpError::from)?;
        inner
            .execute_and_check_success(
                request,
                &format!("Delete query job request failed for job {}", job_id),
            )
            .await?;
        Ok(())
    }

    /// Streams results from a completed bulk query job.
    ///
    /// Returns a stream that lazily fetches and deserializes CSV results.
    /// This is memory-efficient for large result sets.
    ///
    /// # Type Parameters
    ///
    /// * `T` - The record type to deserialize. Must implement `Deserialize`.
    ///
    /// # Arguments
    ///
    /// * `job_id` - The unique identifier for the completed query job
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Authentication fails
    /// - The job is not complete
    /// - The HTTP request fails
    ///
    /// # Examples
    ///
    /// ```ignore
    /// let mut stream = client.bulk().query_results::<Account>("750xx0000000001AAA").await?;
    /// while let Some(record) = stream.next().await? {
    ///     println!("{:?}", record);
    /// }
    /// ```
    #[allow(clippy::unused_async)]
    pub async fn query_results<T>(&self, job_id: &str) -> Result<BulkQueryStream<T, A>>
    where
        T: for<'de> Deserialize<'de>,
    {
        // Placeholder for GREEN phase
        Ok(BulkQueryStream::new(
            Arc::clone(&self.inner),
            job_id.to_string(),
        ))
    }

    /// Convenience method to perform a bulk query operation.
    ///
    /// Creates a bulk query job, polls until completion, and returns a stream of results.
    ///
    /// # Arguments
    ///
    /// * `soql` - The SOQL query string
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - Job creation fails
    /// - Job processing fails
    /// - Result streaming fails
    ///
    /// # Examples
    ///
    /// ```ignore
    /// use serde::Deserialize;
    ///
    /// #[derive(Deserialize)]
    /// struct Account {
    ///     #[serde(rename = "Id")]
    ///     id: String,
    ///     #[serde(rename = "Name")]
    ///     name: String,
    /// }
    ///
    /// let soql = "SELECT Id, Name FROM Account WHERE Industry = 'Technology'";
    /// let mut stream = client.bulk().query::<Account>(soql).await?;
    ///
    /// while let Some(account) = stream.next().await? {
    ///     println!("{}: {}", account.id, account.name);
    /// }
    /// ```
    #[cfg(feature = "bulk")]
    pub async fn query<T>(&self, soql: &str) -> Result<BulkQueryStream<T, A>>
    where
        T: for<'de> serde::Deserialize<'de>,
    {
        self.bulk_query_with_policy(soql, BulkPollPolicy::default())
            .await
    }

    /// Convenience method to perform a bulk query operation (legacy name).
    #[cfg(feature = "bulk")]
    pub async fn bulk_query<T>(&self, soql: &str) -> Result<BulkQueryStream<T, A>>
    where
        T: for<'de> serde::Deserialize<'de>,
    {
        self.query(soql).await
    }

    /// Creates a bulk query job with a custom polling policy and returns a stream of results.
    ///
    /// This variant lets callers tune polling behavior for long-running jobs.
    #[cfg(feature = "bulk")]
    pub async fn bulk_query_with_policy<T>(
        &self,
        soql: &str,
        poll_policy: BulkPollPolicy,
    ) -> Result<BulkQueryStream<T, A>>
    where
        T: for<'de> serde::Deserialize<'de>,
    {
        // Create query job
        let request = BulkQueryRequest::new(soql);
        let job = self.create_query_job(request).await?;
        self.poll_query_job_until_complete(&job.id, poll_policy)
            .await?;

        // Return results stream
        self.query_results(&job.id).await
    }

    #[cfg(feature = "bulk")]
    async fn poll_query_job_until_complete(
        &self,
        job_id: &str,
        poll_policy: BulkPollPolicy,
    ) -> Result<()> {
        let mut attempt = 0;
        loop {
            let job_info = self.get_query_job(job_id).await?;

            match job_info.state {
                JobState::JobComplete => return Ok(()),
                JobState::Failed => {
                    return Err(crate::error::HttpError::StatusError {
                        status_code: 500,
                        message: "Query job failed during processing".to_string(),
                    }
                    .into());
                }
                JobState::Aborted => {
                    return Err(crate::error::HttpError::StatusError {
                        status_code: 400,
                        message: "Query job was aborted".to_string(),
                    }
                    .into());
                }
                _ => {
                    if attempt >= poll_policy.max_attempts {
                        return Err(crate::error::HttpError::Timeout {
                            timeout_seconds: poll_policy.timeout_seconds(),
                        }
                        .into());
                    }

                    tokio::time::sleep(poll_policy.backoff_for_attempt(attempt)).await;
                    attempt += 1;
                }
            }
        }
    }
}
#[cfg(test)]
mod tests {
    use super::*;
    use crate::api::bulk::types::JobState;
    use crate::client::{ForceClient, builder};
    use crate::test_support::{MockAuthenticator, Must, MustMsg};
    use wiremock::matchers::{
        bearer_token, body_string_contains, header, method, path, query_param,
        query_param_is_missing,
    };
    use wiremock::{Mock, MockServer, ResponseTemplate};

    async fn create_test_client(mock_server_url: String) -> ForceClient<MockAuthenticator> {
        let auth = MockAuthenticator::new("test_token", &mock_server_url);
        builder()
            .authenticate(auth)
            .build()
            .await
            .must_msg("failed to create test client")
    }

    // Existing tests...
    #[test]
    fn test_bulk_query_request_new() {
        let request = BulkQueryRequest::new("SELECT Id FROM Account");
        assert_eq!(request.query, "SELECT Id FROM Account");
        assert_eq!(request.operation, "query");
    }

    // ... (include all existing tests here)

    #[test]
    fn test_bulk_query_request_serialization() {
        let request = BulkQueryRequest::new("SELECT Id, Name FROM Contact");
        let json = serde_json::to_string(&request).must();
        assert!(json.contains(r#""query":"SELECT Id, Name FROM Contact""#));
        assert!(json.contains(r#""operation":"query""#));
    }

    #[tokio::test]
    async fn test_query_base_url_construction() {
        let mock_server = MockServer::start().await;
        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let base_url = handler.query_base_url().await.must();
        assert!(base_url.contains(&mock_server.uri()));
        assert!(base_url.contains("/services/data/"));
        assert!(base_url.ends_with("v60.0/jobs/query"));
    }

    #[tokio::test]
    async fn test_create_query_job_success() {
        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .and(bearer_token("test_token"))
            .and(header("content-type", "application/json"))
            .and(body_string_contains("SELECT Id FROM Account"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000001AAA",
                "operation": "query",
                "state": "InProgress",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let request = BulkQueryRequest::new("SELECT Id FROM Account");
        let job = handler.create_query_job(request).await.must();

        assert_eq!(job.id, "750xx0000000001AAA");
        assert_eq!(job.operation, "query");
        assert_eq!(job.state, JobState::InProgress);
    }

    #[tokio::test]
    async fn test_create_query_job_with_complex_soql() {
        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .and(body_string_contains(
                "SELECT Id, Name, (SELECT FirstName FROM Contacts)",
            ))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000002AAA",
                "operation": "query",
                "state": "InProgress",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let request =
            BulkQueryRequest::new("SELECT Id, Name, (SELECT FirstName FROM Contacts) FROM Account");
        let job = handler.create_query_job(request).await.must();

        assert_eq!(job.id, "750xx0000000002AAA");
    }

    #[tokio::test]
    async fn test_create_query_job_invalid_soql() {
        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .respond_with(ResponseTemplate::new(400).set_body_json(serde_json::json!({
                "message": "Invalid SOQL query",
                "errorCode": "INVALID_QUERY"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let request = BulkQueryRequest::new("SELECT InvalidField FROM Account");
        let result = handler.create_query_job(request).await;

        let Err(err) = result else {
            panic!("Expected an error");
        };
        assert!(err.to_string().contains(""));
    }

    #[tokio::test]
    async fn test_get_query_job_in_progress() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000001AAA"))
            .and(bearer_token("test_token"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000001AAA",
                "operation": "query",
                "state": "InProgress",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let job = handler.get_query_job("750xx0000000001AAA").await.must();

        assert_eq!(job.id, "750xx0000000001AAA");
        assert_eq!(job.state, JobState::InProgress);
    }

    #[tokio::test]
    async fn test_get_query_job_complete() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000001AAA"))
            .and(bearer_token("test_token"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000001AAA",
                "operation": "query",
                "state": "JobComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA",
                "numberRecordsProcessed": 1500,
                "totalProcessingTime": 8500
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let job = handler.get_query_job("750xx0000000001AAA").await.must();

        assert_eq!(job.state, JobState::JobComplete);
        assert_eq!(job.number_records_processed, Some(1500));
        assert_eq!(job.total_processing_time, Some(8500));
    }

    #[tokio::test]
    async fn test_get_query_job_not_found() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000999AAA"))
            .respond_with(ResponseTemplate::new(404))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let result = handler.get_query_job("750xx0000000999AAA").await;
        let Err(err) = result else {
            panic!("Expected an error");
        };
        assert!(err.to_string().contains(""));
    }

    #[tokio::test]
    async fn test_abort_query_job_success() {
        let mock_server = MockServer::start().await;

        Mock::given(method("PATCH"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000001AAA"))
            .and(bearer_token("test_token"))
            .and(header("content-type", "application/json"))
            .and(body_string_contains("Aborted"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000001AAA",
                "operation": "query",
                "state": "Aborted",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let job = handler.abort_query_job("750xx0000000001AAA").await.must();

        assert_eq!(job.state, JobState::Aborted);
    }

    #[tokio::test]
    async fn test_abort_query_job_already_complete() {
        let mock_server = MockServer::start().await;

        Mock::given(method("PATCH"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000001AAA"))
            .respond_with(ResponseTemplate::new(400).set_body_json(serde_json::json!({
                "message": "Cannot abort completed job",
                "errorCode": "INVALID_OPERATION"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let result = handler.abort_query_job("750xx0000000001AAA").await;
        let Err(err) = result else {
            panic!("Expected an error");
        };
        assert!(err.to_string().contains(""));
    }

    #[tokio::test]
    async fn test_delete_query_job_success() {
        let mock_server = MockServer::start().await;

        Mock::given(method("DELETE"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000001AAA"))
            .and(bearer_token("test_token"))
            .respond_with(ResponseTemplate::new(204))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let result = handler.delete_query_job("750xx0000000001AAA").await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_delete_query_job_not_found() {
        let mock_server = MockServer::start().await;

        Mock::given(method("DELETE"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000999AAA"))
            .respond_with(ResponseTemplate::new(404))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let result = handler.delete_query_job("750xx0000000999AAA").await;
        let Err(err) = result else {
            panic!("Expected an error");
        };
        assert!(err.to_string().contains(""));
    }

    #[tokio::test]
    async fn test_query_results_stream_creation() {
        let mock_server = MockServer::start().await;
        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        // Just test that we can create a stream (no HTTP call yet)
        let stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        assert_eq!(stream.job_id, "750xx0000000001AAA");
        assert!(!stream.exhausted);
    }

    #[tokio::test]
    async fn test_query_results_fetch_csv_data() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(bearer_token("test_token"))
            .respond_with(
                ResponseTemplate::new(200)
                    .set_body_string("Id,Name\n001xx000000001AAA,Acme\n001xx000000002AAA,Globex"),
            )
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let mut stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        let record1 = stream.next().await.must();
        assert!(record1.is_some());
        let record2 = stream.next().await.must();
        assert!(record2.is_some());
        let record3 = stream.next().await.must();
        assert!(record3.is_none());
    }

    #[tokio::test]
    async fn test_query_results_fetch_csv_data_multiple_pages() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param_is_missing("locator"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "page2")
                    .set_body_string("Id,Name\n001xx000000001AAA,Acme"),
            )
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param("locator", "page2"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "null")
                    .set_body_string("Id,Name\n001xx000000002AAA,Globex"),
            )
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let mut stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        let mut records = Vec::new();
        while let Some(r) = stream.next().await.must() {
            records.push(r);
        }

        assert_eq!(records.len(), 2);
    }

    #[tokio::test]
    async fn test_query_results_fetch_csv_data_empty_middle_page() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param_is_missing("locator"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "page2")
                    .set_body_string("Id,Name\n001xx000000001AAA,Acme"),
            )
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param("locator", "page2"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "page3")
                    .set_body_string("Id,Name\n"), // empty records
            )
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param("locator", "page3"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "null")
                    .set_body_string("Id,Name\n001xx000000002AAA,Globex"),
            )
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let mut stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        let mut records = Vec::new();
        while let Some(r) = stream.next().await.must() {
            records.push(r);
        }

        assert_eq!(records.len(), 2);
    }

    #[tokio::test]
    async fn test_query_results_empty_result_set() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .respond_with(ResponseTemplate::new(200).set_body_string("Id,Name\n"))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let mut stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        let record = stream.next().await.must();
        assert!(record.is_none());
    }

    #[tokio::test]
    async fn test_query_results_stream_terminates_after_records_consumed() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "null")
                    .set_body_string("Id,Name\n001xx000000001AAA,Acme\n001xx000000002AAA,Globex"),
            )
            .expect(1)
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let mut stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        assert!(stream.next().await.must().is_some());
        assert!(stream.next().await.must().is_some());
        assert!(stream.next().await.must().is_none());
    }

    #[tokio::test]
    async fn test_query_results_encodes_locator_query_parameter() {
        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param_is_missing("locator"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "next&page=2")
                    .set_body_string("Id,Name\n001xx000000001AAA,Acme"),
            )
            .expect(1)
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .and(query_param("locator", "next&page=2"))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "null")
                    .set_body_string("Id,Name\n001xx000000002AAA,Globex"),
            )
            .expect(1)
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let mut stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        assert!(stream.next().await.must().is_some());
        assert!(stream.next().await.must().is_some());
        assert!(stream.next().await.must().is_none());
    }

    #[tokio::test]
    async fn test_bulk_query_job_info_deserialization() {
        let json = r#"{
            "id": "750xx0000000001AAA",
            "operation": "query",
            "state": "JobComplete",
            "createdDate": "2024-01-01T00:00:00.000Z",
            "createdById": "005xx0000000001AAA",
            "numberRecordsProcessed": 2500,
            "totalProcessingTime": 12000,
            "apiVersion": "60.0"
        }"#;

        let info: BulkQueryJobInfo = serde_json::from_str(json).must();
        assert_eq!(info.id, "750xx0000000001AAA");
        assert_eq!(info.operation, "query");
        assert_eq!(info.state, JobState::JobComplete);
        assert_eq!(info.number_records_processed, Some(2500));
        assert_eq!(info.total_processing_time, Some(12000));
        assert_eq!(info.api_version, Some("60.0".to_string()));
    }

    #[tokio::test]
    async fn test_bulk_query_job_info_deserialization_with_numeric_api_version() {
        let json = r#"{
            "id": "750xx0000000001AAA",
            "operation": "query",
            "state": "JobComplete",
            "createdDate": "2024-01-01T00:00:00.000Z",
            "createdById": "005xx0000000001AAA",
            "numberRecordsProcessed": 2500,
            "totalProcessingTime": 12000,
            "apiVersion": 60.0
        }"#;

        let info: BulkQueryJobInfo = serde_json::from_str(json).must();
        assert_eq!(info.api_version, Some("60.0".to_string()));
    }

    #[tokio::test]
    async fn test_query_results_into_stream() {
        use futures::StreamExt;

        let mock_server = MockServer::start().await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000001AAA/results",
            ))
            .respond_with(
                ResponseTemplate::new(200)
                    .insert_header("Sforce-Locator", "null")
                    .set_body_string("Id,Name\n001xx000000001AAA,Acme\n001xx000000002AAA,Globex"),
            )
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let stream = handler
            .query_results::<serde_json::Value>("750xx0000000001AAA")
            .await
            .must();

        let results: Vec<_> = stream.into_stream().collect::<Vec<_>>().await;

        assert_eq!(results.len(), 2);
        assert!(results[0].is_ok());
        assert!(results[1].is_ok());
    }

    #[cfg(feature = "bulk")]
    #[tokio::test]
    async fn test_bulk_query_success() {
        use serde::Deserialize;

        #[derive(Deserialize, Debug)]
        struct Account {
            #[serde(rename = "Id")]
            id: String,
            #[serde(rename = "Name")]
            name: String,
        }

        let mock_server = MockServer::start().await;

        // Mock: Create query job
        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000006AAA",
                "operation": "query",
                "state": "UploadComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        // Mock: Poll query job
        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000006AAA"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000006AAA",
                "operation": "query",
                "state": "JobComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA",
                "numberRecordsProcessed": 2
            })))
            .mount(&mock_server)
            .await;

        // Mock: Download results
        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000006AAA/results",
            ))
            .respond_with(ResponseTemplate::new(200).set_body_string(
                "Id,Name\n001xx0000000001AAA,Acme Corp\n001xx0000000002AAA,Global Industries\n",
            ))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let soql = "SELECT Id, Name FROM Account WHERE Industry = 'Technology'";
        let mut results = handler.bulk_query::<Account>(soql).await.must();

        let mut count = 0;
        while let Some(record) = results.next().await.must() {
            count += 1;
            assert!(!record.id.is_empty());
            assert!(!record.name.is_empty());
        }
        assert_eq!(count, 2);
    }

    #[cfg(feature = "bulk")]
    #[tokio::test]
    async fn test_bulk_query_empty_results() {
        use serde::Deserialize;

        #[derive(Deserialize, Debug)]
        struct Account {
            #[serde(rename = "Id")]
            id: String,
        }

        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000007AAA",
                "operation": "query",
                "state": "UploadComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000007AAA"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000007AAA",
                "operation": "query",
                "state": "JobComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA",
                "numberRecordsProcessed": 0
            })))
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000007AAA/results",
            ))
            .respond_with(ResponseTemplate::new(200).set_body_string("Id\n"))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let soql = "SELECT Id FROM Account WHERE Name = 'NonExistent'";
        let mut results = handler.bulk_query::<Account>(soql).await.must();

        let record = results.next().await.must();
        assert!(record.is_none());
    }

    #[cfg(feature = "bulk")]
    #[tokio::test]
    async fn test_bulk_query_job_failure() {
        use serde::Deserialize;

        #[derive(Deserialize, Debug)]
        struct Account {
            #[serde(rename = "Id")]
            id: String,
        }

        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000009AAA",
                "operation": "query",
                "state": "UploadComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        // Query job fails
        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000009AAA"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000009AAA",
                "operation": "query",
                "state": "Failed",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();

        let soql = "SELECT Id FROM InvalidObject";
        let result = handler.bulk_query::<Account>(soql).await;
        let Err(err) = result else {
            panic!("Expected an error");
        };
        assert!(err.to_string().contains(""));
    }

    #[cfg(feature = "bulk")]
    #[tokio::test]
    async fn test_bulk_query_with_policy_retries_then_succeeds() {
        use serde::Deserialize;
        use std::time::Duration;

        #[derive(Deserialize, Debug)]
        struct Account {
            #[serde(rename = "Id")]
            id: String,
        }

        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000010AAA",
                "operation": "query",
                "state": "UploadComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000010AAA"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000010AAA",
                "operation": "query",
                "state": "InProgress",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .up_to_n_times(1)
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000010AAA"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000010AAA",
                "operation": "query",
                "state": "JobComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA",
                "numberRecordsProcessed": 1
            })))
            .expect(1)
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path(
                "/services/data/v60.0/jobs/query/750xx0000000010AAA/results",
            ))
            .respond_with(ResponseTemplate::new(200).set_body_string("Id\n001xx0000000001AAA\n"))
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();
        let policy = BulkPollPolicy::new(2, Duration::from_millis(1), Duration::from_millis(1));

        let mut results = handler
            .bulk_query_with_policy::<Account>("SELECT Id FROM Account LIMIT 1", policy)
            .await
            .must();
        let record = results.next().await.must().must();
        assert_eq!(record.id, "001xx0000000001AAA");
    }

    #[cfg(feature = "bulk")]
    #[tokio::test]
    async fn test_bulk_query_with_policy_times_out_immediately_when_attempts_are_zero() {
        use serde::Deserialize;
        use std::time::Duration;

        #[derive(Deserialize, Debug)]
        struct Account {
            #[serde(rename = "Id")]
            id: String,
        }

        let mock_server = MockServer::start().await;

        Mock::given(method("POST"))
            .and(path("/services/data/v60.0/jobs/query"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000011AAA",
                "operation": "query",
                "state": "UploadComplete",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .mount(&mock_server)
            .await;

        Mock::given(method("GET"))
            .and(path("/services/data/v60.0/jobs/query/750xx0000000011AAA"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "id": "750xx0000000011AAA",
                "operation": "query",
                "state": "InProgress",
                "createdDate": "2024-01-01T00:00:00.000Z",
                "createdById": "005xx0000000001AAA"
            })))
            .expect(1)
            .mount(&mock_server)
            .await;

        let client = create_test_client(mock_server.uri()).await;
        let handler = client.bulk();
        let policy = BulkPollPolicy::new(0, Duration::from_millis(1), Duration::from_millis(1));
        let result = handler
            .bulk_query_with_policy::<Account>("SELECT Id FROM Account LIMIT 1", policy)
            .await;

        let Err(err) = result else {
            panic!("Expected an error");
        };
        assert!(err.to_string().contains(""));
    }
}