mockforge-plugin-loader 0.3.147

Plugin loader with security sandboxing and validation for MockForge
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
//! Runtime adapter for supporting multiple plugin runtimes
//!
//! This module provides an abstraction layer that allows MockForge to load and execute
//! plugins written in different languages and compiled with different WASM runtimes.
//!
//! Supported runtimes:
//! - Rust (native, via wasmtime)
//! - TinyGo (Go compiled to WASM)
//! - AssemblyScript (TypeScript-like, compiled to WASM)
//! - Remote (HTTP/gRPC-based plugins in any language)

use async_trait::async_trait;
use mockforge_plugin_core::{
    AuthRequest, AuthResponse, DataQuery, DataResult, PluginContext, PluginError, PluginId,
    ResolutionContext, ResponseData, ResponseRequest,
};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use wasmparser::{Parser, Payload};
use wasmtime::{Engine, Instance, Linker, Module, Store};
use wasmtime_wasi::{WasiCtx, WasiCtxBuilder};

/// Enum representing different plugin runtime types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RuntimeType {
    /// Native Rust plugin compiled to WASM
    Rust,
    /// TinyGo compiled plugin
    TinyGo,
    /// AssemblyScript compiled plugin
    AssemblyScript,
    /// Remote plugin accessed via HTTP/gRPC
    Remote(RemoteRuntimeConfig),
}

/// Configuration for remote plugin runtime
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RemoteRuntimeConfig {
    /// Protocol to use (http or grpc)
    pub protocol: RemoteProtocol,
    /// Endpoint URL
    pub endpoint: String,
    /// Request timeout in milliseconds
    pub timeout_ms: u64,
    /// Maximum number of retries
    pub max_retries: u32,
    /// Authentication configuration
    pub auth: Option<RemoteAuthConfig>,
}

/// Protocol for remote plugin communication
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RemoteProtocol {
    /// HTTP/REST protocol
    Http,
    /// gRPC protocol
    Grpc,
}

/// Authentication configuration for remote plugin runtime
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RemoteAuthConfig {
    /// Authentication type (bearer, api_key, etc.)
    pub auth_type: String,
    /// Authentication value
    pub value: String,
}

/// Trait that all runtime adapters must implement
///
/// This allows different WASM runtimes and remote plugins to be used interchangeably
#[async_trait]
pub trait RuntimeAdapter: Send + Sync {
    /// Get the runtime type
    fn runtime_type(&self) -> RuntimeType;

    /// Initialize the runtime (called once during plugin load)
    async fn initialize(&mut self) -> Result<(), PluginError>;

    /// Call authentication plugin
    async fn call_auth(
        &self,
        context: &PluginContext,
        request: &AuthRequest,
    ) -> Result<AuthResponse, PluginError>;

    /// Call template function plugin
    async fn call_template_function(
        &self,
        function_name: &str,
        args: &[serde_json::Value],
        context: &ResolutionContext,
    ) -> Result<serde_json::Value, PluginError>;

    /// Call response generator plugin
    async fn call_response_generator(
        &self,
        context: &PluginContext,
        request: &ResponseRequest,
    ) -> Result<ResponseData, PluginError>;

    /// Call data source query plugin
    async fn call_datasource_query(
        &self,
        query: &DataQuery,
        context: &PluginContext,
    ) -> Result<DataResult, PluginError>;

    /// Health check - returns true if the plugin is healthy
    async fn health_check(&self) -> Result<bool, PluginError>;

    /// Cleanup resources (called during plugin unload)
    async fn cleanup(&mut self) -> Result<(), PluginError>;

    /// Get runtime-specific metrics
    fn get_metrics(&self) -> HashMap<String, serde_json::Value> {
        HashMap::new()
    }
}

/// Detect runtime type from WASM binary
pub fn detect_runtime_type(wasm_bytes: &[u8]) -> Result<RuntimeType, PluginError> {
    // Parse WASM module to detect runtime type
    // This is a simplified version - real implementation would parse WASM sections

    // Check for TinyGo signatures
    if has_tinygo_signature(wasm_bytes) {
        return Ok(RuntimeType::TinyGo);
    }

    // Check for AssemblyScript signatures
    if has_assemblyscript_signature(wasm_bytes) {
        return Ok(RuntimeType::AssemblyScript);
    }

    // Default to Rust
    Ok(RuntimeType::Rust)
}

/// Check if WASM binary has TinyGo signature
fn has_tinygo_signature(wasm_bytes: &[u8]) -> bool {
    let (exports, custom_sections) = extract_wasm_signatures(wasm_bytes);

    // TinyGo modules typically export these runtime helpers.
    let has_runtime_exports = exports.contains("resume") && exports.contains("getsp");
    let has_tinygo_custom = custom_sections.iter().any(|s| s.contains("tinygo"));

    has_runtime_exports
        || has_tinygo_custom
        || String::from_utf8_lossy(wasm_bytes).contains("tinygo")
}

/// Check if WASM binary has AssemblyScript signature
fn has_assemblyscript_signature(wasm_bytes: &[u8]) -> bool {
    let (exports, custom_sections) = extract_wasm_signatures(wasm_bytes);

    // AssemblyScript modules typically export allocation/pinning helpers.
    let has_alloc_exports =
        exports.contains("__new") && (exports.contains("__pin") || exports.contains("__unpin"));
    let has_as_custom = custom_sections
        .iter()
        .any(|s| s.contains("assemblyscript") || s.contains("asc"));

    has_alloc_exports
        || has_as_custom
        || String::from_utf8_lossy(wasm_bytes).contains("assemblyscript")
}

