qrusty_client 0.19.1

A Rust client for the qrusty priority queue server.
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
//! Qrusty API client implementation

use crate::error::QrustyClientError;
use crate::priority::Priority;
use backoff::future::retry;
use backoff::ExponentialBackoff;
use log::info;
use reqwest::{Client, Response, StatusCode};
use serde::Deserialize;

async fn error_with_body(resp: Response) -> String {
    let status = resp.status();
    let body = resp.text().await.unwrap_or_default();
    format!("Status: {} Body: {}", status, body)
}

/// Qrusty API client configuration
#[derive(Debug, Clone)]
pub struct QrustyClient {
    base_url: String,
    client: Client,
}

impl QrustyClient {
    /// Create a new QrustyClient with the given base URL
    pub fn new(base_url: impl Into<String>) -> Self {
        QrustyClient {
            base_url: base_url.into(),
            client: Client::new(),
        }
    }

    /// Checks the health of the Qrusty server.
    ///
    /// Returns `Ok(())` if the server responds with 200 OK, otherwise returns an error.
    /// Retries transient errors with exponential backoff.
    pub async fn health(&self) -> Result<(), QrustyClientError> {
        let url = format!("{}/health", self.base_url);
        info!("Checking health at {}", url);
        let op = || async {
            let resp = self
                .client
                .get(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                Ok(())
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(1));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Health check failed: {}", e)))
    }

    /// Creates a new queue with the specified configuration.
    ///
    /// # Arguments
    /// * `name` - Name of the queue
    /// * `ordering` - Priority ordering ("MaxFirst", "MinFirst", or "Fifo")
    /// * `allow_duplicates` - Whether duplicate payloads are allowed (default: true)
    /// * `priority_kind` - Priority type ("Numeric" or "Text", default: "Numeric")
    ///
    /// Retries transient errors with exponential backoff.
    pub async fn create_queue(
        &self,
        name: &str,
        ordering: &str,
        allow_duplicates: Option<bool>,
        priority_kind: Option<&str>,
    ) -> Result<(), QrustyClientError> {
        let url = format!("{}/create-queue", self.base_url);
        let mut config = serde_json::json!({ "ordering": ordering });
        if let Some(ad) = allow_duplicates {
            config["allow_duplicates"] = serde_json::json!(ad);
        }
        if let Some(pk) = priority_kind {
            config["priority_kind"] = serde_json::json!(pk);
        }
        let body = serde_json::json!({
            "name": name,
            "config": config
        });
        info!("Creating queue '{}' with ordering '{}'", name, ordering);
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                Ok(())
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Create queue failed: {}", e)))
    }

    /// Updates an existing queue's configuration.
    ///
    /// # Arguments
    /// * `name` - Current name of the queue
    /// * `new_name` - Optional new name for the queue
    /// * `allow_duplicates` - Optional new allow_duplicates setting
    ///
    /// At least one of `new_name` or `allow_duplicates` must be specified.
    /// Queue type (ordering) cannot be changed after creation.
    ///
    /// Retries transient errors with exponential backoff.
    pub async fn update_queue(
        &self,
        name: &str,
        new_name: Option<&str>,
        allow_duplicates: Option<bool>,
    ) -> Result<(), QrustyClientError> {
        if new_name.is_none() && allow_duplicates.is_none() {
            return Err(QrustyClientError::InvalidResponse(
                "At least one of new_name or allow_duplicates must be specified".to_string(),
            ));
        }

        let url = format!("{}/update-queue", self.base_url);
        let mut config = serde_json::Map::new();
        if let Some(new_name) = new_name {
            config.insert("name".to_string(), serde_json::json!(new_name));
        }
        if let Some(allow_duplicates) = allow_duplicates {
            config.insert(
                "allow_duplicates".to_string(),
                serde_json::json!(allow_duplicates),
            );
        }

        let body = serde_json::json!({
            "name": name,
            "config": config
        });

        info!(
            "Updating queue '{}': new_name={:?}, allow_duplicates={:?}",
            name, new_name, allow_duplicates
        );
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                Ok(())
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Update queue failed: {}", e)))
    }

    /// Publishes a message to the specified queue.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    /// * `priority` - Message priority
    /// * `payload` - Message payload (JSON string)
    /// * `max_retries` - Optional max retry count
    ///
    /// Returns the message ID on success. Retries transient errors.
    pub async fn publish(
        &self,
        queue: &str,
        priority: impl Into<Priority>,
        payload: &str,
        max_retries: Option<u32>,
    ) -> Result<String, QrustyClientError> {
        let priority = priority.into();
        let url = format!("{}/publish", self.base_url);
        let mut body = serde_json::json!({
            "queue": queue,
            "priority": priority,
            "payload": payload
        });
        if let Some(retries) = max_retries {
            body["max_retries"] = serde_json::json!(retries);
        }
        info!(
            "Publishing message to queue '{}' with priority {}",
            queue, priority
        );
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v["id"].as_str().unwrap_or("").to_string())
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Publish failed: {}", e)))
    }

