reinhardt-utils 0.1.0-rc.22

Utility functions aggregator for Reinhardt
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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
//! Static files middleware for serving WASM builds and static assets.
//!
//! This middleware intercepts requests and serves static files from a configured directory.
//! It supports SPA (Single Page Application) mode for WASM frontend applications.

use std::collections::HashMap;
use std::path::{Path, PathBuf};
use std::sync::Arc;

use async_trait::async_trait;
use reinhardt_core::exception::Result;
use reinhardt_http::{Handler, Middleware};
use reinhardt_http::{Request, Response};

use super::caching::CacheControlConfig;
use super::handler::{StaticError, StaticFileHandler};

/// Detected WASM entry point for auto-injection.
#[derive(Debug, Clone)]
struct WasmEntry {
	/// JS entry file relative to root_dir (e.g., "my_app.js")
	js_file: String,
	/// WASM binary file relative to root_dir (e.g., "my_app_bg.wasm")
	wasm_file: String,
}

/// Configuration for the static files middleware.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct StaticFilesConfig {
	/// Root directory for static files
	pub root_dir: PathBuf,
	/// URL path prefix (e.g., "/static/")
	pub url_prefix: String,
	/// Enable SPA mode - fallback to index.html for 404s
	pub spa_mode: bool,
	/// Index files to serve for directories
	pub index_files: Vec<String>,
	/// Explicit path to the SPA fallback index file.
	///
	/// Can be outside `root_dir` (e.g., project root). When set,
	/// takes priority over `index_files` for SPA fallback.
	pub index_file: Option<PathBuf>,
	/// File extensions to serve (empty = all)
	pub allowed_extensions: Vec<String>,
	/// Path prefixes to exclude from SPA fallback (e.g., ["/api/", "/docs"])
	pub excluded_prefixes: Vec<String>,
	/// Cache control configuration for static file responses
	pub cache_config: CacheControlConfig,
	/// Enable automatic WASM script injection into SPA HTML responses
	pub auto_inject_wasm: bool,
	/// Explicit WASM entry point filename (e.g., "my_app.js") for fallback detection
	pub wasm_entry: Option<String>,
	/// Manifest mapping original filenames to hashed filenames
	pub wasm_manifest: Option<HashMap<String, String>>,
}

impl Default for StaticFilesConfig {
	fn default() -> Self {
		Self {
			root_dir: PathBuf::from("dist"),
			url_prefix: "/".to_string(),
			spa_mode: true,
			index_files: vec!["index.html".to_string()],
			index_file: None,
			allowed_extensions: vec![],
			excluded_prefixes: vec!["/api/".to_string()],
			cache_config: CacheControlConfig::new(),
			auto_inject_wasm: true,
			wasm_entry: None,
			wasm_manifest: None,
		}
	}
}

impl StaticFilesConfig {
	/// Create a new configuration with the given root directory.
	pub fn new(root_dir: impl Into<PathBuf>) -> Self {
		Self {
			root_dir: root_dir.into(),
			..Default::default()
		}
	}

	/// Set the URL prefix for static files.
	pub fn url_prefix(mut self, prefix: impl Into<String>) -> Self {
		self.url_prefix = prefix.into();
		self
	}

	/// Enable or disable SPA mode.
	pub fn spa_mode(mut self, enabled: bool) -> Self {
		self.spa_mode = enabled;
		self
	}

	/// Set custom index files.
	pub fn index_files(mut self, files: Vec<String>) -> Self {
		self.index_files = files;
		self
	}

	/// Set a specific index file path for SPA fallback.
	///
	/// This path can be outside `root_dir` (e.g., project root).
	/// When set, this takes priority over `index_files` for SPA fallback.
	pub fn index_file(mut self, path: impl Into<PathBuf>) -> Self {
		self.index_file = Some(path.into());
		self
	}

	/// Set allowed file extensions.
	pub fn allowed_extensions(mut self, extensions: Vec<String>) -> Self {
		self.allowed_extensions = extensions;
		self
	}

	/// Set path prefixes to exclude from SPA fallback.
	pub fn excluded_prefixes(mut self, prefixes: Vec<String>) -> Self {
		self.excluded_prefixes = prefixes;
		self
	}

	/// Set cache control configuration.
	pub fn cache_config(mut self, config: CacheControlConfig) -> Self {
		self.cache_config = config;
		self
	}

	/// Enable or disable automatic WASM script injection.
	pub fn auto_inject_wasm(mut self, enabled: bool) -> Self {
		self.auto_inject_wasm = enabled;
		self
	}

	/// Set the explicit WASM entry point filename for fallback detection.
	///
	/// The entry must be a `.js` filename (e.g., `"my_app.js"` or `"pkg/my_app.js"`).
	/// The corresponding WASM file is inferred by stripping `.js` and appending `_bg.wasm`.
	///
	/// # Panics
	///
	/// Panics if `entry` contains invalid characters. Only alphanumeric characters,
	/// `-`, `_`, `.`, and `/` are allowed.
	///
	/// Panics if `entry` contains `..` path traversal sequences.
	///
	/// Panics if `entry` is empty.
	pub fn wasm_entry(mut self, entry: impl Into<String>) -> Self {
		let entry = entry.into();
		assert!(!entry.is_empty(), "wasm_entry must not be empty");
		assert!(
			!entry.contains(".."),
			"wasm_entry must not contain '..' path traversal sequences: {entry}"
		);
		if !entry
			.chars()
			.all(|c| c.is_alphanumeric() || c == '-' || c == '_' || c == '.' || c == '/')
		{
			panic!(
				"wasm_entry contains invalid characters: only alphanumeric, '-', '_', '.', '/' are allowed"
			);
		}
		self.wasm_entry = Some(entry);
		self
	}

