-
Notifications
You must be signed in to change notification settings - Fork 1
String-literal conneg tests #10
Comments
I agree but I would still do a simple first test to establish you got back something in the correct format then the second test only compares the graph. Note that this is where you need the set based comparison I used elsewhere not equality since you may also get server generated triples. |
Don't you think parsing is enough. If parsing fail then the document is wrong. |
I agree that the best way is to parse the result into RDFlib. Depending on the situation we could opt to just validate that the expected triples are in the result, ignoring any other triples that might be in there? |
If you convert to an array of triples you can use the matcher:
includesAllMembers to check the result includes the expected.
By the way, this also solves the problem that JSON-LD has alternative forms
and you can't predict which the server will give you so string comparison,
or even JSON object matching will fail.
…On Wed, 10 Feb 2021, 13:20 Yvo Brevoort, ***@***.***> wrote:
I agree that the best way is to parse the result into RDFlib. Depending on
the situation we could opt to just validate that the expected triples are
in the result, ignoring any other triples that might be in there?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACICDC6NTG3RBRPPA3AOI63S6KBY5ANCNFSM4XMW245A>
.
--
This e-mail, and any attachments thereto, is intended only for use by the
addressee(s) named herein and may contain legally privileged, confidential
and/or proprietary information. If you are not the intended recipient of
this e-mail (or the person responsible for delivering this document to the
intended recipient), please do not disseminate, distribute, print or copy
this e-mail, or any attachment thereto. If you have received this e-mail in
error, please respond to the individual sending the message, and
permanently delete the email.
|
The array of triples will still need to be normalised for blank-nodes. |
I commented out the tests so they don't show up as skipped. We could remove them altogether when we're certain we don't want them back. |
To make the comparison easier to understand and follow, I propose to make :
I made the test on NSS and CSS. Or do you prefer to keep the tests as they are ? |
When I originally started exploring the test for conneg, it was easy to check strings against strings. Once that worked, I added the tests for
asTriples
. I think we will never have good maintainable string-based conneg tests, so maybe we should just use theas triples
tests only? So:The text was updated successfully, but these errors were encountered: