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
//! A testing library for JSON Path assertions in Rust.
//!
//! `json-test` provides a fluent API for testing JSON structures using JSONPath expressions.
//! It's designed to make writing tests for JSON data structures clear, concise, and maintainable.
//!
//! # Core Concepts
//!
//! - **JsonTest**: The main entry point, providing methods to start assertions
//! - **JsonPathAssertion**: Chainable assertions on JSON values
//! - **PropertyAssertions**: Object property validation
//! - **Matchers**: Flexible value matching and validation
//!
//! # Features
//!
//! - JSONPath-based value extraction and validation
//! - Chainable, fluent assertion API
//! - Type-safe operations
//! - Property existence and value validation
//! - String pattern matching with regex support
//! - Numeric comparisons
//! - Array and object validation
//! - Custom matcher support
//!
//! # Examples
//!
//! ## Value Assertions
//!
//! ```rust
//! use json_test::JsonTest;
//! use serde_json::json;
//!
//! let data = json!({
//! "user": {
//! "name": "John Doe",
//! "age": 30
//! }
//! });
//!
//! let mut test = JsonTest::new(&data);
//!
//! // Chain multiple assertions on a single value
//! test.assert_path("$.user.name")
//! .exists()
//! .is_string()
//! .equals(json!("John Doe"));
//! ```
//!
//! ## Numeric Validation
//!
//! ```rust
//! # use json_test::JsonTest;
//! # use serde_json::json;
//! # let data = json!({"score": 85});
//! # let mut test = JsonTest::new(&data);
//! test.assert_path("$.score")
//! .is_number()
//! .is_greater_than(80)
//! .is_less_than(90)
//! .is_between(0, 100);
//! ```
//!
//! ## Array Testing
//!
//! ```rust
//! # use json_test::JsonTest;
//! # use serde_json::json;
//! # let data = json!({"roles": ["user", "admin"]});
//! # let mut test = JsonTest::new(&data);
//! test.assert_path("$.roles")
//! .is_array()
//! .has_length(2)
//! .contains(&json!("admin"));
//! ```
//!
//! ## Property Chaining
//!
//! ```rust
//! # use json_test::{JsonTest, PropertyAssertions};
//! # use serde_json::json;
//! let data = json!({
//! "user": {
//! "name": "John",
//! "settings": {
//! "theme": "dark",
//! "notifications": true
//! }
//! }
//! });
//!
//! let mut test = JsonTest::new(&data);
//!
//! // Chain property assertions
//! test.assert_path("$.user")
//! .has_property("name")
//! .has_property("settings")
//! .properties_matching(|key| !key.starts_with("_"))
//! .count(2)
//! .and()
//! .has_property_value("name", json!("John"));
//! ```
//!
//! ## Advanced Matching
//!
//! ```rust
//! # use json_test::JsonTest;
//! # use serde_json::json;
//! # let data = json!({"user": {"email": "test@example.com"}});
//! # let mut test = JsonTest::new(&data);
//! test.assert_path("$.user.email")
//! .is_string()
//! .contains_string("@")
//! .matches_pattern(r"^[^@]+@[^@]+\.[^@]+$")
//! .matches(|value| {
//! value.as_str()
//! .map(|s| !s.starts_with("admin@"))
//! .unwrap_or(false)
//! });
//! ```
//!
//! # Error Messages
//!
//! The library provides clear, test-friendly error messages:
//!
//! ```text
//! Property 'email' not found at $.user
//! Available properties: name, age, roles
//! ```
//!
//! ```text
//! Value mismatch at $.user.age
//! Expected: 25
//! Actual: 30
//! ```
//!
//! # Current Status
//!
//! This library is in active development (0.1.x). While the core API is stabilizing,
//! minor breaking changes might occur before 1.0.
pub use JsonPathAssertion;
pub use PropertyAssertions;
pub use ;
pub use ;
use Value;
/// Main entry point for JSON testing.
///
/// `JsonTest` provides methods to create assertions on JSON values using JSONPath expressions.
/// It maintains a reference to the JSON being tested and enables creation of chainable assertions.
///
/// # Examples
///
/// ```rust
/// use json_test::{JsonTest, PropertyAssertions};
/// use serde_json::json;
///
/// let data = json!({
/// "user": {
/// "name": "John",
/// "settings": {
/// "theme": "dark"
/// }
/// }
/// });
///
/// let mut test = JsonTest::new(&data);
///
/// // Test a single path with chained assertions
/// test.assert_path("$.user")
/// .has_property("name")
/// .has_property("settings")
/// .has_property_value("name", json!("John"));
/// ```