	/// Set the WASM manifest for filename resolution (e.g., hashed filenames).
	pub fn wasm_manifest(mut self, manifest: HashMap<String, String>) -> Self {
		self.wasm_manifest = Some(manifest);
		self
	}
}

/// Middleware for serving static files.
///
/// This middleware intercepts requests matching the configured URL prefix
/// and serves files from the root directory. It's designed for serving
/// WASM frontend builds and static assets.
///
/// # Example
///
/// ```rust,no_run
/// use reinhardt_utils::staticfiles::middleware::{StaticFilesMiddleware, StaticFilesConfig};
/// use std::path::PathBuf;
///
/// let config = StaticFilesConfig::new("dist")
///     .url_prefix("/")
///     .spa_mode(true);
///
/// let middleware = StaticFilesMiddleware::new(config);
/// ```
pub struct StaticFilesMiddleware {
	config: StaticFilesConfig,
	handler: StaticFileHandler,
	wasm_entry: Option<WasmEntry>,
}

impl StaticFilesMiddleware {
	/// Create a new static files middleware with the given configuration.
	pub fn new(config: StaticFilesConfig) -> Self {
		let handler = StaticFileHandler::new(config.root_dir.clone())
			.with_index_files(config.index_files.clone());
		let wasm_entry = if config.auto_inject_wasm {
			Self::detect_wasm_entry(&config)
		} else {
			tracing::info!("WASM auto-injection is disabled");
			None
		};
		Self {
			config,
			handler,
			wasm_entry,
		}
	}

	/// Create a middleware with default configuration for the given directory.
	pub fn for_directory(root_dir: impl Into<PathBuf>) -> Self {
		Self::new(StaticFilesConfig::new(root_dir))
	}

	/// Detect WASM entry point by scanning `root_dir` for `{name}.js` + `{name}_bg.wasm` pairs.
	///
	/// Falls back to `config.wasm_entry` when zero or multiple pairs are found.
	fn detect_wasm_entry(config: &StaticFilesConfig) -> Option<WasmEntry> {
		let root = &config.root_dir;
		tracing::debug!("scanning {:?} for WASM entry points", root);

		// Scan top-level files in root_dir for {name}.js + {name}_bg.wasm pairs
		let mut pairs: Vec<(String, String)> = Vec::new();
		if let Ok(entries) = std::fs::read_dir(root) {
			let mut js_stems: Vec<String> = Vec::new();
			let mut wasm_stems: Vec<String> = Vec::new();

			for entry in entries.flatten() {
				let path = entry.path();
				if !path.is_file() {
					continue;
				}
				if let Some(name) = path.file_name().and_then(|n| n.to_str()) {
					if let Some(stem) = name.strip_suffix(".js") {
						js_stems.push(stem.to_string());
					} else if let Some(stem) = name.strip_suffix("_bg.wasm") {
						wasm_stems.push(stem.to_string());
					}
				}
			}

			for stem in &js_stems {
				if wasm_stems.contains(stem) {
					pairs.push((format!("{stem}.js"), format!("{stem}_bg.wasm")));
				}
			}
		}

		match pairs.len() {
			1 => {
				let (js_file, wasm_file) = pairs.into_iter().next().unwrap();
				tracing::info!(
					"auto-detected WASM entry: js={}, wasm={}",
					js_file,
					wasm_file
				);
				Some(WasmEntry { js_file, wasm_file })
			}
			0 => {
				tracing::debug!("no WASM pairs found in {:?}, trying fallback", root);
				Self::try_wasm_entry_fallback(config)
			}
			n => {
				tracing::warn!(
					"found {} WASM pairs in {:?}, cannot auto-detect; trying fallback",
					n,
					root
				);
				Self::try_wasm_entry_fallback(config)
			}
		}
	}

	/// Try to resolve WASM entry from `config.wasm_entry` fallback.
	///
	/// Accepts a `.js` filename (e.g., `"my_app.js"`) and infers the WASM file
	/// by stripping `.js` and appending `_bg.wasm`.
	fn try_wasm_entry_fallback(config: &StaticFilesConfig) -> Option<WasmEntry> {
		let entry_name = config.wasm_entry.as_ref()?;
		let js_file = entry_name.clone();
		let stem = js_file.strip_suffix(".js").unwrap_or(&js_file);
		let wasm_file = format!("{stem}_bg.wasm");

		let js_path = config.root_dir.join(&js_file);
		let wasm_path = config.root_dir.join(&wasm_file);

		if !js_path.exists() {
			tracing::warn!("fallback WASM JS file not found: {:?}", js_path);
			return None;
		}
		if !wasm_path.exists() {
			tracing::warn!("fallback WASM binary not found: {:?}", wasm_path);
			return None;
		}

		tracing::info!(
			"using fallback WASM entry: js={}, wasm={}",
			js_file,
			wasm_file
		);
		Some(WasmEntry { js_file, wasm_file })
	}

	/// Resolve the URL for a WASM-related file, applying manifest lookup if available.
	///
	/// Manifest values are validated to contain only safe characters (alphanumeric,
	/// `-`, `_`, `.`, `/`). Unsafe values are rejected and the original filename is
	/// used as a fallback to prevent HTML injection.
	fn resolve_wasm_url(
		filename: &str,
		url_prefix: &str,
		manifest: Option<&HashMap<String, String>>,
	) -> String {
		let resolved = manifest
			.and_then(|m| m.get(filename))
			.filter(|v| {
				v.chars()
					.all(|c| c.is_alphanumeric() || matches!(c, '-' | '_' | '.' | '/'))
			})
			.map(|s| s.as_str())
			.unwrap_or(filename);
		format!("{url_prefix}{resolved}")
	}

