xref: /PHP-8.0/ext/phar/tests/zip/corrupt_007.phpt (revision f8d79582)
1--TEST--
2Phar: corrupted zip (truncated filename record)
3--SKIPIF--
4<?php if (!extension_loaded("phar")) die("skip"); ?>
5--FILE--
6<?php
7try {
8    new PharData(__DIR__ . '/files/truncfilename.zip');
9} catch (Exception $e) {
10    echo $e->getMessage() . "\n";
11}
12?>
13--EXPECTF--
14phar error: corrupted central directory entry, no magic signature in zip-based phar "%struncfilename.zip"
15