kubemq 1.0.0

KubeMQ Rust SDK - Message broker client for events, commands, queries, and queues
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
//! Additional unit tests for error.rs coverage gaps.
//!
//! Targets: remaining Display variants, suggestion() for all error types,
//! ErrorCode Display, From<io::Error>, Transport/Handler variants.

use kubemq::{ErrorCode, KubemqError};

// -- ErrorCode Display tests --

#[test]
fn test_error_code_display_transient() {
    assert_eq!(format!("{}", ErrorCode::Transient), "Transient");
}

#[test]
fn test_error_code_display_timeout() {
    assert_eq!(format!("{}", ErrorCode::Timeout), "Timeout");
}

#[test]
fn test_error_code_display_throttling() {
    assert_eq!(format!("{}", ErrorCode::Throttling), "Throttling");
}

#[test]
fn test_error_code_display_authentication() {
    assert_eq!(format!("{}", ErrorCode::Authentication), "Authentication");
}

#[test]
fn test_error_code_display_authorization() {
    assert_eq!(format!("{}", ErrorCode::Authorization), "Authorization");
}

#[test]
fn test_error_code_display_validation() {
    assert_eq!(format!("{}", ErrorCode::Validation), "Validation");
}

#[test]
fn test_error_code_display_not_found() {
    assert_eq!(format!("{}", ErrorCode::NotFound), "NotFound");
}

#[test]
fn test_error_code_display_fatal() {
    assert_eq!(format!("{}", ErrorCode::Fatal), "Fatal");
}

#[test]
fn test_error_code_display_cancellation() {
    assert_eq!(format!("{}", ErrorCode::Cancellation), "Cancellation");
}

#[test]
fn test_error_code_display_backpressure() {
    assert_eq!(format!("{}", ErrorCode::Backpressure), "Backpressure");
}

// -- KubemqError Display variants --

#[test]
fn test_display_authentication() {
    let err = KubemqError::Authentication {
        code: ErrorCode::Authentication,
        message: "bad token".into(),
        operation: "connect".into(),
        source: None,
        suggestion: "check token",
    };
    let display = format!("{}", err);
    assert!(display.contains("authentication failed"));
    assert!(display.contains("bad token"));
}

#[test]
fn test_display_authorization() {
    let err = KubemqError::Authorization {
        code: ErrorCode::Authorization,
        message: "no access".into(),
        operation: "subscribe".into(),
        channel: "secret-ch".into(),
        source: None,
        suggestion: "check perms",
    };
    let display = format!("{}", err);
    assert!(display.contains("authorization failed"));
    assert!(display.contains("secret-ch"));
}

#[test]
fn test_display_validation() {
    let err = KubemqError::Validation {
        code: ErrorCode::Validation,
        message: "empty channel".into(),
        operation: "send_event".into(),
        channel: "".into(),
        suggestion: "provide channel",
    };
    let display = format!("{}", err);
    assert!(display.contains("validation failed"));
    assert!(display.contains("empty channel"));
}

#[test]
fn test_display_not_found() {
    let err = KubemqError::NotFound {
        code: ErrorCode::NotFound,
        message: "no such channel".into(),
        operation: "subscribe".into(),
        channel: "missing-ch".into(),
        suggestion: "create it",
    };
    let display = format!("{}", err);
    assert!(display.contains("not found"));
    assert!(display.contains("no such channel"));
}

#[test]
fn test_display_fatal() {
    let err = KubemqError::Fatal {
        code: ErrorCode::Fatal,
        message: "internal error".into(),
        operation: "ping".into(),
        source: None,
        suggestion: "contact support",
    };
    let display = format!("{}", err);
    assert!(display.contains("fatal error"));
    assert!(display.contains("internal error"));
}

#[test]
fn test_display_cancellation() {
    let err = KubemqError::Cancellation {
        code: ErrorCode::Cancellation,
        message: "user cancelled".into(),
        operation: "send_event".into(),
    };
    let display = format!("{}", err);
    assert!(display.contains("operation cancelled"));
    assert!(display.contains("user cancelled"));
}

