Commit graph

3737 commits

Author SHA1 Message Date
Sebastian Pipping
0b3ef852bc xmlwf: Support --help and --version 2023-09-29 12:55:17 +02:00
Sebastian Pipping
900d2a7cd2 xmlwf: Better document that usage(..) calls exit(..) 2023-09-29 12:55:17 +02:00
Sebastian Pipping
bc26bc5896 xmlwf: Break up conditional before upcoming extension 2023-09-29 12:06:05 +02:00
Sebastian Pipping
8741d2a1db
Merge pull request #760 from libexpat/doc-reference-html-okcss-1-2-0
doc/reference.html: Upgrade to OK.css 1.2.0
2023-09-29 11:42:12 +02:00
Sebastian Pipping
0cf825c342 doc/reference.html: Add paragraph wrap for XML_ParserCreate
.. in order to fix styling.
2023-09-28 21:00:00 +02:00
Sebastian Pipping
cc3079f149 doc/reference.html: Upgrade to OK.css 1.2.0 2023-09-28 20:13:12 +02:00
Sebastian Pipping
d248e7e923 xmlwf: Support custom buffer size for XML_GetBuffer and read 2023-09-28 17:06:39 +02:00
Snild Dolkow
091ba48d7a tests: Run SINGLE_BYTES with no chunking
...in addition to 1-to-5-byte chunks as we've done so far.

By starting g_chunkSize at 0, we get to run all the tests that call
_XML_Parse_SINGLE_BYTES() as if they just called XML_Parse(). This
gives us extra test coverage.
2023-09-28 13:49:41 +02:00
Snild Dolkow
7b0e27a698 tests: Replace invalid entity expansion in test_alloc_nested_entities
%pe2; would ultimately expand to a plain "ABCDEF...", which is not
valid in this context. This was not normally hit, since the test would
get its expected XML_ERROR_NO_MEMORY before expanding this far.

With g_chunkSize=0 and EXPAT_CONTEXT_BYTES=OFF, the number of allocs
required to reach that point becomes *just* low enough to reach the
final expansion, making the test fail with a very unexpected syntax
error.

Nesting %pe2; in another entity declaration avoids the problem.
2023-09-28 13:49:41 +02:00
Snild Dolkow
b4d2b76a97 tests: Exit parser_stop_character_handler if parser is finished
When test_repeated_stop_parser_between_char_data_calls runs without
chunking the input -- which I am about to do in my next commit -- the
parser_stop_character_handler callback happens multiple times. This is
because stopping the parser doesn't stop all callbacks immediately,
which is valid (documented) behavior.

The second callback tried to stop the parser again, getting unexpected
errors. Let's check the parser status on entry and return early if it's
already finished.
2023-09-28 13:49:41 +02:00
Snild Dolkow
a5993b2d42 tests: Remove early comment count check in test_user_parameters
Before a parse call with isFinal=XML_TRUE, there is no guarantee that
all supplied data has been parsed. Removing the first comment count
check removes the test's assumption of such a guarantee.
2023-09-26 10:33:43 +02:00
Snild Dolkow
bb3c171980 tests: set isFinal in test_reset_in_entity
Without this, parsing may be deferred so that the suspending callback
hasn't been called when the test checks for it.
2023-09-26 10:33:43 +02:00
Snild Dolkow
2e12534145 tests: set isFinal in test_line_number_after_parse
Without this, parsing of the start or end tag may be deferred, yielding
an unexpected line number.
2023-09-26 10:33:43 +02:00
Snild Dolkow
1d8ceb26aa tests: Run SINGLE_BYTES with variously-sized chunks
The _XML_Parse_SINGLE_BYTES function currently calls XML_Parse() one
byte at a time. This is useful to detect possible parsing bugs related
to having to exit parsing, wait for more data, and resume.

This commit makes SINGLE_BYTES even more useful by repeating all tests,
changing the chunk size every time. So instead of just one byte at a
time, we now also test two bytes at a time, and so on. Tests that don't
use the SINGLE_BYTES also run multiple times, but are otherwise not
affected.