	/// Inject a WASM auto-loader script into HTML content before `</body>`.
	///
	/// If no `</body>` tag is found (case-insensitive), the script is appended to the end.
	fn inject_wasm_script(
		html: &str,
		entry: &WasmEntry,
		url_prefix: &str,
		manifest: Option<&HashMap<String, String>>,
	) -> String {
		let js_url = Self::resolve_wasm_url(&entry.js_file, url_prefix, manifest);
		let wasm_url = Self::resolve_wasm_url(&entry.wasm_file, url_prefix, manifest);

		let script = format!(
			"\n<!-- Reinhardt WASM Auto-Loader -->\n\
			 <script type=\"module\">\n\
			 const {{ default: init }} = await import('{js_url}');\n\
			 await init('{wasm_url}');\n\
			 </script>\n"
		);

		// Case-insensitive search for </body>
		if let Some(pos) = html.to_lowercase().rfind("</body>") {
			let mut result = String::with_capacity(html.len() + script.len());
			result.push_str(&html[..pos]);
			result.push_str(&script);
			result.push_str(&html[pos..]);
			result
		} else {
			let mut result = String::with_capacity(html.len() + script.len());
			result.push_str(html);
			result.push_str(&script);
			result
		}
	}

	/// Check if the request path matches the URL prefix.
	fn matches_prefix(&self, path: &str) -> bool {
		if self.config.url_prefix == "/" {
			true
		} else {
			path.starts_with(&self.config.url_prefix)
		}
	}

	/// Get the file path relative to the root directory.
	fn get_file_path(&self, request_path: &str) -> String {
		if self.config.url_prefix == "/" {
			request_path.to_string()
		} else {
			request_path
				.strip_prefix(&self.config.url_prefix)
				.unwrap_or(request_path)
				.to_string()
		}
	}

	/// Check if the file extension is allowed.
	fn is_extension_allowed(&self, path: &str) -> bool {
		if self.config.allowed_extensions.is_empty() {
			return true;
		}

		let extension = path
			.rsplit('.')
			.next()
			.map(|s| s.to_lowercase())
			.unwrap_or_default();

		self.config
			.allowed_extensions
			.iter()
			.any(|ext| ext.eq_ignore_ascii_case(&extension))
	}

	/// Try to serve a static file.
	async fn try_serve(&self, path: &str) -> Option<Response> {
		match self.handler.serve(path).await {
			Ok(file) => {
				let mut response = Response::ok()
					.with_header("Content-Type", &file.mime_type)
					.with_header("ETag", &file.etag());

				// Only set cache headers when caching is enabled
				if self.config.cache_config.enabled {
					let policy = self.config.cache_config.get_policy(path);
					let cache_value = policy.to_header_value();
					response = response.with_header("Cache-Control", &cache_value);

					// Apply Vary header if specified in the policy
					if let Some(vary) = &policy.vary {
						response = response.with_header("Vary", vary);
					}
				}

				response = response.with_body(file.content);
				Some(response)
			}
			Err(StaticError::NotFound(_)) => None,
			Err(_) => None,
		}
	}

	/// Serve the SPA fallback (index.html), optionally injecting WASM auto-loader script.
	///
	/// Priority:
	/// 1. `index_file` — explicit path (can be outside `root_dir`)
	/// 2. `index_files` — searched within `root_dir`
	async fn serve_spa_fallback(&self) -> Option<Response> {
		// Priority 1: Explicit index file path (can be outside root_dir)
		if let Some(ref index_path) = self.config.index_file {
			let content = tokio::fs::read(index_path).await.ok()?;
			return self.build_spa_response(content, index_path);
		}

		// Priority 2: Search within root_dir (existing behavior)
		for index_file in &self.config.index_files {
			let path = self.config.root_dir.join(index_file);
			if let Ok(content) = tokio::fs::read(&path).await {
				return self.build_spa_response(content, &path);
			}
		}
		None
	}

	/// Build a SPA response from raw file content, injecting WASM script if applicable.
	///
	/// Computes ETag from the final (post-injection) content to ensure cache correctness.
	fn build_spa_response(&self, content: Vec<u8>, path: &Path) -> Option<Response> {
		let mime = mime_guess::from_path(path)
			.first_or_octet_stream()
			.to_string();

		let filename = path
			.file_name()
			.and_then(|n| n.to_str())
			.unwrap_or("index.html");

		// Apply WASM injection if entry is detected
		let final_content = if let Some(ref entry) = self.wasm_entry {
			match String::from_utf8(content) {
				Ok(html) => {
					let injected = Self::inject_wasm_script(
						&html,
						entry,
						&self.config.url_prefix,
						self.config.wasm_manifest.as_ref(),
					);
					tracing::debug!("injected WASM auto-loader into SPA response");
					injected.into_bytes()
				}
				Err(e) => {
					tracing::warn!(
						"SPA fallback is not valid UTF-8, serving raw content: {}",
						e
					);
					e.into_bytes()
				}
			}
		} else {
			content
		};

		// Generate ETag from final content (post-injection)
		let etag = {
			use std::collections::hash_map::DefaultHasher;
			use std::hash::{Hash, Hasher};
			let mut hasher = DefaultHasher::new();
			final_content.hash(&mut hasher);
			format!("\"{}\"", hasher.finish())
		};

		let mut response = Response::ok()
			.with_header("Content-Type", &mime)
			.with_header("ETag", &etag);

		if self.config.cache_config.enabled {
			let policy = self.config.cache_config.get_policy(filename);
			let cache_value = policy.to_header_value();
			response = response.with_header("Cache-Control", &cache_value);

			if let Some(vary) = &policy.vary {
				response = response.with_header("Vary", vary);
			}
		}

		response = response.with_body(final_content);
		Some(response)
	}