#[test]
fn test_display_throttling() {
    let err = KubemqError::Throttling {
        code: ErrorCode::Throttling,
        message: "too many requests".into(),
        operation: "send_event".into(),
        channel: "events.fast".into(),
        is_retryable: true,
        suggestion: "slow down",
    };
    let display = format!("{}", err);
    assert!(display.contains("throttled"));
    assert!(display.contains("too many requests"));
}

#[test]
fn test_display_buffer_full() {
    let err = KubemqError::BufferFull {
        code: ErrorCode::Backpressure,
        buffer_size: 1000,
        queued_count: 1000,
        suggestion: "increase buffer",
    };
    let display = format!("{}", err);
    assert!(display.contains("backpressure"));
    assert!(display.contains("buffer full"));
    assert!(display.contains("1000"));
}

#[test]
fn test_display_stream_broken() {
    let err = KubemqError::StreamBroken {
        unacknowledged_ids: vec!["a".into(), "b".into()],
        unacknowledged_count: 2,
    };
    let display = format!("{}", err);
    assert!(display.contains("stream broken"));
    assert!(display.contains("2"));
}

#[test]
fn test_display_client_closed() {
    let err = KubemqError::ClientClosed;
    let display = format!("{}", err);
    assert!(display.contains("client closed"));
}

#[test]
fn test_display_transport() {
    let source = std::io::Error::new(std::io::ErrorKind::ConnectionRefused, "refused");
    let err = KubemqError::Transport {
        operation: "connect".into(),
        source: Box::new(source),
    };
    let display = format!("{}", err);
    assert!(display.contains("transport error"));
    assert!(display.contains("connect"));
}

#[test]
fn test_display_handler() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "callback error");
    let err = KubemqError::Handler {
        handler: "on_event".into(),
        source: Box::new(source),
    };
    let display = format!("{}", err);
    assert!(display.contains("handler error"));
    assert!(display.contains("on_event"));
}

// -- suggestion() for all variants --

#[test]
fn test_suggestion_transient() {
    let err = KubemqError::Transient {
        code: ErrorCode::Transient,
        message: "test".into(),
        operation: "send".into(),
        channel: "ch".into(),
        is_retryable: true,
        source: None,
        request_id: String::new(),
        suggestion: "retry the operation",
    };
    assert_eq!(err.suggestion(), "retry the operation");
}

#[test]
fn test_suggestion_timeout() {
    let err = KubemqError::Timeout {
        code: ErrorCode::Timeout,
        message: "test".into(),
        operation: "send".into(),
        channel: "ch".into(),
        is_retryable: true,
        source: None,
        request_id: String::new(),
        suggestion: "increase timeout",
    };
    assert_eq!(err.suggestion(), "increase timeout");
}

#[test]
fn test_suggestion_authentication() {
    let err = KubemqError::Authentication {
        code: ErrorCode::Authentication,
        message: "test".into(),
        operation: "connect".into(),
        source: None,
        suggestion: "check token",
    };
    assert_eq!(err.suggestion(), "check token");
}

#[test]
fn test_suggestion_authorization() {
    let err = KubemqError::Authorization {
        code: ErrorCode::Authorization,
        message: "test".into(),
        operation: "subscribe".into(),
        channel: "ch".into(),
        source: None,
        suggestion: "check permissions",
    };
    assert_eq!(err.suggestion(), "check permissions");
}

#[test]
fn test_suggestion_not_found() {
    let err = KubemqError::NotFound {
        code: ErrorCode::NotFound,
        message: "test".into(),
        operation: "subscribe".into(),
        channel: "ch".into(),
        suggestion: "create channel",
    };
    assert_eq!(err.suggestion(), "create channel");
}

#[test]
fn test_suggestion_fatal() {
    let err = KubemqError::Fatal {
        code: ErrorCode::Fatal,
        message: "test".into(),
        operation: "ping".into(),
        source: None,
        suggestion: "contact support",
    };
    assert_eq!(err.suggestion(), "contact support");
}