This uncovered some issues, which have been fixed in preceding commits.

On failure, the chunk size is included in the "FAIL" log prints.
2023-09-25 14:01:53 +02:00
Snild Dolkow
4978d285d2 tests: Look for single-char match in test_abort_epilog
...instead of a full-string match.

These tests were depending on getting handler callbacks with exactly
one character of data at a time. For example, if test_abort_epilog got
"\n\r\n" in one callback, it would fail to match on the '\r', and would
not abort parsing as expected.

By searching the callback arg for the magic character rather than
expecting a full match, the test no longer depends on exact callback
timing.

`userData` is never NULL in these tests, so that check was left out of
the new version.
2023-09-25 14:01:53 +02:00
Snild Dolkow
7474fe3d3f tests: Make test_default_current insensitive to callback chunking
Instead of testing the exact number and sequence of callbacks, we now
test that we get the exact data lengths and sequence of callbacks. The
checks become much more verbose, but will now accept any buffer fill
strategy -- single bytes, multiple bytes, or any combination thereof.
2023-09-25 14:01:46 +02:00
Snild Dolkow
a4a4552313 tests: Add subtest names to test_default_current 2023-09-25 08:45:37 +02:00
Snild Dolkow
d825624d92 minicheck: Add fail_unless() macro
...and fix _fail_unless() so that it doesn't always fail. All existing
calls to it pass 0, so there's no immediate change in behavior in this
commit.
2023-09-25 08:45:37 +02:00
Donghee Na
e52b6b8b8c Update legal name of Donghee Na (#754) 2023-09-24 18:13:03 +02:00
Sebastian Pipping
bcdc25b04d
Merge pull request #753 from SonyMobile/consume-bom
Fix parse-size-dependent "invalid token" error for external entities that start with a byte order mark
2023-09-22 18:06:57 +02:00
Snild Dolkow
b1e955449c Always consume BOM bytes when found in prolog
The byte order mark is not correctly consumed when followed by an
incomplete token in a non-final parse. This results in the BOM staying
in the buffer, causing an invalid token error later.

This was not detected by existing tests because they either parse
everything in one call, or add a single byte at a time.

By moving `s` forward when we find a BOM, we make sure that the BOM
bytes are properly consumed in all cases.
2023-09-22 17:14:22 +02:00
Sebastian Pipping
a642ba0920
Merge pull request #749 from libexpat/cmake-3-5-0-plus
CMake: Require CMake >=3.5.0
2023-09-21 22:53:58 +02:00
Sebastian Pipping
298f407021
Merge pull request #750 from libexpat/tests-cxx-11
tests: Require a C++11 compiler
2023-09-21 22:47:48 +02:00
Sebastian Pipping
bb6ec6ad0f
Merge pull request #751 from libexpat/cmake-c99
CMake: Require a C99 compiler
2023-09-21 21:45:34 +02:00
Sebastian Pipping
9666cc5e38 qa.sh: Stop passing -Wno-long-long
.. since we have C99 and C++11 now: Both understand long long.
2023-09-21 21:32:28 +02:00
Sebastian Pipping
1bf3ddfdad CI: Request C++11 rather than C++98 2023-09-21 19:34:23 +02:00
Sebastian Pipping
47b86b5d46 CMake: Require a C++11 compiler for the optional test suite 2023-09-21 19:34:23 +02:00
Sebastian Pipping
2a24068ec8 CMake: Require a C99 compiler 2023-09-21 19:30:30 +02:00
Sebastian Pipping
ede28c8fe0 configure.ac: Require a C++11 compiler for the optional test suite 2023-09-20 19:09:30 +02:00
Sebastian Pipping
74dbef1552 CMake: Pass -Wno-format with MinGW 2023-09-20 19:08:05 +02:00
Sebastian Pipping
4642553bb8 CMake: Stop redefining STDC_HEADERS 2023-09-20 19:08:03 +02:00
Sebastian Pipping
899a775a2e CMake: Require CMake >=3.5.0
> CMake Deprecation Warning at CMakeLists.txt:37 (cmake_minimum_required):
>   Compatibility with CMake < 3.5 will be removed from a future version of
>   CMake.
>
>   Update the VERSION argument <min> value or use a ...<max> suffix to tell
>   CMake that the project does not need compatibility with older versions.
2023-09-19 19:45:05 +02:00
Sebastian Pipping
07b6d0089f tests: Rename "runtestspp" to "runtests_cxx" 2023-09-19 19:25:19 +02:00
Sebastian Pipping
aacc14f4b4 tests: Restore that all of runtestspp is run through a C++ compiler
.. as originally intended before the big split-up refactoring.
2023-09-19 19:22:20 +02:00
Sebastian Pipping
322ac581e3 tests: Cast malloc/calloc/realloc results to allow use as C and C++ 2023-09-19 19:20:11 +02:00
Sebastian Pipping
f5e20fcb9d tests: Add more const near malloc/calloc/realloc 2023-09-19 19:19:33 +02:00
Sebastian Pipping
34dc95a08a tests/structdata.c: Avoid name "new" to allow reuse from C++ 2023-09-19 19:14:14 +02:00
Sebastian Pipping
2fb1aee9aa tests/Makefile.am: Sort libruntests_a_SOURCES alphabetically 2023-09-19 18:51:41 +02:00
Sebastian Pipping
8192058e2a
Merge pull request #747 from libexpat/tests-explicit-expat-config-h
tests/handlers.h: Be explicit about direct dependency expat_config.h
2023-09-19 18:34:29 +02:00
Sebastian Pipping
b709ce2b0a CMake: Sort xmlwf sources alphabetically 2023-09-19 16:19:47 +02:00
Sebastian Pipping
48f15bfa1c tests/handlers.h: Be explicit about direct dependency expat_config.h
The file checks for XML_DTD being defined.
2023-09-19 16:16:54 +02:00
Snild Dolkow
c803b93e87 minicheck: Add simple subtest support
This will be useful when a test runs through several examples and
fails somewhere in the middle. The subtest string replaces the
phase_info string (i.e. "during actual test") in the failure output.

Added subtest info to various tests where I found for loops.
2023-09-18 10:46:01 +02:00
Sebastian Pipping
4811d55b12
Merge pull request #745 from SonyMobile/is-final
Document the importance of isFinal + adjust tests accordingly
2023-09-14 16:05:54 +02:00
Snild Dolkow
d4105a9080 tests: Set isFinal=1 in line/column-number-after-error tests 2023-09-14 11:16:40 +02:00
Snild Dolkow
2cee1061e2 tests: Set isFinal in test_column_number_after_parse
Without this, parsing of the end tag may be deferred, yielding an
unexpected column number.
2023-09-14 11:16:36 +02:00
Snild Dolkow
d52b414149 tests: Move triplet_start_checker flag check after isFinal=1 call
There is no guarantee that the callback will happen before the parse
call with isFinal=XML_TRUE. Let's move the assertion to a location
where we know it must have happened.
2023-09-14 11:16:29 +02:00
Snild Dolkow
355a123b92 docs: Document the importance of isFinal
Before the concluding `isFinal=XML_TRUE` parse call, there is no
guarantee that all input has been parsed. An application that omits
that call risks missing handler callbacks and/or parsing errors.
2023-09-14 11:15:59 +02:00
Sebastian Pipping
2f2cda0a2a xmlwf: Improve language and URL clickability in help output 2023-09-11 21:54:24 +02:00
Sebastian Pipping
8b5c9e1a01
Merge pull request #740 from libexpat/pull-674-sandwich
Merge branch `pull-674-sandwich` into `master`
2023-09-02 23:11:31 +02:00
Sebastian Pipping
c0a78d0511 Changes: Fix typo "curruption" in section on release 2.5.0 2023-09-02 19:04:38 +02:00