	/// Serve a file directly from a configured filesystem path (bypasses `root_dir` security check).
	///
	/// The path may be absolute or relative, depending on how it was configured (e.g. via CLI
	/// or configuration file); relative paths are resolved by the OS at runtime.
	/// This is safe because the path is a fixed, user-specified value — not derived
	/// from the request URL.
	///
	/// Generates ETag and Cache-Control headers consistent with `try_serve`.
	// Used by tests to verify header generation independently of SPA injection flow
	#[cfg(test)]
	async fn serve_direct_file(&self, path: &Path) -> Option<Response> {
		let content = tokio::fs::read(path).await.ok()?;
		let mime = mime_guess::from_path(path)
			.first_or_octet_stream()
			.to_string();

		// Generate ETag from content hash (consistent with StaticFileHandler::etag)
		let etag = {
			use std::collections::hash_map::DefaultHasher;
			use std::hash::{Hash, Hasher};
			let mut hasher = DefaultHasher::new();
			content.hash(&mut hasher);
			format!("\"{}\"", hasher.finish())
		};

		let filename = path
			.file_name()
			.and_then(|n| n.to_str())
			.unwrap_or("index.html");

		let mut response = Response::ok()
			.with_header("Content-Type", &mime)
			.with_header("ETag", &etag);

		if self.config.cache_config.enabled {
			let policy = self.config.cache_config.get_policy(filename);
			let cache_value = policy.to_header_value();
			response = response.with_header("Cache-Control", &cache_value);

			if let Some(vary) = &policy.vary {
				response = response.with_header("Vary", vary);
			}
		}

		response = response.with_body(content);
		Some(response)
	}
}

#[async_trait]
impl Middleware for StaticFilesMiddleware {
	async fn process(&self, request: Request, next: Arc<dyn Handler>) -> Result<Response> {
		let path = request.uri.path();

		// Check if this request matches our prefix
		if !self.matches_prefix(path) {
			return next.handle(request).await;
		}

		let file_path = self.get_file_path(path);

		// Check extension allowlist
		if !self.is_extension_allowed(&file_path) {
			return next.handle(request).await;
		}

		// Try to serve the static file
		if let Some(response) = self.try_serve(&file_path).await {
			return Ok(response);
		}

		// In SPA mode, try to serve index.html for routes not in excluded_prefixes
		if self.config.spa_mode
			&& !self
				.config
				.excluded_prefixes
				.iter()
				.any(|prefix| path.starts_with(prefix))
			&& let Some(response) = self.serve_spa_fallback().await
		{
			return Ok(response);
		}

		// Fall through to the next handler
		next.handle(request).await
	}

	fn should_continue(&self, request: &Request) -> bool {
		// Only process GET and HEAD requests
		let method = request.method.as_str();
		method == "GET" || method == "HEAD"
	}
}

#[cfg(test)]
mod tests {
	use super::*;
	use crate::staticfiles::caching::{CacheControlConfig, CachePolicy};
	use rstest::rstest;

	#[test]
	fn test_config_defaults() {
		let config = StaticFilesConfig::default();
		assert_eq!(config.root_dir, PathBuf::from("dist"));
		assert_eq!(config.url_prefix, "/");
		assert!(config.spa_mode);
		assert_eq!(config.index_files, vec!["index.html".to_string()]);
	}

	#[test]
	fn test_config_builder() {
		let config = StaticFilesConfig::new("public")
			.url_prefix("/static/")
			.spa_mode(false)
			.index_files(vec!["index.html".to_string(), "default.html".to_string()]);

		assert_eq!(config.root_dir, PathBuf::from("public"));
		assert_eq!(config.url_prefix, "/static/");
		assert!(!config.spa_mode);
		assert_eq!(config.index_files.len(), 2);
	}

	#[test]
	fn test_matches_prefix() {
		let config = StaticFilesConfig::new("dist").url_prefix("/static/");
		let middleware = StaticFilesMiddleware::new(config);

		assert!(middleware.matches_prefix("/static/app.js"));
		assert!(middleware.matches_prefix("/static/"));
		assert!(!middleware.matches_prefix("/api/users"));
	}

	#[test]
	fn test_matches_prefix_root() {
		let config = StaticFilesConfig::new("dist").url_prefix("/");
		let middleware = StaticFilesMiddleware::new(config);

		assert!(middleware.matches_prefix("/app.js"));
		assert!(middleware.matches_prefix("/api/users"));
	}

	#[test]
	fn test_get_file_path() {
		let config = StaticFilesConfig::new("dist").url_prefix("/static/");
		let middleware = StaticFilesMiddleware::new(config);

		assert_eq!(middleware.get_file_path("/static/app.js"), "app.js");
		assert_eq!(
			middleware.get_file_path("/static/css/style.css"),
			"css/style.css"
		);
	}

	#[test]
	fn test_is_extension_allowed_empty() {
		let config = StaticFilesConfig::new("dist");
		let middleware = StaticFilesMiddleware::new(config);

		assert!(middleware.is_extension_allowed("app.js"));
		assert!(middleware.is_extension_allowed("style.css"));
		assert!(middleware.is_extension_allowed("file.wasm"));
	}

	#[test]
	fn test_is_extension_allowed_restricted() {
		let config = StaticFilesConfig::new("dist").allowed_extensions(vec![
			"js".to_string(),
			"css".to_string(),
			"wasm".to_string(),
		]);
		let middleware = StaticFilesMiddleware::new(config);

		assert!(middleware.is_extension_allowed("app.js"));
		assert!(middleware.is_extension_allowed("style.css"));
		assert!(middleware.is_extension_allowed("app.wasm"));
		assert!(!middleware.is_extension_allowed("secret.json"));
	}

	#[rstest]
	fn test_config_default_has_cache_config() {
		// Arrange
		let config = StaticFilesConfig::default();

		// Act
		let html_policy = config.cache_config.get_policy("index.html");
		let js_policy = config.cache_config.get_policy("app.js");

		// Assert
		assert_eq!(
			html_policy.to_header_value(),
			"public, must-revalidate, max-age=300"
		);
		assert_eq!(
			js_policy.to_header_value(),
			"public, immutable, max-age=31536000"
		);
	}

