aboutsummaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2018-11-25Separate style enum from style flags typesDavid Robillard1-2/+2
2018-11-25Make SerdSink opaqueDavid Robillard1-6/+9
2018-11-25Simplify SerdEnv APIDavid Robillard1-23/+29
2018-11-25Remove escape parameter from serd_new_file_uriDavid Robillard1-9/+6
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best.
2018-11-25Shorten node constructor namesDavid Robillard1-52/+60
2018-11-25Make statement sink take a statement rather than nodesDavid Robillard1-15/+11
This makes the interface more extensible, towards associating more information with statements. The serd_sink_write_nodes wrapper remains so that user code does not need to allocate in order to write statement.
2018-11-25Use fixed size stackDavid Robillard1-2/+2
2018-11-25Set datatypes on integer, decimal, and base64 nodesDavid Robillard1-3/+17
2018-11-25Clean up node construction APIDavid Robillard1-91/+86
2018-11-25Clean up includes and improve source file separationDavid Robillard1-1/+2
2018-11-25Hide fopen wrapper and use reader interface consistentlyDavid Robillard1-23/+21
2018-11-25Add blank node APIDavid Robillard1-0/+14
2018-11-25Make serd_node_new_literal take datatype as a nodeDavid Robillard1-4/+11
2018-11-25Add SerdWorld for shared library stateDavid Robillard1-4/+12
2018-11-25Add SerdSink interface and hide individual function implementationsDavid Robillard1-19/+13
2018-11-25Bring read/write interface closer to C standardDavid Robillard1-1/+1
2018-11-25Merge datatype and/or language into nodeDavid Robillard1-31/+62
This moves closer to the sord API, and is more convenient in most cases.
2018-11-25Remove serd_uri_to_path()David Robillard1-36/+0
2018-11-25Make nodes opaqueDavid Robillard1-179/+216
2018-11-25Make serd_strtod API const-correctDavid Robillard1-2/+7
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the C API.
2018-11-25Rename SerdChunk to SerdSliceDavid Robillard1-1/+1
2018-11-25Use char* for strings in public APIDavid Robillard1-66/+61
The constant casting just makes user code a mess, for no benefit.
2018-11-25Remove useless character countingDavid Robillard1-31/+21
2018-11-25Use SerdBuffer for mutable buffersDavid Robillard1-5/+5
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks.
2018-11-11Add tests for misspelled prefix and base directivesDavid Robillard3-0/+14
2018-11-11Remove some unnecessary test filesDavid Robillard6-593/+0
2018-11-11Add test for writing URIs that can not be shortenedDavid Robillard4-11/+28
2018-10-03Fix TriG test suite to not require clashing blank node IDsDavid Robillard4-3/+4
2018-07-30Fix resolving some URIs against base URIs with no trailing slashDavid Robillard4-24/+41
2018-07-22Remove long literal version of form feed testDavid Robillard2-4/+0
This causes problems with Windows checkouts that aren't configured properly, but the short version suffices to test the relevant code.
2018-07-22Fix memory leak in test suiteDavid Robillard1-0/+1
2018-07-22Add serd_free for freeing memory allocated by serdDavid Robillard1-5/+5
2018-07-14Fix length of base64 encoded nodesDavid Robillard1-0/+3
2018-07-12Fix making relative URIs that are shorter than, but under, the rootDavid Robillard1-0/+9
2018-06-10Test serd_strlen() with NULL flagsDavid Robillard1-0/+4
2018-06-10Fix relative URI serialisationDavid Robillard1-0/+12
2018-05-27Add test for writing form feeds in TurtleDavid Robillard4-18/+39
2018-05-25Add blank node statement test filesDavid Robillard2-0/+4
2018-05-25Fix reported error when reading statements with only a blank nodeDavid Robillard2-30/+43
2018-03-08Fix parsing local names that end with escaped dotsDavid Robillard1-0/+3
2018-02-04Add test for qualifying URIsDavid Robillard2-0/+8
2018-02-04Factor out Turtle-to-Turtle test patternDavid Robillard1-0/+1
2018-01-04Open files in binary mode to preserve line endings on WindowsDavid Robillard1-1/+1
2017-12-26Report source file and line on test failuresDavid Robillard2-98/+131
2017-09-24Make internal tests standard manifest-driven test suitesDavid Robillard455-314/+943
2017-09-23Add missing tests for invalid characters in namesDavid Robillard3-1/+5
2017-09-23Add NTriples test suiteDavid Robillard72-0/+711
2017-09-11Remove redundant testsDavid Robillard49-350/+0
2017-08-28Add tests for corrupt UTF-8 in prefixed namesDavid Robillard2-0/+4
2017-08-28Report errors for prematurely terminated statementsDavid Robillard2-0/+2