php-src/ext/dom/tests/DOMComment_replaceData_error2.phpt
Max Semenik bd9f4fa676 Migrate skip checks to --EXTENSIONS--, p2
For rationale, see https://github.com/php/php-src/pull/6787

Make extension checks lowercase, add a special case for opcache
that has internal name not matching .so filename.

Extensions migrated in part 2:
* dom
* exif
* fileinfo
* ffi
2021-04-01 12:08:24 +01:00

24 lines
493 B
PHP

--TEST--
Test replacing data into a DOMComment basic test
--CREDITS--
Andrew Larssen <al@larssen.org>
London TestFest 2008
--EXTENSIONS--
dom
--FILE--
<?php
//offset to large
$dom = new DomDocument();
$comment = $dom->createComment('test-comment');
try {
$comment->replaceData(999,4,'-inserted');
} catch (DOMException $e ) {
if ($e->getMessage() == 'Index Size Error'){
echo "Throws DOMException for offset too large\n";
}
}
?>
--EXPECT--
Throws DOMException for offset too large