#[test]
fn test_suggestion_throttling() {
    let err = KubemqError::Throttling {
        code: ErrorCode::Throttling,
        message: "test".into(),
        operation: "send".into(),
        channel: "ch".into(),
        is_retryable: true,
        suggestion: "slow down",
    };
    assert_eq!(err.suggestion(), "slow down");
}

#[test]
fn test_suggestion_buffer_full() {
    let err = KubemqError::BufferFull {
        code: ErrorCode::Backpressure,
        buffer_size: 100,
        queued_count: 100,
        suggestion: "increase buffer size",
    };
    assert_eq!(err.suggestion(), "increase buffer size");
}

#[test]
fn test_suggestion_stream_broken_empty() {
    let err = KubemqError::StreamBroken {
        unacknowledged_ids: vec![],
        unacknowledged_count: 0,
    };
    assert_eq!(err.suggestion(), "");
}

#[test]
fn test_suggestion_client_closed_empty() {
    let err = KubemqError::ClientClosed;
    assert_eq!(err.suggestion(), "");
}

#[test]
fn test_suggestion_transport_empty() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "err");
    let err = KubemqError::Transport {
        operation: "connect".into(),
        source: Box::new(source),
    };
    assert_eq!(err.suggestion(), "");
}

#[test]
fn test_suggestion_handler_empty() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "err");
    let err = KubemqError::Handler {
        handler: "callback".into(),
        source: Box::new(source),
    };
    assert_eq!(err.suggestion(), "");
}

#[test]
fn test_suggestion_cancellation_empty() {
    let err = KubemqError::Cancellation {
        code: ErrorCode::Cancellation,
        message: "cancelled".into(),
        operation: "send".into(),
    };
    assert_eq!(
        err.suggestion(),
        "Operation was cancelled. Check if the client is closing."
    );
}

// -- code() for all variants --

#[test]
fn test_code_transport() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "err");
    let err = KubemqError::Transport {
        operation: "connect".into(),
        source: Box::new(source),
    };
    assert_eq!(err.code(), ErrorCode::Fatal);
}

#[test]
fn test_code_handler() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "err");
    let err = KubemqError::Handler {
        handler: "callback".into(),
        source: Box::new(source),
    };
    assert_eq!(err.code(), ErrorCode::Fatal);
}

#[test]
fn test_code_buffer_full() {
    let err = KubemqError::BufferFull {
        code: ErrorCode::Backpressure,
        buffer_size: 100,
        queued_count: 100,
        suggestion: "",
    };
    assert_eq!(err.code(), ErrorCode::Backpressure);
}

#[test]
fn test_code_stream_broken() {
    let err = KubemqError::StreamBroken {
        unacknowledged_ids: vec![],
        unacknowledged_count: 0,
    };
    assert_eq!(err.code(), ErrorCode::Transient);
}

// -- is_retryable() for all variants --

#[test]
fn test_is_retryable_throttling_true() {
    let err = KubemqError::Throttling {
        code: ErrorCode::Throttling,
        message: "test".into(),
        operation: "send".into(),
        channel: "ch".into(),
        is_retryable: true,
        suggestion: "",
    };
    assert!(err.is_retryable());
}