	#[rstest]
	#[case("style.css", "public, immutable, max-age=31536000")]
	#[case("app.js", "public, immutable, max-age=31536000")]
	#[case("app.wasm", "public, immutable, max-age=31536000")]
	#[case("font.woff2", "public, immutable, max-age=31536000")]
	fn test_config_cache_long_term_extensions(#[case] path: &str, #[case] expected: &str) {
		// Arrange
		let config = StaticFilesConfig::default();

		// Act
		let policy = config.cache_config.get_policy(path);

		// Assert
		assert_eq!(policy.to_header_value(), expected);
	}

	#[rstest]
	#[case("index.html", "public, must-revalidate, max-age=300")]
	#[case("file.unknown", "public, must-revalidate, max-age=300")]
	fn test_config_cache_short_term_extensions(#[case] path: &str, #[case] expected: &str) {
		// Arrange
		let config = StaticFilesConfig::default();

		// Act
		let policy = config.cache_config.get_policy(path);

		// Assert
		assert_eq!(policy.to_header_value(), expected);
	}

	#[rstest]
	fn test_config_custom_cache_config() {
		// Arrange
		let custom_cache =
			CacheControlConfig::new().with_type_policy("html".to_string(), CachePolicy::no_cache());

		// Act
		let config = StaticFilesConfig::new("dist").cache_config(custom_cache);
		let html_policy = config.cache_config.get_policy("index.html");

		// Assert
		assert_eq!(
			html_policy.to_header_value(),
			"no-cache, no-store, must-revalidate"
		);
	}

	#[rstest]
	fn test_config_index_file_default_is_none() {
		// Arrange & Act
		let config = StaticFilesConfig::default();

		// Assert
		assert!(config.index_file.is_none());
	}

	#[rstest]
	fn test_config_index_file_builder_sets_path() {
		// Arrange & Act
		let config = StaticFilesConfig::new("dist").index_file("./index.html");

		// Assert
		assert_eq!(config.index_file, Some(PathBuf::from("./index.html")));
	}

	#[rstest]
	fn test_config_index_file_absolute_path_preserved() {
		// Arrange & Act
		let config = StaticFilesConfig::new("dist").index_file("/absolute/path/index.html");

		// Assert
		assert_eq!(
			config.index_file,
			Some(PathBuf::from("/absolute/path/index.html"))
		);
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_direct_file_existing_html() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let index_path = dir.path().join("index.html");
		std::fs::write(&index_path, "<html>hello</html>").unwrap();

		let config = StaticFilesConfig::new(dir.path().join("dist")).index_file(&index_path);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_direct_file(&index_path).await;

		// Assert
		let response = response.expect("should return Some");
		assert_eq!(response.headers.get("Content-Type").unwrap(), "text/html");
		assert!(response.headers.contains_key("ETag"));
		assert!(response.headers.contains_key("Cache-Control"));
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_direct_file_nonexistent_returns_none() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let config = StaticFilesConfig::new("dist");
		let middleware = StaticFilesMiddleware::new(config);
		let nonexistent = dir.path().join("nonexistent_index_2869.html");

		// Act
		let response = middleware.serve_direct_file(&nonexistent).await;

		// Assert
		assert!(response.is_none());
	}

	#[rstest]
	fn test_config_index_file_with_spa_mode_false() {
		// Arrange & Act
		let config = StaticFilesConfig::new("dist")
			.index_file("./index.html")
			.spa_mode(false);

		// Assert
		assert_eq!(config.index_file, Some(PathBuf::from("./index.html")));
		assert!(!config.spa_mode);
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_with_index_file_serves_direct_path() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let index_path = dir.path().join("index.html");
		std::fs::write(&index_path, "<html>direct</html>").unwrap();

		// Create dist/ with a DIFFERENT index.html to verify priority
		let dist = dir.path().join("dist");
		std::fs::create_dir_all(&dist).unwrap();
		std::fs::write(dist.join("index.html"), "<html>dist</html>").unwrap();

		let config = StaticFilesConfig::new(&dist).index_file(&index_path);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert
		let response = response.expect("should return Some");
		let body = std::str::from_utf8(&response.body).unwrap();
		assert_eq!(body, "<html>direct</html>");
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_without_index_file_searches_root_dir() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let dist = dir.path().join("dist");
		std::fs::create_dir_all(&dist).unwrap();
		std::fs::write(dist.join("index.html"), "<html>dist fallback</html>").unwrap();

		let config = StaticFilesConfig::new(&dist);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert
		let response = response.expect("should return Some");
		let body = std::str::from_utf8(&response.body).unwrap();
		assert_eq!(body, "<html>dist fallback</html>");
	}

	#[rstest]
	#[tokio::test]
	async fn test_etag_matches_static_file_handler_format() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let index_path = dir.path().join("index.html");
		std::fs::write(&index_path, "<html>etag test</html>").unwrap();

		let config = StaticFilesConfig::new(dir.path().join("dist")).index_file(&index_path);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_direct_file(&index_path).await.unwrap();
		let etag = response.headers.get("ETag").unwrap().to_str().unwrap();

