Crate query_engine_tests
source ·Re-exports
Modules
- Note: Only number operations are implemented at the moment.
- A couple of functions to enable and disable coloring.
- Custom colors support.
Macros
- Unindent and produce
&'static str
. - Macro that replaces JSON nullability strings with the appropriate representation based on the connector capabilities. Allows us to reuse tests instead of copying.
Structs
- A string that may have color and/or style applied to it.
- Custom color structure, it will generate a true color in the result
- A field directive, e.g.
@map("_id")
. - ID field definition, e.g.
#id(id, Int, @id @test.SmallInt)
- M2m field definition, e.g.
#m2m(posts, Post[], id, String, "name")
- This is a temporary implementation detail for
tracing
logs in tests. Instead of going throughstd::io::stderr
, it goes through the specific local stderr handle used byeprintln
anddbg
, allowing logs to appear in specific test outputs for readability. - QueryParams enables parsing the generated id(s) of mutations sent to the Query Engine so that it can be reused in subsequent queries
- Direct engine runner.
- A combinatorial style such as bold, italics, dimmed, etc.
- The central test configuration.
Enums
- The 8 standard colors.
- A datamodel fragment is the parsed version of a
#<ident>(...)
template string. - Wrapper for general argument parsing.
Constants
Statics
- Test configuration, loaded once at runtime.
- Engine protocol used to run tests. Either ‘graphql’ or ‘json’.
- The log level from the environment.
Traits
- Taken from Reddit. Enables taking an async function pointer which takes references as param https://www.reddit.com/r/rust/comments/jvqorj/hrtb_with_async_functions/
- The trait that enables something to be given color.
- The main trait a datamodel renderer for a connector has to implement.
- Simple and safe type conversions that may fail in a controlled way under some circumstances. It is the reciprocal of
TryInto
. - Extension trait allowing futures, streams, and sinks to be instrumented with a
tracing
Subscriber
.
Functions
- Main entry point into the template parsing. Parses a schema fragment of the form
#<fragment_ident>...<eol>
. - Parses the JSON result of mutation sent to the Query Engine in order to extract the generated compound ids. Returns a string that’s already formatted to be included in another query. eg: { “id_1_id_2”: { id_1: “my_fancy_id_1”, id_2: “my_fancy_id_2” } }
- Parses an RFC 3339 and ISO 8601 date and time string such as 1996-12-19T16:39:57-08:00, then returns a new DateTime with a parsed FixedOffset.
- Parses the JSON result of mutation sent to the Query Engine in order to extract the generated id. Returns a string that’s already formatted to be included in another query. eg: { “id”: “my_fancy_id” }
- Performs the same extraction as
parse_compound_id
but for an array - Performs the same extraction as
parse_id
but for an array - Render the complete datamodel with all bells and whistles.
- Stringify a date to the following format 1999-05-01T00:00:00.000Z