-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathencryption_sanity.rs
More file actions
231 lines (190 loc) · 8.55 KB
/
encryption_sanity.rs
File metadata and controls
231 lines (190 loc) · 8.55 KB
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
//! Encryption sanity checks - verify data is actually encrypted.
//!
//! These tests insert data through the proxy, then query DIRECTLY from the database
//! (bypassing the proxy) to verify the stored value is encrypted (differs from plaintext).
//!
//! This catches silent mapping failures where data passes through unencrypted.
#[cfg(test)]
mod tests {
use crate::common::{
assert_encrypted_jsonb, assert_encrypted_numeric, assert_encrypted_text, clear,
connect_with_tls, random_id, trace, PROXY,
};
use chrono::NaiveDate;
#[tokio::test]
async fn text_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext = "hello world";
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_text) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_text(id, "encrypted_text", plaintext).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_text FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: String = rows[0].get(0);
assert_eq!(
decrypted, plaintext,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn jsonb_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext_json = serde_json::json!({"key": "value", "number": 42});
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_jsonb) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext_json]).await.unwrap();
// Verify encryption occurred
assert_encrypted_jsonb(id, &plaintext_json).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_jsonb FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: serde_json::Value = rows[0].get(0);
assert_eq!(
decrypted, plaintext_json,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn float8_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext: f64 = 123.456;
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_float8) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_numeric(id, "encrypted_float8", plaintext).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_float8 FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: f64 = rows[0].get(0);
assert!(
(decrypted - plaintext).abs() < f64::EPSILON,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn bool_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext: bool = true;
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_bool) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_text(id, "encrypted_bool", &plaintext.to_string()).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_bool FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: bool = rows[0].get(0);
assert_eq!(
decrypted, plaintext,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn date_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext = NaiveDate::from_ymd_opt(2024, 6, 15).unwrap();
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_date) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_text(id, "encrypted_date", &plaintext.to_string()).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_date FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: NaiveDate = rows[0].get(0);
assert_eq!(
decrypted, plaintext,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn int2_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext: i16 = 42;
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_int2) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_numeric(id, "encrypted_int2", plaintext).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_int2 FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: i16 = rows[0].get(0);
assert_eq!(
decrypted, plaintext,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn int4_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext: i32 = 12345;
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_int4) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_numeric(id, "encrypted_int4", plaintext).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_int4 FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: i32 = rows[0].get(0);
assert_eq!(
decrypted, plaintext,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
#[tokio::test]
async fn int8_encryption_sanity_check() {
trace();
clear().await;
let id = random_id();
let plaintext: i64 = 9876543210;
// Insert through proxy (should encrypt)
let client = connect_with_tls(PROXY).await;
let sql = "INSERT INTO encrypted (id, encrypted_int8) VALUES ($1, $2)";
client.query(sql, &[&id, &plaintext]).await.unwrap();
// Verify encryption occurred
assert_encrypted_numeric(id, "encrypted_int8", plaintext).await;
// Round-trip: query through proxy should decrypt back to original
let sql = "SELECT encrypted_int8 FROM encrypted WHERE id = $1";
let rows = client.query(sql, &[&id]).await.unwrap();
assert_eq!(rows.len(), 1, "Expected exactly one row for round-trip");
let decrypted: i64 = rows[0].get(0);
assert_eq!(
decrypted, plaintext,
"DECRYPTION FAILED: Round-trip value doesn't match original!"
);
}
}