		// Assert — ETag must be quoted and contain a numeric hash
		assert!(etag.starts_with('"'));
		assert!(etag.ends_with('"'));
		assert!(etag.len() > 2);
	}

	#[rstest]
	#[tokio::test]
	async fn test_etag_consistent_between_serve_direct_and_try_serve() {
		// Arrange — same file accessible via both paths
		let dir = tempfile::tempdir().unwrap();
		let index_path = dir.path().join("index.html");
		std::fs::write(&index_path, "<html>consistency</html>").unwrap();

		let config = StaticFilesConfig::new(dir.path()).index_file(&index_path);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let direct_response = middleware.serve_direct_file(&index_path).await.unwrap();
		let try_response = middleware.try_serve("index.html").await.unwrap();

		// Assert
		let direct_etag = direct_response.headers.get("ETag").unwrap();
		let try_etag = try_response.headers.get("ETag").unwrap();
		assert_eq!(direct_etag, try_etag);
	}

	#[rstest]
	#[tokio::test]
	async fn test_backward_compat_no_index_file_uses_root_dir() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("index.html"), "<html>compat</html>").unwrap();

		let config = StaticFilesConfig::new(dir.path());
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert
		let response = response.expect("should serve from root_dir");
		let body = std::str::from_utf8(&response.body).unwrap();
		assert_eq!(body, "<html>compat</html>");
	}

	#[rstest]
	#[tokio::test]
	async fn test_backward_compat_custom_index_files() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("default.html"), "<html>custom</html>").unwrap();

		let config =
			StaticFilesConfig::new(dir.path()).index_files(vec!["default.html".to_string()]);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert
		let response = response.expect("should serve custom index file");
		let body = std::str::from_utf8(&response.body).unwrap();
		assert_eq!(body, "<html>custom</html>");
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_direct_file_request_path_independent() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let index_path = dir.path().join("index.html");
		std::fs::write(&index_path, "<html>safe</html>").unwrap();

		let config = StaticFilesConfig::new(dir.path().join("dist"))
			.index_file(&index_path)
			.spa_mode(true);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response1 = middleware.serve_direct_file(&index_path).await;
		let response2 = middleware.serve_direct_file(&index_path).await;

		// Assert
		let body1 = std::str::from_utf8(&response1.unwrap().body)
			.unwrap()
			.to_string();
		let body2 = std::str::from_utf8(&response2.unwrap().body)
			.unwrap()
			.to_string();
		assert_eq!(body1, body2);
		assert_eq!(body1, "<html>safe</html>");
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_direct_file_cache_disabled_no_cache_header() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let index_path = dir.path().join("index.html");
		std::fs::write(&index_path, "<html>hello</html>").unwrap();

		let mut cache_config = CacheControlConfig::new();
		cache_config.enabled = false;

		let config = StaticFilesConfig::new(dir.path().join("dist"))
			.index_file(&index_path)
			.cache_config(cache_config);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_direct_file(&index_path).await;

		// Assert
		let response = response.expect("should return Some");
		assert!(response.headers.contains_key("ETag"));
		assert!(!response.headers.contains_key("Cache-Control"));
	}

	#[rstest]
	fn test_config_auto_inject_wasm_default_true() {
		// Arrange & Act
		let config = StaticFilesConfig::default();

		// Assert
		assert!(config.auto_inject_wasm);
	}

	#[rstest]
	fn test_config_auto_inject_wasm_builder() {
		// Arrange & Act
		let config = StaticFilesConfig::new("dist").auto_inject_wasm(false);

		// Assert
		assert!(!config.auto_inject_wasm);
	}

	#[rstest]
	fn test_config_wasm_entry_default_none() {
		// Arrange & Act
		let config = StaticFilesConfig::default();

		// Assert
		assert!(config.wasm_entry.is_none());
	}

	#[rstest]
	fn test_config_wasm_entry_builder() {
		// Arrange & Act
		let config = StaticFilesConfig::new("dist").wasm_entry("my_app.js");

		// Assert
		assert_eq!(config.wasm_entry, Some("my_app.js".to_string()));
	}

	#[rstest]
	fn test_config_wasm_manifest_default_none() {
		// Arrange & Act
		let config = StaticFilesConfig::default();

		// Assert
		assert!(config.wasm_manifest.is_none());
	}

	#[rstest]
	fn test_config_wasm_manifest_builder() {
		// Arrange
		let mut manifest = HashMap::new();
		manifest.insert("app.js".to_string(), "app.abc123.js".to_string());

		// Act
		let config = StaticFilesConfig::new("dist").wasm_manifest(manifest.clone());

		// Assert
		assert_eq!(config.wasm_manifest, Some(manifest));
	}

	#[rstest]
	#[should_panic(expected = "invalid characters")]
	fn test_config_wasm_entry_rejects_unsafe_chars() {
		// Arrange & Act & Assert
		StaticFilesConfig::new("dist").wasm_entry("my app;rm -rf.js");
	}

	#[rstest]
	fn test_config_wasm_entry_allows_path_separators() {
		// Arrange & Act
		let config = StaticFilesConfig::new("dist").wasm_entry("sub/my_app.js");

		// Assert
		assert_eq!(config.wasm_entry, Some("sub/my_app.js".to_string()));
	}

	#[rstest]
	fn test_detect_wasm_entry_single_pair() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();
		let config = StaticFilesConfig::new(dir.path());

		// Act
		let entry = StaticFilesMiddleware::detect_wasm_entry(&config);

		// Assert
		let entry = entry.expect("should detect single pair");
		assert_eq!(entry.js_file, "my_app.js");
		assert_eq!(entry.wasm_file, "my_app_bg.wasm");
	}

	#[rstest]
	fn test_detect_wasm_entry_no_pair() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("app.js"), "// js").unwrap();
		// No matching _bg.wasm file
		let config = StaticFilesConfig::new(dir.path());

		// Act
		let entry = StaticFilesMiddleware::detect_wasm_entry(&config);

		// Assert
		assert!(entry.is_none());
	}

	#[rstest]
	fn test_detect_wasm_entry_multiple_pairs_falls_back_to_wasm_entry() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("app_a.js"), "// js a").unwrap();
		std::fs::write(dir.path().join("app_a_bg.wasm"), [0u8; 4]).unwrap();
		std::fs::write(dir.path().join("app_b.js"), "// js b").unwrap();
		std::fs::write(dir.path().join("app_b_bg.wasm"), [0u8; 4]).unwrap();
		let config = StaticFilesConfig::new(dir.path()).wasm_entry("app_a.js");

		// Act
		let entry = StaticFilesMiddleware::detect_wasm_entry(&config);

		// Assert
		let entry = entry.expect("should fall back to wasm_entry");
		assert_eq!(entry.js_file, "app_a.js");
		assert_eq!(entry.wasm_file, "app_a_bg.wasm");
	}

	#[rstest]
	fn test_detect_wasm_entry_fallback_missing_file() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		// Only create js, not the wasm file
		std::fs::write(dir.path().join("missing_app.js"), "// js").unwrap();
		let config = StaticFilesConfig::new(dir.path()).wasm_entry("missing_app.js");

		// Act
		let entry = StaticFilesMiddleware::detect_wasm_entry(&config);

		// Assert
		assert!(entry.is_none());
	}

	#[rstest]
	fn test_detect_wasm_entry_disabled() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();
		let config = StaticFilesConfig::new(dir.path()).auto_inject_wasm(false);

		// Act
		let middleware = StaticFilesMiddleware::new(config);

		// Assert
		assert!(middleware.wasm_entry.is_none());
	}

	#[rstest]
	fn test_detect_wasm_entry_ignores_non_wasm_js_files() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("utils.js"), "// utility").unwrap();
		std::fs::write(dir.path().join("style.css"), "body{}").unwrap();
		std::fs::write(dir.path().join("data.json"), "{}").unwrap();
		let config = StaticFilesConfig::new(dir.path());

		// Act
		let entry = StaticFilesMiddleware::detect_wasm_entry(&config);

		// Assert
		assert!(entry.is_none());
	}

	#[rstest]
	fn test_resolve_wasm_url_no_manifest() {
		// Arrange & Act
		let url = StaticFilesMiddleware::resolve_wasm_url("app.js", "/static/", None);

		// Assert
		assert_eq!(url, "/static/app.js");
	}

	#[rstest]
	fn test_resolve_wasm_url_with_manifest_match() {
		// Arrange
		let mut manifest = HashMap::new();
		manifest.insert("app.js".to_string(), "app.abc123.js".to_string());

		// Act
		let url = StaticFilesMiddleware::resolve_wasm_url("app.js", "/static/", Some(&manifest));

		// Assert
		assert_eq!(url, "/static/app.abc123.js");
	}

	#[rstest]
	fn test_resolve_wasm_url_with_manifest_no_match() {
		// Arrange
		let mut manifest = HashMap::new();
		manifest.insert("other.js".to_string(), "other.xyz.js".to_string());

		// Act
		let url = StaticFilesMiddleware::resolve_wasm_url("app.js", "/static/", Some(&manifest));

		// Assert
		assert_eq!(url, "/static/app.js");
	}

	#[rstest]
	fn test_inject_wasm_script_before_body() {
		// Arrange
		let html = "<html><body><h1>Hello</h1></body></html>";
		let entry = WasmEntry {
			js_file: "app.js".to_string(),
			wasm_file: "app_bg.wasm".to_string(),
		};

		// Act
		let result = StaticFilesMiddleware::inject_wasm_script(html, &entry, "/", None);

		// Assert — generated HTML with dynamic URLs
		assert!(result.contains("<!-- Reinhardt WASM Auto-Loader -->"));
		assert!(result.contains("await import('/app.js')"));
		assert!(result.contains("await init('/app_bg.wasm')"));
		assert!(result.contains("</body></html>"));
	}

	#[rstest]
	fn test_inject_wasm_script_case_insensitive_body() {
		// Arrange
		let html = "<html><body><h1>Hello</h1></BODY></html>";
		let entry = WasmEntry {
			js_file: "app.js".to_string(),
			wasm_file: "app_bg.wasm".to_string(),
		};

		// Act
		let result = StaticFilesMiddleware::inject_wasm_script(html, &entry, "/", None);

		// Assert — generated HTML with dynamic URLs
		assert!(result.contains("<!-- Reinhardt WASM Auto-Loader -->"));
		assert!(result.contains("</BODY></html>"));
	}

	#[rstest]
	fn test_inject_wasm_script_no_body_tag_appends() {
		// Arrange
		let html = "<html><h1>No body tag</h1></html>";
		let entry = WasmEntry {
			js_file: "app.js".to_string(),
			wasm_file: "app_bg.wasm".to_string(),
		};

		// Act
		let result = StaticFilesMiddleware::inject_wasm_script(html, &entry, "/", None);

		// Assert — generated HTML with dynamic URLs
		assert!(result.ends_with("</script>\n"));
		assert!(result.contains("<!-- Reinhardt WASM Auto-Loader -->"));
	}

	#[rstest]
	fn test_inject_wasm_script_with_manifest() {
		// Arrange
		let html = "<html><body></body></html>";
		let entry = WasmEntry {
			js_file: "app.js".to_string(),
			wasm_file: "app_bg.wasm".to_string(),
		};
		let mut manifest = HashMap::new();
		manifest.insert("app.js".to_string(), "app.h4sh.js".to_string());
		manifest.insert("app_bg.wasm".to_string(), "app_bg.h4sh.wasm".to_string());

		// Act
		let result = StaticFilesMiddleware::inject_wasm_script(html, &entry, "/", Some(&manifest));

		// Assert — generated HTML with dynamic URLs
		assert!(result.contains("await import('/app.h4sh.js')"));
		assert!(result.contains("await init('/app_bg.h4sh.wasm')"));
	}

	#[rstest]
	fn test_inject_wasm_script_with_url_prefix() {
		// Arrange
		let html = "<html><body></body></html>";
		let entry = WasmEntry {
			js_file: "app.js".to_string(),
			wasm_file: "app_bg.wasm".to_string(),
		};

		// Act
		let result = StaticFilesMiddleware::inject_wasm_script(html, &entry, "/static/", None);

		// Assert — generated HTML with dynamic URLs
		assert!(result.contains("await import('/static/app.js')"));
		assert!(result.contains("await init('/static/app_bg.wasm')"));
	}

	#[rstest]
	fn test_detect_wasm_entry_fallback_with_path_separator() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		let sub = dir.path().join("pkg");
		std::fs::create_dir_all(&sub).unwrap();
		std::fs::write(sub.join("my_app.js"), "// js").unwrap();
		std::fs::write(sub.join("my_app_bg.wasm"), [0u8; 4]).unwrap();
		let config = StaticFilesConfig::new(dir.path()).wasm_entry("pkg/my_app.js");

		// Act
		let entry = StaticFilesMiddleware::detect_wasm_entry(&config);

		// Assert
		let entry = entry.expect("should resolve path with separator");
		assert_eq!(entry.js_file, "pkg/my_app.js");
		assert_eq!(entry.wasm_file, "pkg/my_app_bg.wasm");
	}

	#[rstest]
	#[should_panic(expected = "path traversal")]
	fn test_config_wasm_entry_rejects_path_traversal() {
		// Arrange & Act & Assert
		StaticFilesConfig::new("dist").wasm_entry("../../etc/passwd.js");
	}

	#[rstest]
	#[should_panic(expected = "must not be empty")]
	fn test_config_wasm_entry_rejects_empty_string() {
		// Arrange & Act & Assert
		StaticFilesConfig::new("dist").wasm_entry("");
	}

	#[rstest]
	fn test_resolve_wasm_url_rejects_unsafe_manifest_values() {
		// Arrange
		let mut manifest = HashMap::new();
		manifest.insert("app.js".to_string(), "');alert('xss".to_string());

		// Act
		let url = StaticFilesMiddleware::resolve_wasm_url("app.js", "/", Some(&manifest));

		// Assert — falls back to original filename due to unsafe manifest value
		assert_eq!(url, "/app.js");
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_auto_injects_wasm() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(
			dir.path().join("index.html"),
			"<html><body><h1>App</h1></body></html>",
		)
		.unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();

		let config = StaticFilesConfig::new(dir.path());
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert — generated HTML with dynamic URLs
		let response = response.expect("should return Some");
		let body = std::str::from_utf8(&response.body).unwrap();
		assert!(body.contains("<!-- Reinhardt WASM Auto-Loader -->"));
		assert!(body.contains("await import('/my_app.js')"));
		assert!(body.contains("await init('/my_app_bg.wasm')"));
		assert!(body.contains("</body></html>"));
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_no_inject_when_disabled() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(
			dir.path().join("index.html"),
			"<html><body><h1>App</h1></body></html>",
		)
		.unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();

		let config = StaticFilesConfig::new(dir.path()).auto_inject_wasm(false);
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert
		let response = response.expect("should return Some");
		let body = std::str::from_utf8(&response.body).unwrap();
		assert!(!body.contains("Reinhardt WASM Auto-Loader"));
		assert_eq!(body, "<html><body><h1>App</h1></body></html>");
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_etag_reflects_injected_content() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("index.html"), "<html><body></body></html>").unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();

		let config_with = StaticFilesConfig::new(dir.path());
		let mw_with = StaticFilesMiddleware::new(config_with);

		let config_without = StaticFilesConfig::new(dir.path()).auto_inject_wasm(false);
		let mw_without = StaticFilesMiddleware::new(config_without);

		// Act
		let resp_with = mw_with.serve_spa_fallback().await.unwrap();
		let resp_without = mw_without.serve_spa_fallback().await.unwrap();

		// Assert — ETags must differ because content differs after injection
		let etag_with = resp_with.headers.get("ETag").unwrap();
		let etag_without = resp_without.headers.get("ETag").unwrap();
		assert_ne!(etag_with, etag_without);
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_no_inject_when_spa_mode_false() {
		// Arrange — spa_mode gate is in process(), not serve_spa_fallback()
		// This test verifies that serve_spa_fallback still works independently
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("index.html"), "<html><body></body></html>").unwrap();

		let config = StaticFilesConfig::new(dir.path()).spa_mode(false);
		let middleware = StaticFilesMiddleware::new(config);

		// Act — calling serve_spa_fallback directly bypasses the spa_mode check in process()
		let response = middleware.serve_spa_fallback().await;

		// Assert — response is still produced (spa_mode gating is in process())
		assert!(response.is_some());
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_invalid_utf8_serves_raw() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		// Write invalid UTF-8 content as an index file
		let invalid_bytes: Vec<u8> = vec![0xFF, 0xFE, 0x00, 0x3C, 0x68, 0x74, 0x6D, 0x6C];
		std::fs::write(dir.path().join("index.html"), &invalid_bytes).unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();

		let config = StaticFilesConfig::new(dir.path());
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert — should serve raw content without injection
		let response = response.expect("should return Some");
		assert_eq!(response.body, invalid_bytes);
	}

	#[rstest]
	#[tokio::test]
	async fn test_serve_spa_fallback_preserves_content_type_and_cache_headers() {
		// Arrange
		let dir = tempfile::tempdir().unwrap();
		std::fs::write(dir.path().join("index.html"), "<html><body></body></html>").unwrap();
		std::fs::write(dir.path().join("my_app.js"), "// js").unwrap();
		std::fs::write(dir.path().join("my_app_bg.wasm"), [0u8; 4]).unwrap();

		let config = StaticFilesConfig::new(dir.path());
		let middleware = StaticFilesMiddleware::new(config);

		// Act
		let response = middleware.serve_spa_fallback().await;

		// Assert
		let response = response.expect("should return Some");
		assert_eq!(response.headers.get("Content-Type").unwrap(), "text/html");
		assert!(response.headers.contains_key("ETag"));
		assert!(response.headers.contains_key("Cache-Control"));
	}
}