Skip to content

Commit

Permalink
feat(test): add an example on how to test a module (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
joelwurtz authored Oct 23, 2023
1 parent aa88f5a commit dddc07f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
3 changes: 2 additions & 1 deletion allowed_bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,5 +260,6 @@ bind! {
zend_eval_string,
zend_file_handle,
zend_stream_init_filename,
php_execute_script
php_execute_script,
zend_register_module_ex
}
44 changes: 44 additions & 0 deletions tests/module.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#![cfg_attr(windows, feature(abi_vectorcall))]
extern crate ext_php_rs;

#[cfg(feature = "embed")]
use ext_php_rs::embed::Embed;
#[cfg(feature = "embed")]
use ext_php_rs::ffi::zend_register_module_ex;
use ext_php_rs::prelude::*;

#[test]
#[cfg(feature = "embed")]
fn test_module() {
Embed::run(|| {
// Allow to load the module
unsafe { zend_register_module_ex(get_module()) };

let result = Embed::eval("$foo = hello_world('foo');");

assert!(result.is_ok());

let zval = result.unwrap();

assert!(zval.is_string());

let string = zval.string().unwrap();

assert_eq!(string.to_string(), "Hello, foo!");
});
}

/// Gives you a nice greeting!
///
/// @param string $name Your name.
///
/// @return string Nice greeting!
#[php_function]
pub fn hello_world(name: String) -> String {
format!("Hello, {}!", name)
}

#[php_module]
pub fn module(module: ModuleBuilder) -> ModuleBuilder {
module
}

0 comments on commit dddc07f

Please sign in to comment.