php-src/ext/tidy/tests/tidy_error.phpt
Max Semenik 7f2f0c007c Migrate skip checks to --EXTENSIONS--, p4
For rationale, see #6787

Extensions migrated in part 4:
* simplexml
* skeleton
* soap
* spl
* sqlite3
* sysvmsg
* sysvsem
* tidy - also removed a check for an ancient dependency version
2021-04-08 10:36:44 +02:00

38 lines
635 B
PHP

--TEST--
Ensure tidy_get_status() returns correct status
--CREDITS--
Stefan Priebsch
--EXTENSIONS--
tidy
--FILE--
<?php
$html = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<p>paragraph</p>
</body>
</html>';
$tidy = tidy_parse_string($html);
echo tidy_get_status($tidy);
// status 0 indicates no errors or warnings
$html = '<p>paragraph</i>';
$tidy = tidy_parse_string($html);
echo tidy_get_status($tidy);
// status 1 indicates warnings
$html = '<bogus>test</bogus>';
$tidy = tidy_parse_string($html);
echo tidy_get_status($tidy);
// status 2 indicates error
?>
--EXPECT--
012