fn extract_wasm_signatures(wasm_bytes: &[u8]) -> (std::collections::HashSet<String>, Vec<String>) {
    use std::collections::HashSet;

    let mut exports = HashSet::new();
    let mut custom_sections = Vec::new();

    for payload in Parser::new(0).parse_all(wasm_bytes) {
        match payload {
            Ok(Payload::ExportSection(section)) => {
                for export in section.into_iter().flatten() {
                    exports.insert(export.name.to_string());
                }
            }
            Ok(Payload::CustomSection(section)) => {
                custom_sections.push(section.name().to_string());
            }
            Ok(_) => {}
            Err(_) => break,
        }
    }

    (exports, custom_sections)
}

/// Factory for creating runtime adapters
pub struct RuntimeAdapterFactory;

impl RuntimeAdapterFactory {
    /// Create a runtime adapter for the given runtime type
    pub fn create(
        runtime_type: RuntimeType,
        plugin_id: PluginId,
        wasm_bytes: Vec<u8>,
    ) -> Result<Box<dyn RuntimeAdapter>, PluginError> {
        match runtime_type {
            RuntimeType::Rust => Ok(Box::new(RustAdapter::new(plugin_id, wasm_bytes)?)),
            RuntimeType::TinyGo => Ok(Box::new(TinyGoAdapter::new(plugin_id, wasm_bytes)?)),
            RuntimeType::AssemblyScript => {
                Ok(Box::new(AssemblyScriptAdapter::new(plugin_id, wasm_bytes)?))
            }
            RuntimeType::Remote(config) => Ok(Box::new(RemoteAdapter::new(plugin_id, config)?)),
        }
    }
}

// ============================================================================
// Rust Runtime Adapter (Existing Implementation)
// ============================================================================

/// WASM runtime adapter for plugins compiled from Rust
pub struct RustAdapter {
    plugin_id: PluginId,
    engine: Arc<Engine>,
    module: Module,
    // Store and Instance need to be behind a Mutex since they're not Send/Sync
    runtime: Mutex<Option<WasmRuntime>>,
}

struct WasmRuntime {
    store: Store<WasiCtx>,
    instance: Instance,
}

