Skip to content

Commit 5b91130

Browse files
Add DebugResult
1 parent 345391d commit 5b91130

7 files changed

+48
-24
lines changed

src/api_keys.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,13 +200,13 @@ pub mod types {
200200
#[cfg(test)]
201201
#[allow(clippy::needless_return)]
202202
mod test {
203+
use crate::test::DebugResult;
203204
use crate::tests::CLIENT;
204205
use crate::types::CreateApiKeyOptions;
205-
use crate::Result;
206206

207207
#[tokio_shared_rt::test(shared = true)]
208208
#[cfg(not(feature = "blocking"))]
209-
async fn all() -> Result<()> {
209+
async fn all() -> DebugResult<()> {
210210
let resend = &*CLIENT;
211211

212212
let api_key = "test_";

src/audiences.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,12 @@ pub mod types {
168168
#[cfg(test)]
169169
#[allow(clippy::needless_return)]
170170
mod test {
171+
use crate::test::DebugResult;
171172
use crate::tests::CLIENT;
172-
use crate::Result;
173173

174174
#[tokio_shared_rt::test(shared = true)]
175175
#[cfg(not(feature = "blocking"))]
176-
async fn all() -> Result<()> {
176+
async fn all() -> DebugResult<()> {
177177
let resend = &*CLIENT;
178178
let audience = "test_audiences";
179179

src/broadcasts.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -366,16 +366,16 @@ pub mod types {
366366
#[allow(clippy::needless_return)]
367367
mod test {
368368
use crate::{
369+
test::DebugResult,
369370
tests::CLIENT,
370371
types::{CreateBroadcastOptions, SendBroadcastOptions, UpdateBroadcastOptions},
371-
Result,
372372
};
373373

374374
use super::types::Broadcast;
375375

376376
#[tokio_shared_rt::test(shared = true)]
377377
#[cfg(not(feature = "blocking"))]
378-
async fn create_send_broadcast() -> Result<()> {
378+
async fn create_send_broadcast() -> DebugResult<()> {
379379
let resend = &*CLIENT;
380380
std::thread::sleep(std::time::Duration::from_secs(1));
381381

@@ -410,7 +410,7 @@ mod test {
410410

411411
#[tokio_shared_rt::test(shared = true)]
412412
#[cfg(not(feature = "blocking"))]
413-
async fn list_get_broadcast() -> Result<()> {
413+
async fn list_get_broadcast() -> DebugResult<()> {
414414
let resend = &*CLIENT;
415415
std::thread::sleep(std::time::Duration::from_secs(1));
416416

@@ -444,7 +444,8 @@ mod test {
444444

445445
#[tokio_shared_rt::test(shared = true)]
446446
#[cfg(not(feature = "blocking"))]
447-
async fn update_broadcast() -> Result<()> {
447+
#[track_caller]
448+
async fn update_broadcast() -> DebugResult<()> {
448449
let resend = &*CLIENT;
449450
std::thread::sleep(std::time::Duration::from_secs(1));
450451

src/contacts.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -345,13 +345,13 @@ pub mod types {
345345
#[cfg(test)]
346346
#[allow(clippy::needless_return)]
347347
mod test {
348+
use crate::test::DebugResult;
348349
use crate::tests::CLIENT;
349350
use crate::types::{ContactChanges, ContactData};
350-
use crate::Result;
351351

352352
#[tokio_shared_rt::test(shared = true)]
353353
#[cfg(not(feature = "blocking"))]
354-
async fn all() -> Result<()> {
354+
async fn all() -> DebugResult<()> {
355355
let resend = &*CLIENT;
356356
let audience = "test_contacts";
357357

src/domains.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -392,13 +392,13 @@ pub mod types {
392392
mod test {
393393
use crate::{
394394
domains::types::{CreateDomainOptions, DomainChanges, Tls},
395+
test::DebugResult,
395396
tests::CLIENT,
396-
Result,
397397
};
398398

399399
#[tokio_shared_rt::test(shared = true)]
400400
#[cfg(not(feature = "blocking"))]
401-
async fn all() -> Result<()> {
401+
async fn all() -> DebugResult<()> {
402402
let resend = &*CLIENT;
403403

404404
// Create

src/emails.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -482,13 +482,13 @@ where
482482
#[allow(clippy::needless_return)]
483483
mod test {
484484
use crate::types::{CreateEmailBaseOptions, Email, Tag, UpdateEmailOptions};
485-
use crate::{tests::CLIENT, Result};
485+
use crate::{test::DebugResult, tests::CLIENT};
486486
use jiff::{Span, Timestamp, Zoned};
487487

488488
#[tokio_shared_rt::test(shared = true)]
489489
#[cfg(not(feature = "blocking"))]
490490
// #[ignore]
491-
async fn all() -> Result<()> {
491+
async fn all() -> DebugResult<()> {
492492
let from = "Acme <[email protected]>";
493493
let to = ["[email protected]"];
494494
let subject = "Hello World!";
@@ -568,7 +568,7 @@ mod test {
568568
#[test]
569569
// #[ignore]
570570
#[cfg(feature = "blocking")]
571-
fn all_blocking() -> Result<()> {
571+
fn all_blocking() -> DebugResult<()> {
572572
let from = "Acme <[email protected]>";
573573
let to = ["[email protected]"];
574574
let subject = "Hello World!";
@@ -588,7 +588,7 @@ mod test {
588588
#[tokio_shared_rt::test(shared = true)]
589589
#[cfg(not(feature = "blocking"))]
590590
// #[ignore]
591-
async fn schedule_email() -> Result<()> {
591+
async fn schedule_email() -> DebugResult<()> {
592592
let now_plus_1h = Zoned::now()
593593
.checked_add(Span::new().hours(1))
594594
.expect("Valid date")

src/lib.rs

+31-8
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#![doc = include_str!("../README.md")]
33
//! ### Rate Limits
44
//!
5-
//! Resend implements rate limitting on their API which can sometimes get in the way of whatever
5+
//! Resend implements rate limiting on their API which can sometimes get in the way of whatever
66
//! you are trying to do. This crate handles that in 2 ways:
77
//!
8-
//! - Firstly *all* requests made by the [`Resend`] client are automatically rate limitted to
8+
//! - Firstly *all* requests made by the [`Resend`] client are automatically rate limited to
99
//! 9 req/1.1s to avoid collisions with the 10 req/s limit that Resend imposes at the time of
1010
//! writing this.
1111
//!
@@ -85,6 +85,11 @@ pub mod types {
8585
};
8686
pub use super::audiences::types::{Audience, AudienceId, CreateAudienceResponse};
8787
pub use super::batch::BatchSvc;
88+
pub use super::broadcasts::types::{
89+
Broadcast, BroadcastId, CreateBroadcastOptions, CreateBroadcastResponse,
90+
RemoveBroadcastResponse, SendBroadcastOptions, SendBroadcastResponse,
91+
UpdateBroadcastOptions, UpdateBroadcastResponse,
92+
};
8893
pub use super::contacts::types::{Contact, ContactChanges, ContactData, ContactId};
8994
pub use super::domains::types::{
9095
CreateDomainOptions, DkimRecordType, Domain, DomainChanges, DomainDkimRecord, DomainId,
@@ -95,12 +100,6 @@ pub mod types {
95100
Attachment, CancelScheduleResponse, ContentOrPath, CreateEmailBaseOptions,
96101
CreateEmailResponse, Email, EmailId, Tag, UpdateEmailOptions, UpdateEmailResponse,
97102
};
98-
// TODO: Add broadcasts here
99-
pub use super::broadcasts::types::{
100-
Broadcast, BroadcastId, CreateBroadcastOptions, CreateBroadcastResponse,
101-
RemoveBroadcastResponse, SendBroadcastOptions, SendBroadcastResponse,
102-
UpdateBroadcastOptions, UpdateBroadcastResponse,
103-
};
104103
pub use super::error::types::{ErrorKind, ErrorResponse};
105104
}
106105

@@ -131,6 +130,30 @@ pub enum Error {
131130
},
132131
}
133132

133+
#[cfg(test)]
134+
mod test {
135+
use crate::Error;
136+
137+
#[derive(Debug)]
138+
#[allow(dead_code)]
139+
pub struct LocatedError<E: std::error::Error + 'static> {
140+
inner: E,
141+
location: &'static std::panic::Location<'static>,
142+
}
143+
144+
impl From<Error> for LocatedError<Error> {
145+
#[track_caller]
146+
fn from(value: Error) -> Self {
147+
Self {
148+
inner: value,
149+
location: std::panic::Location::caller(),
150+
}
151+
}
152+
}
153+
154+
pub type DebugResult<T, E = LocatedError<Error>> = Result<T, E>;
155+
}
156+
134157
/// Specialized [`Result`] type for an [`Error`].
135158
///
136159
/// [`Result`]: std::result::Result

0 commit comments

Comments
 (0)