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
|
//! Shared access to the PHP worker for integration tests.
//!
//! Included into an integration-test binary via
//! `#[path = "../common/php_worker.rs"] mod php_worker;`.
#![allow(dead_code)]
use shirabe_php_rpc::PluginValue;
use shirabe_symfony_process::PhpExecutableFinder;
/// Whether a PHP binary is available. Without one the worker cannot start, so tests that need it
/// return early instead of failing.
pub fn php_runtime_available() -> bool {
PhpExecutableFinder::new().find(false).is_some()
}
/// All tests in one binary share the single PHP worker, whose loaded-class table and class statics
/// persist across tests just like PHPUnit's single-process runs. Interleaving two tests would let
/// one test's state race the other's, so the worker-touching tests run serialized.
static PHP_WORKER_TESTS: std::sync::Mutex<()> = std::sync::Mutex::new(());
pub fn lock_php_worker() -> std::sync::MutexGuard<'static, ()> {
PHP_WORKER_TESTS
.lock()
.unwrap_or_else(|poisoned| poisoned.into_inner())
}
/// Requires the Composer PHP runtime's `vendor/autoload.php` into the worker, which is what makes
/// the real `Composer\` classes autoloadable there.
pub fn load_composer_php_runtime() {
shirabe::event_dispatcher::EventDispatcher::__ensure_composer_php_runtime().unwrap();
}
/// Calls a static method in the worker, panicking on either failure lane.
pub fn php_call_static(class: &str, method: &str, args: Vec<PluginValue>) -> PluginValue {
shirabe_php_rpc::call_static_method(class, method, args, None)
.unwrap_or_else(|error| panic!("{class}::{method} request failed: {error}"))
.unwrap_or_else(|throw| {
panic!(
"{class}::{method} threw {}: {}",
throw.exception_class, throw.message
)
})
}
/// Runs a PHP snippet in the worker and returns its `return` value.
pub fn php_eval(code: &str) -> PluginValue {
shirabe_php_rpc::call_function("__shirabe_eval", vec![PluginValue::string(code)])
.expect("eval request failed")
.expect("eval threw")
}
/// Quotes a string as a PHP single-quoted literal for a generated snippet.
pub fn php_single_quote(value: &str) -> String {
format!("'{}'", value.replace('\\', "\\\\").replace('\'', "\\'"))
}
|