impl RustAdapter {
    /// Create a new Rust runtime adapter
    ///
    /// # Arguments
    /// * `plugin_id` - Unique identifier for the plugin
    /// * `wasm_bytes` - WebAssembly binary bytes
    ///
    /// # Returns
    /// `Ok(RustAdapter)` on success, `Err(PluginError)` if WASM module cannot be loaded
    pub fn new(plugin_id: PluginId, wasm_bytes: Vec<u8>) -> Result<Self, PluginError> {
        let engine = Arc::new(Engine::default());
        let module = Module::from_binary(&engine, &wasm_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to load WASM module: {}", e)))?;

        Ok(Self {
            plugin_id,
            engine,
            module,
            runtime: Mutex::new(None),
        })
    }

    /// Helper to call a WASM function with JSON input/output
    fn call_wasm_json(
        &self,
        function_name: &str,
        input_data: serde_json::Value,
    ) -> Result<serde_json::Value, PluginError> {
        let mut runtime_guard =
            self.runtime.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
        let runtime = runtime_guard.as_mut().ok_or_else(|| {
            PluginError::execution("Runtime not initialized. Call initialize() first.".to_string())
        })?;

        let input_json = serde_json::to_string(&input_data)
            .map_err(|e| PluginError::execution(format!("Failed to serialize input: {}", e)))?;

        let input_bytes = input_json.as_bytes();
        let input_len = input_bytes.len() as i32;

        // Get memory and alloc function
        let memory =
            runtime.instance.get_memory(&mut runtime.store, "memory").ok_or_else(|| {
                PluginError::execution("WASM module must export 'memory'".to_string())
            })?;

        let alloc_func = runtime
            .instance
            .get_typed_func::<i32, i32>(&mut runtime.store, "alloc")
            .map_err(|e| {
            PluginError::execution(format!("Failed to get alloc function: {}", e))
        })?;

        // Allocate memory for input
        let input_ptr = alloc_func
            .call(&mut runtime.store, input_len)
            .map_err(|e| PluginError::execution(format!("Failed to allocate memory: {}", e)))?;

        // Write input to WASM memory
        memory
            .write(&mut runtime.store, input_ptr as usize, input_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to write input: {}", e)))?;

        // Call the plugin function
        let plugin_func = runtime
            .instance
            .get_typed_func::<(i32, i32), (i32, i32)>(&mut runtime.store, function_name)
            .map_err(|e| {
                PluginError::execution(format!("Function '{}' not found: {}", function_name, e))
            })?;

        let (output_ptr, output_len) =
            plugin_func.call(&mut runtime.store, (input_ptr, input_len)).map_err(|e| {
                PluginError::execution(format!(
                    "Failed to call function '{}': {}",
                    function_name, e
                ))
            })?;

        // Read output from WASM memory
        let mut output_bytes = vec![0u8; output_len as usize];
        memory
            .read(&runtime.store, output_ptr as usize, &mut output_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to read output: {}", e)))?;

        // Deallocate memory if dealloc function exists
        if let Ok(dealloc_func) =
            runtime.instance.get_typed_func::<(i32, i32), ()>(&mut runtime.store, "dealloc")
        {
            let _ = dealloc_func.call(&mut runtime.store, (input_ptr, input_len));
            let _ = dealloc_func.call(&mut runtime.store, (output_ptr, output_len));
        }

        // Parse output as JSON
        let output_str = String::from_utf8(output_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to decode output: {}", e)))?;

        serde_json::from_str(&output_str)
            .map_err(|e| PluginError::execution(format!("Failed to parse output JSON: {}", e)))
    }
}

#[async_trait]
impl RuntimeAdapter for RustAdapter {
    fn runtime_type(&self) -> RuntimeType {
        RuntimeType::Rust
    }

    async fn initialize(&mut self) -> Result<(), PluginError> {
        // Initialize wasmtime instance with the Rust WASM module
        tracing::info!("Initializing Rust plugin: {}", self.plugin_id);

        // Create WASI context
        let wasi_ctx = WasiCtxBuilder::new().inherit_stderr().inherit_stdout().build();

        // Create store
        let mut store = Store::new(&self.engine, wasi_ctx);

        // Create linker
        let linker = Linker::new(&self.engine);

        // Instantiate the module
        let instance = linker
            .instantiate(&mut store, &self.module)
            .map_err(|e| PluginError::execution(format!("Failed to instantiate module: {}", e)))?;

        // Store the runtime
        let mut runtime_guard =
            self.runtime.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
        *runtime_guard = Some(WasmRuntime { store, instance });

        tracing::info!("Successfully initialized Rust plugin: {}", self.plugin_id);
        Ok(())
    }

    async fn call_auth(
        &self,
        context: &PluginContext,
        request: &AuthRequest,
    ) -> Result<AuthResponse, PluginError> {
        // Call Rust WASM plugin's auth function
        // Note: AuthRequest contains axum::http types which might not serialize well
        // So we create a simplified version for WASM
        let input = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri.to_string(),
            "query_params": request.query_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_wasm_json("authenticate", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse AuthResponse: {}", e)))
    }

    async fn call_template_function(
        &self,
        function_name: &str,
        args: &[serde_json::Value],
        context: &ResolutionContext,
    ) -> Result<serde_json::Value, PluginError> {
        let input = serde_json::json!({
            "function_name": function_name,
            "args": args,
            "context": context,
        });

        self.call_wasm_json("template_function", input)
    }

    async fn call_response_generator(
        &self,
        context: &PluginContext,
        request: &ResponseRequest,
    ) -> Result<ResponseData, PluginError> {
        // Create simplified request for WASM (avoid non-serializable types)
        let input = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri,
            "path": request.path,
            "query_params": request.query_params,
            "path_params": request.path_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_wasm_json("generate_response", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse ResponseData: {}", e)))
    }

    async fn call_datasource_query(
        &self,
        query: &DataQuery,
        context: &PluginContext,
    ) -> Result<DataResult, PluginError> {
        // DataQuery should be serializable, but create simplified version to be safe
        let input = serde_json::json!({
            "query_type": format!("{:?}", query.query_type),
            "query": query.query,
            "parameters": query.parameters,
            "limit": query.limit,
            "offset": query.offset,
            "context": context,
        });

        let result = self.call_wasm_json("query_datasource", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse DataResult: {}", e)))
    }

    async fn health_check(&self) -> Result<bool, PluginError> {
        Ok(true)
    }

    async fn cleanup(&mut self) -> Result<(), PluginError> {
        Ok(())
    }
}

// ============================================================================
// TinyGo Runtime Adapter
// ============================================================================

/// WASM runtime adapter for plugins compiled from TinyGo
pub struct TinyGoAdapter {
    plugin_id: PluginId,
    engine: Arc<Engine>,
    module: Module,
    runtime: Mutex<Option<WasmRuntime>>,
}

impl TinyGoAdapter {
    /// Create a new TinyGo runtime adapter
    ///
    /// # Arguments
    /// * `plugin_id` - Unique identifier for the plugin
    /// * `wasm_bytes` - WebAssembly binary bytes from TinyGo compilation
    ///
    /// # Returns
    /// `Ok(TinyGoAdapter)` on success, `Err(PluginError)` if WASM module cannot be loaded
    pub fn new(plugin_id: PluginId, wasm_bytes: Vec<u8>) -> Result<Self, PluginError> {
        let engine = Arc::new(Engine::default());
        let module = Module::from_binary(&engine, &wasm_bytes).map_err(|e| {
            PluginError::execution(format!("Failed to load TinyGo WASM module: {}", e))
        })?;

        Ok(Self {
            plugin_id,
            engine,
            module,
            runtime: Mutex::new(None),
        })
    }

    /// Helper to call a TinyGo WASM function with JSON input/output
    /// TinyGo uses specific memory management and calling conventions
    fn call_wasm_json(
        &self,
        function_name: &str,
        input_data: serde_json::Value,
    ) -> Result<serde_json::Value, PluginError> {
        let mut runtime_guard =
            self.runtime.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
        let runtime = runtime_guard.as_mut().ok_or_else(|| {
            PluginError::execution("Runtime not initialized. Call initialize() first.".to_string())
        })?;

        let input_json = serde_json::to_string(&input_data)
            .map_err(|e| PluginError::execution(format!("Failed to serialize input: {}", e)))?;

        let input_bytes = input_json.as_bytes();
        let input_len = input_bytes.len() as i32;

        // Get memory (TinyGo always exports memory)
        let memory =
            runtime.instance.get_memory(&mut runtime.store, "memory").ok_or_else(|| {
                PluginError::execution("TinyGo WASM module must export 'memory'".to_string())
            })?;

        // TinyGo uses malloc instead of alloc
        let malloc_func = runtime
            .instance
            .get_typed_func::<i32, i32>(&mut runtime.store, "malloc")
            .map_err(|e| {
                PluginError::execution(format!(
                    "Failed to get malloc function (TinyGo specific): {}",
                    e
                ))
            })?;

        // Allocate memory for input
        let input_ptr = malloc_func
            .call(&mut runtime.store, input_len)
            .map_err(|e| PluginError::execution(format!("Failed to allocate memory: {}", e)))?;

        // Write input to WASM memory
        memory
            .write(&mut runtime.store, input_ptr as usize, input_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to write input: {}", e)))?;

        // Call the plugin function
        let plugin_func = runtime
            .instance
            .get_typed_func::<(i32, i32), (i32, i32)>(&mut runtime.store, function_name)
            .map_err(|e| {
                PluginError::execution(format!("Function '{}' not found: {}", function_name, e))
            })?;

        let (output_ptr, output_len) =
            plugin_func.call(&mut runtime.store, (input_ptr, input_len)).map_err(|e| {
                PluginError::execution(format!(
                    "Failed to call function '{}': {}",
                    function_name, e
                ))
            })?;

        // Read output from WASM memory
        let mut output_bytes = vec![0u8; output_len as usize];
        memory
            .read(&runtime.store, output_ptr as usize, &mut output_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to read output: {}", e)))?;

        // TinyGo uses free instead of dealloc
        if let Ok(free_func) =
            runtime.instance.get_typed_func::<i32, ()>(&mut runtime.store, "free")
        {
            let _ = free_func.call(&mut runtime.store, input_ptr);
            let _ = free_func.call(&mut runtime.store, output_ptr);
        }

        // Parse output as JSON
        let output_str = String::from_utf8(output_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to decode output: {}", e)))?;

        serde_json::from_str(&output_str)
            .map_err(|e| PluginError::execution(format!("Failed to parse output JSON: {}", e)))
    }
}

#[async_trait]
impl RuntimeAdapter for TinyGoAdapter {
    fn runtime_type(&self) -> RuntimeType {
        RuntimeType::TinyGo
    }

    async fn initialize(&mut self) -> Result<(), PluginError> {
        // Initialize wasmtime instance with TinyGo-specific configuration
        // TinyGo requires special memory management and import handling
        tracing::info!("Initializing TinyGo plugin: {}", self.plugin_id);

        // Create WASI context (TinyGo supports WASI)
        let wasi_ctx = WasiCtxBuilder::new().inherit_stderr().inherit_stdout().build();

        // Create store
        let mut store = Store::new(&self.engine, wasi_ctx);

        // Create linker with TinyGo-specific imports
        let linker = Linker::new(&self.engine);

        // TinyGo may require additional imports like syscall/js
        // For now, we'll use the basic linker

        // Instantiate the module
        let instance = linker.instantiate(&mut store, &self.module).map_err(|e| {
            PluginError::execution(format!("Failed to instantiate TinyGo module: {}", e))
        })?;

        // Store the runtime
        let mut runtime_guard =
            self.runtime.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
        *runtime_guard = Some(WasmRuntime { store, instance });

        tracing::info!("Successfully initialized TinyGo plugin: {}", self.plugin_id);
        Ok(())
    }

    async fn call_auth(
        &self,
        context: &PluginContext,
        request: &AuthRequest,
    ) -> Result<AuthResponse, PluginError> {
        // Call TinyGo WASM plugin's auth function
        let input = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri.to_string(),
            "query_params": request.query_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_wasm_json("authenticate", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse AuthResponse: {}", e)))
    }

    async fn call_template_function(
        &self,
        function_name: &str,
        args: &[serde_json::Value],
        context: &ResolutionContext,
    ) -> Result<serde_json::Value, PluginError> {
        let input = serde_json::json!({
            "function_name": function_name,
            "args": args,
            "context": context,
        });

        self.call_wasm_json("template_function", input)
    }

    async fn call_response_generator(
        &self,
        context: &PluginContext,
        request: &ResponseRequest,
    ) -> Result<ResponseData, PluginError> {
        // Create simplified request for WASM (avoid non-serializable types)
        let input = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri,
            "path": request.path,
            "query_params": request.query_params,
            "path_params": request.path_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_wasm_json("generate_response", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse ResponseData: {}", e)))
    }

    async fn call_datasource_query(
        &self,
        query: &DataQuery,
        context: &PluginContext,
    ) -> Result<DataResult, PluginError> {
        // DataQuery should be serializable, but create simplified version to be safe
        let input = serde_json::json!({
            "query_type": format!("{:?}", query.query_type),
            "query": query.query,
            "parameters": query.parameters,
            "limit": query.limit,
            "offset": query.offset,
            "context": context,
        });

        let result = self.call_wasm_json("query_datasource", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse DataResult: {}", e)))
    }

    async fn health_check(&self) -> Result<bool, PluginError> {
        Ok(true)
    }

    async fn cleanup(&mut self) -> Result<(), PluginError> {
        Ok(())
    }
}

// ============================================================================
// AssemblyScript Runtime Adapter
// ============================================================================

/// WASM runtime adapter for plugins compiled from AssemblyScript
pub struct AssemblyScriptAdapter {
    plugin_id: PluginId,
    engine: Arc<Engine>,
    module: Module,
    runtime: Mutex<Option<WasmRuntime>>,
}

impl AssemblyScriptAdapter {
    /// Create a new AssemblyScript runtime adapter
    ///
    /// # Arguments
    /// * `plugin_id` - Unique identifier for the plugin
    /// * `wasm_bytes` - WebAssembly binary bytes from AssemblyScript compilation
    ///
    /// # Returns
    /// `Ok(AssemblyScriptAdapter)` on success, `Err(PluginError)` if WASM module cannot be loaded
    pub fn new(plugin_id: PluginId, wasm_bytes: Vec<u8>) -> Result<Self, PluginError> {
        let engine = Arc::new(Engine::default());
        let module = Module::from_binary(&engine, &wasm_bytes).map_err(|e| {
            PluginError::execution(format!("Failed to load AssemblyScript WASM module: {}", e))
        })?;

        Ok(Self {
            plugin_id,
            engine,
            module,
            runtime: Mutex::new(None),
        })
    }

    /// Helper to call an AssemblyScript WASM function with JSON input/output
    /// AssemblyScript uses __new, __pin, __unpin for memory management
    fn call_wasm_json(
        &self,
        function_name: &str,
        input_data: serde_json::Value,
    ) -> Result<serde_json::Value, PluginError> {
        let mut runtime_guard =
            self.runtime.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
        let runtime = runtime_guard.as_mut().ok_or_else(|| {
            PluginError::execution("Runtime not initialized. Call initialize() first.".to_string())
        })?;

        let input_json = serde_json::to_string(&input_data)
            .map_err(|e| PluginError::execution(format!("Failed to serialize input: {}", e)))?;

        let input_bytes = input_json.as_bytes();
        let input_len = input_bytes.len() as i32;

        // Get memory
        let memory =
            runtime.instance.get_memory(&mut runtime.store, "memory").ok_or_else(|| {
                PluginError::execution(
                    "AssemblyScript WASM module must export 'memory'".to_string(),
                )
            })?;

        // AssemblyScript uses __new for allocation
        // Signature: __new(size: usize, id: u32) -> usize
        // For strings, id is typically 1
        let new_func = runtime
            .instance
            .get_typed_func::<(i32, i32), i32>(&mut runtime.store, "__new")
            .map_err(|e| {
                PluginError::execution(format!(
                    "Failed to get __new function (AssemblyScript specific): {}",
                    e
                ))
            })?;

        // Allocate memory for input (id=1 for string type)
        let input_ptr = new_func
            .call(&mut runtime.store, (input_len, 1))
            .map_err(|e| PluginError::execution(format!("Failed to allocate memory: {}", e)))?;

        // Pin the allocated memory to prevent GC
        if let Ok(pin_func) =
            runtime.instance.get_typed_func::<i32, i32>(&mut runtime.store, "__pin")
        {
            let _ = pin_func.call(&mut runtime.store, input_ptr);
        }

        // Write input to WASM memory
        memory
            .write(&mut runtime.store, input_ptr as usize, input_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to write input: {}", e)))?;

        // Call the plugin function
        let plugin_func = runtime
            .instance
            .get_typed_func::<(i32, i32), (i32, i32)>(&mut runtime.store, function_name)
            .map_err(|e| {
                PluginError::execution(format!("Function '{}' not found: {}", function_name, e))
            })?;

        let (output_ptr, output_len) =
            plugin_func.call(&mut runtime.store, (input_ptr, input_len)).map_err(|e| {
                PluginError::execution(format!(
                    "Failed to call function '{}': {}",
                    function_name, e
                ))
            })?;

        // Read output from WASM memory
        let mut output_bytes = vec![0u8; output_len as usize];
        memory
            .read(&runtime.store, output_ptr as usize, &mut output_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to read output: {}", e)))?;

        // Unpin the allocated memory
        if let Ok(unpin_func) =
            runtime.instance.get_typed_func::<i32, ()>(&mut runtime.store, "__unpin")
        {
            let _ = unpin_func.call(&mut runtime.store, input_ptr);
            let _ = unpin_func.call(&mut runtime.store, output_ptr);
        }

        // Parse output as JSON
        let output_str = String::from_utf8(output_bytes)
            .map_err(|e| PluginError::execution(format!("Failed to decode output: {}", e)))?;

        serde_json::from_str(&output_str)
            .map_err(|e| PluginError::execution(format!("Failed to parse output JSON: {}", e)))
    }
}

#[async_trait]
impl RuntimeAdapter for AssemblyScriptAdapter {
    fn runtime_type(&self) -> RuntimeType {
        RuntimeType::AssemblyScript
    }

    async fn initialize(&mut self) -> Result<(), PluginError> {
        tracing::info!("Initializing AssemblyScript plugin: {}", self.plugin_id);

        // Create WASI context (AssemblyScript may use WASI features)
        let wasi_ctx = WasiCtxBuilder::new().inherit_stderr().inherit_stdout().build();

        // Create store
        let mut store = Store::new(&self.engine, wasi_ctx);

        // Create linker
        let linker = Linker::new(&self.engine);

        // AssemblyScript modules typically don't require special imports
        // They use standard WASM with memory management functions

        // Instantiate the module
        let instance = linker.instantiate(&mut store, &self.module).map_err(|e| {
            PluginError::execution(format!("Failed to instantiate AssemblyScript module: {}", e))
        })?;

        // Store the runtime
        let mut runtime_guard =
            self.runtime.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
        *runtime_guard = Some(WasmRuntime { store, instance });

        tracing::info!("Successfully initialized AssemblyScript plugin: {}", self.plugin_id);
        Ok(())
    }

    async fn call_auth(
        &self,
        context: &PluginContext,
        request: &AuthRequest,
    ) -> Result<AuthResponse, PluginError> {
        let input = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri.to_string(),
            "query_params": request.query_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_wasm_json("authenticate", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse AuthResponse: {}", e)))
    }

    async fn call_template_function(
        &self,
        function_name: &str,
        args: &[serde_json::Value],
        context: &ResolutionContext,
    ) -> Result<serde_json::Value, PluginError> {
        let input = serde_json::json!({
            "function_name": function_name,
            "args": args,
            "context": context,
        });

        self.call_wasm_json("template_function", input)
    }

    async fn call_response_generator(
        &self,
        context: &PluginContext,
        request: &ResponseRequest,
    ) -> Result<ResponseData, PluginError> {
        // Create simplified request for WASM (avoid non-serializable types)
        let input = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri,
            "path": request.path,
            "query_params": request.query_params,
            "path_params": request.path_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_wasm_json("generate_response", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse ResponseData: {}", e)))
    }

    async fn call_datasource_query(
        &self,
        query: &DataQuery,
        context: &PluginContext,
    ) -> Result<DataResult, PluginError> {
        // DataQuery should be serializable, but create simplified version to be safe
        let input = serde_json::json!({
            "query_type": format!("{:?}", query.query_type),
            "query": query.query,
            "parameters": query.parameters,
            "limit": query.limit,
            "offset": query.offset,
            "context": context,
        });

        let result = self.call_wasm_json("query_datasource", input)?;
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse DataResult: {}", e)))
    }

    async fn health_check(&self) -> Result<bool, PluginError> {
        Ok(true)
    }

    async fn cleanup(&mut self) -> Result<(), PluginError> {
        Ok(())
    }
}

// ============================================================================
// Remote Runtime Adapter (HTTP/gRPC)
// ============================================================================

/// Runtime adapter for plugins running on remote servers (HTTP or gRPC)
pub struct RemoteAdapter {
    plugin_id: PluginId,
    config: RemoteRuntimeConfig,
    client: reqwest::Client,
}

impl RemoteAdapter {
    /// Create a new remote runtime adapter
    ///
    /// # Arguments
    /// * `plugin_id` - Unique identifier for the plugin
    /// * `config` - Remote runtime configuration (URL, protocol, auth, etc.)
    ///
    /// # Returns
    /// `Ok(RemoteAdapter)` on success, `Err(PluginError)` if HTTP client cannot be created
    pub fn new(plugin_id: PluginId, config: RemoteRuntimeConfig) -> Result<Self, PluginError> {
        let client = reqwest::Client::builder()
            .timeout(std::time::Duration::from_millis(config.timeout_ms))
            .build()
            .map_err(|e| PluginError::execution(format!("Failed to create HTTP client: {}", e)))?;

        Ok(Self {
            plugin_id,
            config,
            client,
        })
    }

    async fn call_remote_plugin(
        &self,
        endpoint: &str,
        body: serde_json::Value,
    ) -> Result<serde_json::Value, PluginError> {
        let url = format!("{}{}", self.config.endpoint, endpoint);

        let mut request = self.client.post(&url).json(&body);

        // Add authentication if configured
        if let Some(auth) = &self.config.auth {
            request = match auth.auth_type.as_str() {
                "bearer" => request.bearer_auth(&auth.value),
                "api_key" => request.header("X-API-Key", &auth.value),
                _ => request,
            };
        }

        let response = request
            .send()
            .await
            .map_err(|e| PluginError::execution(format!("Remote plugin call failed: {}", e)))?;

        if !response.status().is_success() {
            return Err(PluginError::execution(format!(
                "Remote plugin returned error status: {}",
                response.status()
            )));
        }

        let result: serde_json::Value = response
            .json()
            .await
            .map_err(|e| PluginError::execution(format!("Failed to parse response: {}", e)))?;

        Ok(result)
    }
}

#[async_trait]
impl RuntimeAdapter for RemoteAdapter {
    fn runtime_type(&self) -> RuntimeType {
        RuntimeType::Remote(self.config.clone())
    }

    async fn initialize(&mut self) -> Result<(), PluginError> {
        tracing::info!("Initializing remote plugin: {}", self.plugin_id);

        // Perform health check during initialization
        self.health_check().await?;

        Ok(())
    }

    async fn call_auth(
        &self,
        context: &PluginContext,
        request: &AuthRequest,
    ) -> Result<AuthResponse, PluginError> {
        let body = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri.to_string(),
            "query_params": request.query_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_remote_plugin("/plugin/authenticate", body).await?;

        // Parse the AuthResponse from the response
        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse AuthResponse: {}", e)))
    }

    async fn call_template_function(
        &self,
        function_name: &str,
        args: &[serde_json::Value],
        context: &ResolutionContext,
    ) -> Result<serde_json::Value, PluginError> {
        let body = serde_json::json!({
            "function_name": function_name,
            "args": args,
            "context": context,
        });

        self.call_remote_plugin("/plugin/template/execute", body).await
    }

    async fn call_response_generator(
        &self,
        context: &PluginContext,
        request: &ResponseRequest,
    ) -> Result<ResponseData, PluginError> {
        // Create simplified request
        let body = serde_json::json!({
            "context": context,
            "method": request.method.to_string(),
            "uri": request.uri,
            "path": request.path,
            "query_params": request.query_params,
            "path_params": request.path_params,
            "client_ip": request.client_ip,
            "user_agent": request.user_agent,
        });

        let result = self.call_remote_plugin("/plugin/response/generate", body).await?;

        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse ResponseData: {}", e)))
    }

    async fn call_datasource_query(
        &self,
        query: &DataQuery,
        context: &PluginContext,
    ) -> Result<DataResult, PluginError> {
        let body = serde_json::json!({
            "query_type": format!("{:?}", query.query_type),
            "query": query.query,
            "parameters": query.parameters,
            "limit": query.limit,
            "offset": query.offset,
            "context": context,
        });

        let result = self.call_remote_plugin("/plugin/datasource/query", body).await?;

        serde_json::from_value(result)
            .map_err(|e| PluginError::execution(format!("Failed to parse DataResult: {}", e)))
    }

    async fn health_check(&self) -> Result<bool, PluginError> {
        // Try to call health endpoint
        let url = format!("{}/health", self.config.endpoint);

        match self.client.get(&url).send().await {
            Ok(response) => Ok(response.status().is_success()),
            Err(_) => Ok(false),
        }
    }

    async fn cleanup(&mut self) -> Result<(), PluginError> {
        tracing::info!("Cleaning up remote plugin: {}", self.plugin_id);
        Ok(())
    }

    fn get_metrics(&self) -> HashMap<String, serde_json::Value> {
        let mut metrics = HashMap::new();
        metrics.insert("plugin_id".to_string(), serde_json::json!(self.plugin_id.as_str()));
        metrics.insert("endpoint".to_string(), serde_json::json!(self.config.endpoint));
        metrics.insert(
            "protocol".to_string(),
            serde_json::json!(format!("{:?}", self.config.protocol)),
        );
        metrics
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    // ===== RuntimeType Tests =====

    #[test]
    fn test_runtime_type_equality() {
        assert_eq!(RuntimeType::Rust, RuntimeType::Rust);
        assert_eq!(RuntimeType::TinyGo, RuntimeType::TinyGo);
        assert_eq!(RuntimeType::AssemblyScript, RuntimeType::AssemblyScript);

        assert_ne!(RuntimeType::Rust, RuntimeType::TinyGo);
    }

    #[test]
    fn test_runtime_type_clone() {
        let rt = RuntimeType::Rust;
        let cloned = rt.clone();
        assert_eq!(rt, cloned);
    }

    #[test]
    fn test_runtime_type_detection() {
        // Test with empty bytes (should default to Rust)
        let empty_bytes = vec![];
        let runtime = detect_runtime_type(&empty_bytes).unwrap();
        assert_eq!(runtime, RuntimeType::Rust);
    }

    #[test]
    fn test_runtime_type_detection_tinygo() {
        // Test with bytes containing "tinygo"
        let tinygo_bytes = b"wasm module with tinygo runtime".to_vec();
        let runtime = detect_runtime_type(&tinygo_bytes).unwrap();
        assert_eq!(runtime, RuntimeType::TinyGo);
    }

    #[test]
    fn test_runtime_type_detection_assemblyscript() {
        // Test with bytes containing "assemblyscript"
        let as_bytes = b"wasm module with assemblyscript runtime".to_vec();
        let runtime = detect_runtime_type(&as_bytes).unwrap();
        assert_eq!(runtime, RuntimeType::AssemblyScript);
    }

    #[test]
    fn test_has_tinygo_signature() {
        assert!(has_tinygo_signature(b"this contains tinygo"));
        assert!(!has_tinygo_signature(b"this does not contain it"));
    }

    #[test]
    fn test_has_assemblyscript_signature() {
        assert!(has_assemblyscript_signature(b"this contains assemblyscript"));
        assert!(!has_assemblyscript_signature(b"this does not contain it"));
    }

    // ===== RemoteRuntimeConfig Tests =====

    #[test]
    fn test_remote_runtime_config() {
        let config = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: Some(RemoteAuthConfig {
                auth_type: "bearer".to_string(),
                value: "secret-token".to_string(),
            }),
        };

        assert_eq!(config.endpoint, "http://localhost:8080");
        assert_eq!(config.timeout_ms, 5000);
        assert_eq!(config.max_retries, 3);
        assert!(config.auth.is_some());
    }

    #[test]
    fn test_remote_runtime_config_without_auth() {
        let config = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Grpc,
            endpoint: "grpc://localhost:9090".to_string(),
            timeout_ms: 10000,
            max_retries: 5,
            auth: None,
        };

        assert_eq!(config.protocol, RemoteProtocol::Grpc);
        assert!(config.auth.is_none());
    }

    #[test]
    fn test_remote_runtime_config_clone() {
        let config = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: None,
        };

        let cloned = config.clone();
        assert_eq!(config.endpoint, cloned.endpoint);
        assert_eq!(config.timeout_ms, cloned.timeout_ms);
    }

    #[test]
    fn test_remote_runtime_config_equality() {
        let config1 = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: None,
        };

        let config2 = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: None,
        };

        assert_eq!(config1, config2);
    }

    // ===== RemoteProtocol Tests =====

    #[test]
    fn test_remote_protocol_equality() {
        assert_eq!(RemoteProtocol::Http, RemoteProtocol::Http);
        assert_eq!(RemoteProtocol::Grpc, RemoteProtocol::Grpc);
        assert_ne!(RemoteProtocol::Http, RemoteProtocol::Grpc);
    }

    #[test]
    fn test_remote_protocol_clone() {
        let proto = RemoteProtocol::Http;
        let cloned = proto.clone();
        assert_eq!(proto, cloned);
    }

    // ===== RemoteAuthConfig Tests =====

    #[test]
    fn test_remote_auth_config() {
        let auth = RemoteAuthConfig {
            auth_type: "bearer".to_string(),
            value: "secret-token".to_string(),
        };

        assert_eq!(auth.auth_type, "bearer");
        assert_eq!(auth.value, "secret-token");
    }

    #[test]
    fn test_remote_auth_config_api_key() {
        let auth = RemoteAuthConfig {
            auth_type: "api_key".to_string(),
            value: "my-api-key".to_string(),
        };

        assert_eq!(auth.auth_type, "api_key");
    }

    #[test]
    fn test_remote_auth_config_clone() {
        let auth = RemoteAuthConfig {
            auth_type: "bearer".to_string(),
            value: "token".to_string(),
        };

        let cloned = auth.clone();
        assert_eq!(auth.auth_type, cloned.auth_type);
        assert_eq!(auth.value, cloned.value);
    }

    #[test]
    fn test_remote_auth_config_equality() {
        let auth1 = RemoteAuthConfig {
            auth_type: "bearer".to_string(),
            value: "token".to_string(),
        };

        let auth2 = RemoteAuthConfig {
            auth_type: "bearer".to_string(),
            value: "token".to_string(),
        };

        assert_eq!(auth1, auth2);
    }

    // ===== RuntimeAdapterFactory Tests =====

    #[test]
    fn test_factory_create_rust_adapter() {
        let plugin_id = PluginId::new("test-plugin");
        // Create minimal valid WASM module (magic bytes + version)
        let wasm_bytes = vec![0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00];

        let result = RuntimeAdapterFactory::create(RuntimeType::Rust, plugin_id, wasm_bytes);

        assert!(result.is_ok());
        let adapter = result.unwrap();
        assert_eq!(adapter.runtime_type(), RuntimeType::Rust);
    }

    #[test]
    fn test_factory_create_tinygo_adapter() {
        let plugin_id = PluginId::new("test-plugin");
        let wasm_bytes = vec![0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00];

        let result = RuntimeAdapterFactory::create(RuntimeType::TinyGo, plugin_id, wasm_bytes);

        assert!(result.is_ok());
        let adapter = result.unwrap();
        assert_eq!(adapter.runtime_type(), RuntimeType::TinyGo);
    }

    #[test]
    fn test_factory_create_assemblyscript_adapter() {
        let plugin_id = PluginId::new("test-plugin");
        let wasm_bytes = vec![0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00];

        let result =
            RuntimeAdapterFactory::create(RuntimeType::AssemblyScript, plugin_id, wasm_bytes);

        assert!(result.is_ok());
        let adapter = result.unwrap();
        assert_eq!(adapter.runtime_type(), RuntimeType::AssemblyScript);
    }

    #[test]
    fn test_factory_create_remote_adapter() {
        let plugin_id = PluginId::new("test-plugin");
        let config = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: None,
        };

        let result =
            RuntimeAdapterFactory::create(RuntimeType::Remote(config.clone()), plugin_id, vec![]);

        assert!(result.is_ok());
        let adapter = result.unwrap();
        assert_eq!(adapter.runtime_type(), RuntimeType::Remote(config));
    }

    #[test]
    fn test_factory_create_with_invalid_wasm() {
        let plugin_id = PluginId::new("test-plugin");
        // Invalid WASM bytes
        let wasm_bytes = vec![0x00, 0x00, 0x00, 0x00];

        let result = RuntimeAdapterFactory::create(RuntimeType::Rust, plugin_id, wasm_bytes);

        assert!(result.is_err());
    }

    // ===== RemoteAdapter Tests =====

    #[test]
    fn test_remote_adapter_creation() {
        let plugin_id = PluginId::new("test-plugin");
        let config = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: None,
        };

        let result = RemoteAdapter::new(plugin_id, config.clone());
        assert!(result.is_ok());

        let adapter = result.unwrap();
        assert_eq!(adapter.runtime_type(), RuntimeType::Remote(config));
    }

    #[test]
    fn test_remote_adapter_get_metrics() {
        let plugin_id = PluginId::new("test-plugin");
        let config = RemoteRuntimeConfig {
            protocol: RemoteProtocol::Http,
            endpoint: "http://localhost:8080".to_string(),
            timeout_ms: 5000,
            max_retries: 3,
            auth: None,
        };

        let adapter = RemoteAdapter::new(plugin_id.clone(), config).unwrap();
        let metrics = adapter.get_metrics();

        assert!(metrics.contains_key("plugin_id"));
        assert!(metrics.contains_key("endpoint"));
        assert!(metrics.contains_key("protocol"));
        assert_eq!(metrics.get("plugin_id").unwrap(), &serde_json::json!(plugin_id.as_str()));
    }

    // ===== Edge Cases and Error Handling =====

    #[test]
    fn test_runtime_type_with_mixed_signatures() {
        // Test with bytes containing both signatures (tinygo should win as it's checked first)
        let mixed_bytes = b"tinygo and assemblyscript".to_vec();
        let runtime = detect_runtime_type(&mixed_bytes).unwrap();
        assert_eq!(runtime, RuntimeType::TinyGo);
    }

    #[test]
    fn test_empty_wasm_bytes() {
        let plugin_id = PluginId::new("test");
        let result = RustAdapter::new(plugin_id, vec![]);
        assert!(result.is_err());
    }

    #[test]
    fn test_runtime_type_debug() {
        let rt = RuntimeType::Rust;
        let debug_str = format!("{:?}", rt);
        assert!(debug_str.contains("Rust"));
    }

    #[test]
    fn test_remote_protocol_debug() {
        let proto = RemoteProtocol::Http;
        let debug_str = format!("{:?}", proto);
        assert!(debug_str.contains("Http"));
    }
}