    /// Consumes a message from the specified queue.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    /// * `consumer_id` - Consumer identifier
    /// * `timeout_seconds` - Optional lock timeout
    ///
    /// Returns `Some(ConsumeResponse)` if a message is available, or `None` if the queue is empty.
    /// Retries transient errors.
    pub async fn consume(
        &self,
        queue: &str,
        consumer_id: &str,
        timeout_seconds: Option<u64>,
    ) -> Result<Option<ConsumeResponse>, QrustyClientError> {
        let url = format!("{}/consume/{}", self.base_url, queue);
        let body = serde_json::json!({
            "consumer_id": consumer_id,
            "timeout_seconds": timeout_seconds.unwrap_or(30)
        });
        info!(
            "Consuming message from queue '{}' as consumer '{}'",
            queue, consumer_id
        );
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: Option<ConsumeResponse> = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Consume failed: {}", e)))
    }

    /// Acknowledges a message as successfully processed.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    /// * `id` - Message ID
    /// * `consumer_id` - Consumer identifier
    ///
    /// Retries transient errors.
    pub async fn ack(
        &self,
        queue: &str,
        id: &str,
        consumer_id: &str,
    ) -> Result<(), QrustyClientError> {
        let url = format!("{}/ack/{}/{}", self.base_url, queue, id);
        let body = serde_json::json!({ "consumer_id": consumer_id });
        info!(
            "Acknowledging message '{}' in queue '{}' by consumer '{}'",
            id, queue, consumer_id
        );
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            let status = resp.status();
            match status {
                StatusCode::OK => Ok(()),
                StatusCode::NOT_FOUND => Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                )),
                _ if status.is_server_error() => Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                )),
                _ => Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                )),
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Ack failed: {}", e)))
    }

    /// Negative acknowledges a message (failed processing).
    ///
    /// # Arguments
    /// * `queue` - Queue name
    /// * `id` - Message ID
    /// * `consumer_id` - Consumer identifier
    ///
    /// Retries transient errors.
    pub async fn nack(
        &self,
        queue: &str,
        id: &str,
        consumer_id: &str,
    ) -> Result<(), QrustyClientError> {
        let url = format!("{}/nack/{}/{}", self.base_url, queue, id);
        let body = serde_json::json!({ "consumer_id": consumer_id });
        info!(
            "Nacking message '{}' in queue '{}' by consumer '{}'",
            id, queue, consumer_id
        );
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            let status = resp.status();
            match status {
                StatusCode::OK => Ok(()),
                StatusCode::NOT_FOUND => Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                )),
                _ if status.is_server_error() => Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                )),
                _ => Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                )),
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Nack failed: {}", e)))
    }

    /// Gets statistics for all queues.
    ///
    /// Returns a JSON value with queue and summary statistics. Retries transient errors.
    pub async fn stats(&self) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/stats", self.base_url);
        info!("Getting queue statistics from {}", url);
        let op = || async {
            let resp = self
                .client
                .get(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Stats failed: {}", e)))
    }

    /// Purges all messages from the specified queue.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    ///
    /// Returns the number of purged messages. Retries transient errors.
    pub async fn purge_queue(&self, queue: &str) -> Result<usize, QrustyClientError> {
        let url = format!("{}/purge-queue/{}", self.base_url, queue);
        info!("Purging queue '{}'", queue);
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v["purged_messages"].as_u64().unwrap_or(0) as usize)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Purge queue failed: {}", e)))
    }

    /// Deletes the specified queue and all its messages.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    ///
    /// Returns the number of deleted messages. Retries transient errors.
    pub async fn delete_queue(&self, queue: &str) -> Result<usize, QrustyClientError> {
        let url = format!("{}/delete-queue/{}", self.base_url, queue);
        info!("Deleting queue '{}'", queue);
        let op = || async {
            let resp = self
                .client
                .delete(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v["deleted_messages"].as_u64().unwrap_or(0) as usize)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Delete queue failed: {}", e)))
    }
    /// Gets statistics for a specific queue.
    ///
    /// Returns a JSON value with counts for available, locked, and total messages,
    /// plus live processing rates.
    pub async fn queue_stats(&self, queue: &str) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/queue-stats/{}", self.base_url, queue);
        let op = || async {
            let resp = self
                .client
                .get(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Queue stats failed: {}", e)))
    }

    /// Gets time-series metrics for a specific queue.
    ///
    /// Returns per-queue metrics covering at least the most recent 60 seconds.
    pub async fn queue_metrics(&self, queue: &str) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/queues/{}/metrics", self.base_url, queue);
        let op = || async {
            let resp = self
                .client
                .get(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Queue metrics failed: {}", e)))
    }

    /// Lists all active queue names.
    pub async fn list_queues(&self) -> Result<Vec<String>, QrustyClientError> {
        let url = format!("{}/queues", self.base_url);
        let op = || async {
            let resp = self
                .client
                .get(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: Vec<String> = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("List queues failed: {}", e)))
    }

    /// Purges all queues (removes all messages from every queue).
    pub async fn purge_all(&self) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/purge-all", self.base_url);
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Purge all failed: {}", e)))
    }

    /// Deletes all queues and their messages.
    pub async fn delete_all(&self) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/delete-all", self.base_url);
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Delete all failed: {}", e)))
    }

    /// Batch-acknowledges multiple messages in a single call.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    /// * `consumer_id` - Consumer identifier
    /// * `message_ids` - Message IDs to acknowledge
    ///
    /// Returns the server response with `acked` and `not_found` arrays.
    pub async fn ack_batch(
        &self,
        queue: &str,
        consumer_id: &str,
        message_ids: &[&str],
    ) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/ack-batch/{}", self.base_url, queue);
        let body = serde_json::json!({
            "consumer_id": consumer_id,
            "message_ids": message_ids
        });
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Ack batch failed: {}", e)))
    }

    /// Batch-negative-acknowledges multiple messages in a single call.
    ///
    /// # Arguments
    /// * `queue` - Queue name
    /// * `consumer_id` - Consumer identifier
    /// * `message_ids` - Message IDs to nack
    ///
    /// Returns the server response with `unlocked`, `dead_lettered`, `dropped`, `not_found` arrays.
    pub async fn nack_batch(
        &self,
        queue: &str,
        consumer_id: &str,
        message_ids: &[&str],
    ) -> Result<serde_json::Value, QrustyClientError> {
        let url = format!("{}/nack-batch/{}", self.base_url, queue);
        let body = serde_json::json!({
            "consumer_id": consumer_id,
            "message_ids": message_ids
        });
        let op = || async {
            let resp = self
                .client
                .post(&url)
                .json(&body)
                .send()
                .await
                .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
            if resp.status() == StatusCode::OK {
                let v: serde_json::Value = resp
                    .json()
                    .await
                    .map_err(|e| backoff::Error::transient(QrustyClientError::Http(e)))?;
                Ok(v)
            } else if resp.status().is_server_error() {
                Err(backoff::Error::transient(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            } else {
                Err(backoff::Error::permanent(
                    QrustyClientError::InvalidResponse(error_with_body(resp).await),
                ))
            }
        };
        let mut backoff = ExponentialBackoff::default();
        backoff.max_elapsed_time = Some(std::time::Duration::from_secs(2));
        retry(backoff, op)
            .await
            .map_err(|e| QrustyClientError::RetryFailed(format!("Nack batch failed: {}", e)))
    }
}

#[derive(Debug, Deserialize)]
pub struct ConsumeResponse {
    pub id: String,
    pub payload: String,
    pub retry_count: u32,
}

#[cfg(test)]
mod tests {
    use super::*;
    use httpmock::Method::GET;
    use httpmock::MockServer;
    use tokio;

    #[tokio::test]
    async fn test_health_ok() {
        let server = MockServer::start();
        let health_mock = server.mock(|when, then| {
            when.method(GET).path("/health");
            then.status(200);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.health().await;
        health_mock.assert();
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_health_fail() {
        let server = MockServer::start();
        let health_mock = server.mock(|when, then| {
            when.method(GET).path("/health");
            then.status(500);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.health().await;
        // The client should retry several times before failing
        health_mock.assert_hits(health_mock.hits()); // Accept any number of hits
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_create_queue_with_all_config() {
        use httpmock::Method::POST;
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(POST).path("/create-queue");
            then.status(200);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client
            .create_queue("orders", "MinFirst", Some(false), Some("Text"))
            .await;
        mock.assert();
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_queue_stats() {
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(GET).path("/queue-stats/orders");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"available":5,"locked":2,"total":7}"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.queue_stats("orders").await;
        mock.assert();
        assert!(result.is_ok());
        assert_eq!(result.unwrap()["total"], 7);
    }

    #[tokio::test]
    async fn test_queue_metrics() {
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(GET).path("/queues/orders/metrics");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"metrics":[]}"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.queue_metrics("orders").await;
        mock.assert();
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_list_queues() {
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(GET).path("/queues");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"["orders","events"]"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.list_queues().await;
        mock.assert();
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), vec!["orders", "events"]);
    }

    #[tokio::test]
    async fn test_purge_all() {
        use httpmock::Method::POST;
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(POST).path("/purge-all");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"purged":10}"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.purge_all().await;
        mock.assert();
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_delete_all() {
        use httpmock::Method::POST;
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(POST).path("/delete-all");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"deleted":3}"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.delete_all().await;
        mock.assert();
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_ack_batch() {
        use httpmock::Method::POST;
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(POST).path("/ack-batch/orders");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"acked":["id1"],"not_found":["id2"]}"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client
            .ack_batch("orders", "worker-1", &["id1", "id2"])
            .await;
        mock.assert();
        assert!(result.is_ok());
        let v = result.unwrap();
        assert_eq!(v["acked"][0], "id1");
    }

    #[tokio::test]
    async fn test_nack_batch() {
        use httpmock::Method::POST;
        let server = MockServer::start();
        let mock = server.mock(|when, then| {
            when.method(POST).path("/nack-batch/orders");
            then.status(200)
                .header("content-type", "application/json")
                .body(r#"{"unlocked":["id1"],"dead_lettered":[],"dropped":[],"not_found":[]}"#);
        });
        let client = QrustyClient::new(server.url(""));
        let result = client.nack_batch("orders", "worker-1", &["id1"]).await;
        mock.assert();
        assert!(result.is_ok());
        let v = result.unwrap();
        assert_eq!(v["unlocked"][0], "id1");
    }
}