mirror of
https://github.com/php-win-ext/php-rar.git
synced 2026-04-28 14:53:12 +02:00
78b7a5f63b
Add a musl/LLVM Docker build environment for compiling portable Linux binaries that work on both musl and glibc systems, along with a minimal PHP Docker image for testing. Add CI workflows to build and publish these images to ghcr.io. Update test and build scripts to use the new Docker-based environment, and remove SKIPIF guards from tests since the extension is always present and doing otherwise would mask extension loading failures.
35 lines
839 B
PHP
35 lines
839 B
PHP
--TEST--
|
|
rar_entry_get() function
|
|
--FILE--
|
|
<?php
|
|
|
|
require __DIR__ . "/php8compat.php.inc";
|
|
|
|
$rar_file1 = rar_open(dirname(__FILE__).'/multi.part1.rar');
|
|
$entry = rar_entry_get($rar_file1, "file1.txt");
|
|
echo "$entry\n";
|
|
$entry = rar_entry_get($rar_file1, "nonexistent_file.txt");
|
|
var_dump($entry);
|
|
echo "\n";
|
|
|
|
$rar_file2 = rar_open(dirname(__FILE__).'/nonexistent.rar');
|
|
argerr(function() use ($rar_file2) {
|
|
rar_entry_get($rar_file2, "file1.txt");
|
|
});
|
|
echo "\n";
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
RarEntry for file "file1.txt" (52b28202)
|
|
|
|
Warning: rar_entry_get(): cannot find file "nonexistent_file.txt" in Rar archive "%s" in %s on line %d
|
|
bool(false)
|
|
|
|
|
|
Warning: rar_open(): Failed to open %s: ERAR_EOPEN (file open error) in %s on line %d
|
|
|
|
Warning: rar_entry_get() expects parameter 1 to be RarArchive, %s given in %s on line %d
|
|
|
|
Done
|