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
/*
* Copyright (c) 2024 R3BL LLC
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//! This is a test fixtures library that provides reusable components for testing. It is
//! meant to be used by all the crates in the `r3bl-open-core` monorepo. This crate is
//! intended to be a
//! [`dev-dependency`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#dev-dependencies)
//! for other creates in the monorepo.
//!
//! It provides fixtures to test async streams and stdout. This allows TUI frameworks to
//! be tested "end to end".
//! 1. The async stream fixtures are used to test the input stream of a TUI framework.
//! 2. The stdout fixtures are used to test the output of a TUI framework.
//!
//! ## async_stream_fixtures
//!
//! Here's an example of how create a stream of `T` from a `Vec<T>`.
//!
//! ```
//! #[tokio::test]
//! async fn test_gen_input_stream() {
//! use futures_util::StreamExt;
//! use r3bl_test_fixtures::gen_input_stream;
//!
//! let mut input_stream = gen_input_stream(vec![1, 2, 3]);
//! for _ in 1..=3 {
//! input_stream.next().await;
//! }
//! pretty_assertions::assert_eq!(input_stream.next().await, None);
//! }
//! ```
//!
//! Here's another example of how to use this with a delay.
//!
//! ```
//! #[tokio::test]
//! async fn test_gen_input_stream_with_delay() {
//! use futures_util::StreamExt;
//! use r3bl_test_fixtures::gen_input_stream_with_delay;
//!
//! let delay = 100;
//!
//! // Start timer.
//! let start_time = std::time::Instant::now();
//!
//! let mut input_stream = gen_input_stream_with_delay(vec![1, 2, 3], Duration::from_millis(delay));
//! for _ in 1..=3 {
//! input_stream.next().await;
//! }
//!
//! // End timer.
//! let end_time = std::time::Instant::now();
//!
//! pretty_assertions::assert_eq!(input_stream.next().await, None);
//!
//! assert!(end_time - start_time >= Duration::from_millis(delay * 3));
//! }
//! ```
//!
//! ## stdout_fixtures
//!
//! Here's an example of how to use this.
//!
//! ```
//! #[tokio::test]
//! async fn test_stdout_mock_no_strip_ansi() {
//! use strip_ansi_escapes::strip;
//!
//! use super::*;
//! use std::{
//! io::{Result, Write},
//! sync::Arc,
//! };
//!
//! let mut stdout_mock = StdoutMock::default();
//! let stdout_mock_clone = stdout_mock.clone(); // Points to the same inner value as `stdout_mock`.
//!
//! let normal_text = "hello world";
//!
//! stdout_mock.write_all(normal_text.as_bytes()).unwrap();
//! stdout_mock.flush().unwrap();
//!
//! pretty_assertions::assert_eq!(stdout_mock.get_copy_of_buffer_as_string(), normal_text);
//! pretty_assertions::assert_eq!(
//! stdout_mock_clone.get_copy_of_buffer_as_string(),
//! normal_text
//! );
//! }
//! ```
use Stream;
use Pin;
// Type aliases.
pub type StdMutex<T> = Mutex;
pub type PinnedInputStream<T> = ;
// Attach sources.
// Re-export.
pub use *;
pub use *;