#[test]
fn test_is_retryable_throttling_false() {
    let err = KubemqError::Throttling {
        code: ErrorCode::Throttling,
        message: "test".into(),
        operation: "send".into(),
        channel: "ch".into(),
        is_retryable: false,
        suggestion: "",
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_authentication_false() {
    let err = KubemqError::Authentication {
        code: ErrorCode::Authentication,
        message: "test".into(),
        operation: "connect".into(),
        source: None,
        suggestion: "",
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_authorization_false() {
    let err = KubemqError::Authorization {
        code: ErrorCode::Authorization,
        message: "test".into(),
        operation: "subscribe".into(),
        channel: "ch".into(),
        source: None,
        suggestion: "",
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_not_found_false() {
    let err = KubemqError::NotFound {
        code: ErrorCode::NotFound,
        message: "test".into(),
        operation: "subscribe".into(),
        channel: "ch".into(),
        suggestion: "",
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_fatal_false() {
    let err = KubemqError::Fatal {
        code: ErrorCode::Fatal,
        message: "test".into(),
        operation: "ping".into(),
        source: None,
        suggestion: "",
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_buffer_full_false() {
    let err = KubemqError::BufferFull {
        code: ErrorCode::Backpressure,
        buffer_size: 100,
        queued_count: 100,
        suggestion: "",
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_transport_false() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "err");
    let err = KubemqError::Transport {
        operation: "connect".into(),
        source: Box::new(source),
    };
    assert!(!err.is_retryable());
}

#[test]
fn test_is_retryable_handler_false() {
    let source = std::io::Error::new(std::io::ErrorKind::Other, "err");
    let err = KubemqError::Handler {
        handler: "callback".into(),
        source: Box::new(source),
    };
    assert!(!err.is_retryable());
}

// -- ErrorCode Clone/Copy/PartialEq/Hash --

#[test]
fn test_error_code_clone_copy() {
    let code = ErrorCode::Transient;
    let copied = code;
    let cloned = code;
    assert_eq!(code, copied);
    assert_eq!(code, cloned);
}

#[test]
fn test_error_code_ne() {
    assert_ne!(ErrorCode::Transient, ErrorCode::Fatal);
    assert_ne!(ErrorCode::Timeout, ErrorCode::Cancellation);
    assert_ne!(ErrorCode::Throttling, ErrorCode::Backpressure);
}

#[test]
fn test_error_code_hash() {
    use std::collections::HashSet;
    let mut set = HashSet::new();
    set.insert(ErrorCode::Transient);
    set.insert(ErrorCode::Fatal);
    set.insert(ErrorCode::Transient); // duplicate
    assert_eq!(set.len(), 2);
}

#[test]
fn test_error_code_debug() {
    let debug = format!("{:?}", ErrorCode::Transient);
    assert_eq!(debug, "Transient");
    let debug = format!("{:?}", ErrorCode::Backpressure);
    assert_eq!(debug, "Backpressure");
}

// -- From<io::Error> --

#[test]
fn test_from_io_error() {
    let io_err = std::io::Error::new(std::io::ErrorKind::NotFound, "file not found");
    let kubemq_err: KubemqError = io_err.into();
    assert_eq!(kubemq_err.code(), ErrorCode::Fatal);
    assert!(!kubemq_err.is_retryable());
    let display = format!("{}", kubemq_err);
    assert!(display.contains("file not found"));
}

#[test]
fn test_from_io_error_permission_denied() {
    let io_err = std::io::Error::new(std::io::ErrorKind::PermissionDenied, "permission denied");
    let kubemq_err: KubemqError = io_err.into();
    assert_eq!(kubemq_err.code(), ErrorCode::Fatal);
    let display = format!("{}", kubemq_err);
    assert!(display.contains("permission denied"));
}

// -- Timeout with is_retryable false --

#[test]
fn test_timeout_not_retryable() {
    let err = KubemqError::Timeout {
        code: ErrorCode::Timeout,
        message: "final timeout".into(),
        operation: "send".into(),
        channel: "ch".into(),
        is_retryable: false,
        source: None,
        request_id: String::new(),
        suggestion: "give up",
    };
    assert!(!err.is_retryable());
    assert_eq!(err.code(), ErrorCode::Timeout);
}

// -- Transient with non-empty request_id --

#[test]
fn test_transient_with_request_id() {
    let err = KubemqError::Transient {
        code: ErrorCode::Transient,
        message: "connection lost".into(),
        operation: "send_event".into(),
        channel: "ch1".into(),
        is_retryable: true,
        source: None,
        request_id: "req-12345".into(),
        suggestion: "retry",
    };
    assert!(err.is_retryable());
    let display = format!("{}", err);
    assert!(display.contains("connection lost"));
}