aboutsummaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2022-01-28[WIP] Add validationDavid Robillard54-4/+1552
2022-01-28Add support for xsd:hexBinary literalsDavid Robillard2-22/+99
2022-01-28Add serd_nodes_file_uri()David Robillard1-4/+6
2022-01-28Use SerdNodes instead of manual memory management in testsDavid Robillard6-92/+132
2022-01-28Consolidate number support into a single "value" APIDavid Robillard3-130/+252
2022-01-28Remove datatype arguments from integer and base64 constructorsDavid Robillard4-62/+17
2022-01-28Add custom allocator supportDavid Robillard26-367/+1471
2022-01-28Make environments and sinks part of the worldDavid Robillard10-132/+206
Although functions/components that require minimal pre-existing state are nice, these allocate memory and could potentially share resources. So, give them a pointer to a world which can be used to configure such things. In particular, this is working towards supporting custom allocators everywhere.
2022-01-28Fix handling of deferred write errors that happen when closingDavid Robillard4-8/+48
2022-01-28Use simpler names for I/O function typesDavid Robillard1-10/+7
2022-01-28Use more human-readable status codesDavid Robillard10-28/+32
2022-01-28Add "contextual" output optionDavid Robillard2-0/+54
This is mainly for developer or power-user cases, where one wants to look at some data for investigation or debugging. In such cases, it's common for the set of prefixes to be implicitly known (because they are baked in to the application, for example), so printing them just produces a large amount of redundant noise. That said, it can also be useful programmatically, because it allows several snippets to be written independently and ultimately concatenated (with a header to define the prefixes) without redundancy.
2022-01-28Simplify input stream APIDavid Robillard7-128/+81
More or less the same rationale as the previous commit, but for reading. This makes for nice symmetry with writing, at the cost of a slightly more annoying reader interface since the source doesn't know its block size or name.
2022-01-28Simplify output stream APIDavid Robillard7-127/+113
This makes the paging mechanism an internal detail once again. While it's conceptually elegant to simply have a single write interface and have the block dumper just be another implementation of that, unfortunately it is not practical. The inlining of serd_block_dumper_write() is a significant performance boost, because it avoids a non-inlinable function call of overhead per character. Compared to the SerdByteSink approach, this removes the burden and overhead of needing to dynamically allocate the structure itself.
2022-01-28Provide a full output stream implementation for SerdBufferDavid Robillard3-7/+8
Essentially replaces serd_buffer_sink_finish() with serd_buffer_close(), which makes writing to a buffer consistent with writing to a file or anything else.
2022-01-28Remove SERD_NO_INLINE_OBJECTSDavid Robillard1-1/+4
This seems like pointless complexity now, since it's easy to just write simply ordered statements yourself.
2022-01-28Put rdf:type properties first when pretty-printingDavid Robillard15-15/+76
This is a common convention in Turtle and TriG because the special "a" syntax for rdf type as the first property looks nice, makes things easier to read, and can be useful for streaming implementations because the type of the instance is known before reading its properties. Also significantly clean up the pretty-printing implementation in the process.
2022-01-28Fix TriG graph indentationDavid Robillard3-4/+27
2022-01-28Fix pretty-printing nested empty lists and add test suiteDavid Robillard25-195/+431
The earlier "test" was just hitting the code without actually checking the output. This new suite is a set of pretty-printed documents which serd must reproduce from a model exactly to pass. This should make it easy to add cases in the future, since each case is just a document, as it should look.
2022-01-28Make tools read stdin by defaultDavid Robillard1-22/+0
2022-01-28Replace serdi with more fine-grained toolsDavid Robillard47-315/+1307
Especially with the new functionality, the complexity of the command-line interface alone was really becoming unmanageable. The serdi implementation also had the highest cyclomatic complexity of the entire codebase by a huge margin. So, take a page from the Unix philosophy and split serdi into several more finely-honed tools that can be freely composed. Though there is still unfortunately quite a bit of option overlap between them due to the common details of reading RDF, I think the resulting tools are a lot easier to understand, both from a user and a developer perspective.
2022-01-28Make blank node prefixing automaticDavid Robillard4-21/+3
Though potentially useful, I don't think the complexity cost of the old interface (both to the implementation and to the user) is worth it. A special tool to transform blank node labels (for example with regular expressions) would be a better approach to this if it's ever needed in the future.
2022-01-28Write test outputs to a temporary directoryDavid Robillard1-19/+11
While occasionally useful, I almost always end up reproducing the issue live to investigate something anyway. Not keeping the many tests results around results in less clutter, and hopefully makes the test suites faster in environments with bad I/O like Docker.
2022-01-28Split up test suite build definitionsDavid Robillard12-87/+166
2022-01-28Factor out serd_choose_input_syntax()David Robillard1-0/+2
2022-01-28Add a close function to SerdByteSinkDavid Robillard4-30/+41
This simplifies everything by replacing special cases with a more general close function. A type is no longer stored in the structure, so the other constructors are now essentially syntactic sugar for the universal serd_byte_sink_new_function().
2022-01-28Collapse input and output options into a single flagDavid Robillard2-9/+13
2022-01-28Move serdi to tools subdirectoryDavid Robillard1-1/+1
This separates the command-line tool code from the library implementation.
2022-01-28Replace serdi -b and -e options with a block size optionDavid Robillard2-7/+5
This is more powerful, and reduces the number of command line options that almost nobody needs to care about.
2022-01-28Factor out common test runner facilitiesDavid Robillard2-58/+71
2022-01-28Support writing all escapes in Turtle and TriG prefixed namesDavid Robillard1-0/+77
2022-01-14Add statement filteringDavid Robillard3-0/+206
2022-01-14Add support for converting literals to canonical formDavid Robillard11-1/+239
2022-01-14Add modelDavid Robillard7-1/+1559
2022-01-14Use Nodes in Env implementationDavid Robillard1-3/+5
2022-01-14Avoid dynamic allocation when fetching interned nodesDavid Robillard1-26/+256
This is more or less a total rewrite of SerdNodes and the underlying ZixHash to make efficient use of the new node construction API.
2022-01-14Expose low-level node construction APIDavid Robillard3-29/+74
2022-01-14Rename serd_new_simple_node() to serd_new_token()David Robillard1-7/+0
Things get confusing without a term for this concept (which is roughly "nodes that are not annoying to construct"), so "token" it is.
2022-01-14Preserve long or short quoting from input documentsDavid Robillard7-75/+74
2022-01-14Add serd_statement_matches()David Robillard1-0/+9
2022-01-14Add serd_node_compare()David Robillard1-0/+51
2022-01-14Add serd_node_from_syntax() and serd_node_to_syntax()David Robillard3-2/+157
2022-01-14Leave statement caret at the start of literalsDavid Robillard1-0/+50
This allows a precise location to be reported for errors within literals, by adding the offset of the error in the literal to the caret. This will be used to report nice errors for things like regular expressions and supported XSD datatypes.
2022-01-14Add tests for weird prefixed name edge cases in RDF 1.1 TurtleDavid Robillard6-0/+58
2022-01-14Factor out NQuads readerDavid Robillard2-0/+10
2022-01-14Factor out NTriples readerDavid Robillard9-7/+79
2022-01-14Test lax NTriples parsing separatelyDavid Robillard14-25/+88
2022-01-14Factor out UTF-8 reading utilitiesDavid Robillard2-0/+9
2022-01-14Remove SERD_CURIE node datatype entirelyDavid Robillard5-81/+27
2022-01-14Expand URIs in readerDavid Robillard3-7/+75
This expands relative and prefixed URIs in the reader on the stack, rather than passing them to the caller to be dealt with. This pushes these context-full forms to the edge of the system as much as possible to minimise the headaches they can cause. Towards having stricter guarantees about nodes and eliminating the CURIE node type altogether.