Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable CI builds #18

Merged
merged 12 commits into from
May 26, 2022
Prev Previous commit
Next Next commit
More unix style path issues
  • Loading branch information
idg10 committed May 23, 2022
commit 573680a6eff16d5db56e2160778e7cb6a4162518
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of date-time strings
/* Schema:
{ "format": "date-time" }
*/
Given the input JSON file "optional\format\date-time.json"
Given the input JSON file "optional/format/date-time.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of date strings
/* Schema:
{ "format": "date" }
*/
Given the input JSON file "optional\format\date.json"
Given the input JSON file "optional/format/date.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of duration strings
/* Schema:
{ "format": "duration" }
*/
Given the input JSON file "optional\format\duration.json"
Given the input JSON file "optional/format/duration.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of e-mail addresses
/* Schema:
{ "format": "email" }
*/
Given the input JSON file "optional\format\email.json"
Given the input JSON file "optional/format/email.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: all integers are multiples of 0.5, if overflow is handled
/* Schema:
{"type": "integer", "multipleOf": 0.5}
*/
Given the input JSON file "optional\float-overflow.json"
Given the input JSON file "optional/float-overflow.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of host names
/* Schema:
{ "format": "hostname" }
*/
Given the input JSON file "optional\format\hostname.json"
Given the input JSON file "optional/format/hostname.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of an internationalized e-mail addresses
/* Schema:
{ "format": "idn-email" }
*/
Given the input JSON file "optional\format\idn-email.json"
Given the input JSON file "optional/format/idn-email.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of internationalized host names
/* Schema:
{ "format": "idn-hostname" }
*/
Given the input JSON file "optional\format\idn-hostname.json"
Given the input JSON file "optional/format/idn-hostname.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IP addresses
/* Schema:
{ "format": "ipv4" }
*/
Given the input JSON file "optional\format\ipv4.json"
Given the input JSON file "optional/format/ipv4.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IPv6 addresses
/* Schema:
{ "format": "ipv6" }
*/
Given the input JSON file "optional\format\ipv6.json"
Given the input JSON file "optional/format/ipv6.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IRI References
/* Schema:
{ "format": "iri-reference" }
*/
Given the input JSON file "optional\format\iri-reference.json"
Given the input JSON file "optional/format/iri-reference.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IRIs
/* Schema:
{ "format": "iri" }
*/
Given the input JSON file "optional\format\iri.json"
Given the input JSON file "optional/format/iri.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of JSON-pointers (JSON String Representation)
/* Schema:
{ "format": "json-pointer" }
*/
Given the input JSON file "optional\format\json-pointer.json"
Given the input JSON file "optional/format/json-pointer.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of regular expressions
/* Schema:
{ "format": "regex" }
*/
Given the input JSON file "optional\format\regex.json"
Given the input JSON file "optional/format/regex.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of Relative JSON Pointers (RJP)
/* Schema:
{ "format": "relative-json-pointer" }
*/
Given the input JSON file "optional\format\relative-json-pointer.json"
Given the input JSON file "optional/format/relative-json-pointer.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of time strings
/* Schema:
{ "format": "time" }
*/
Given the input JSON file "optional\format\time.json"
Given the input JSON file "optional/format/time.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of URI References
/* Schema:
{ "format": "uri-reference" }
*/
Given the input JSON file "optional\format\uri-reference.json"
Given the input JSON file "optional/format/uri-reference.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: format: uri-template
/* Schema:
{ "format": "uri-template" }
*/
Given the input JSON file "optional\format\uri-template.json"
Given the input JSON file "optional/format/uri-template.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of URIs
/* Schema:
{ "format": "uri" }
*/
Given the input JSON file "optional\format\uri.json"
Given the input JSON file "optional/format/uri.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Scenario Outline: uuid format
"format": "uuid"
}
*/
Given the input JSON file "optional\format\uuid.json"
Given the input JSON file "optional/format/uuid.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of date-time strings
/* Schema:
{ "format": "date-time" }
*/
Given the input JSON file "optional\format\date-time.json"
Given the input JSON file "optional/format/date-time.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of date strings
/* Schema:
{ "format": "date" }
*/
Given the input JSON file "optional\format\date.json"
Given the input JSON file "optional/format/date.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of duration strings
/* Schema:
{ "format": "duration" }
*/
Given the input JSON file "optional\format\duration.json"
Given the input JSON file "optional/format/duration.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of e-mail addresses
/* Schema:
{ "format": "email" }
*/
Given the input JSON file "optional\format\email.json"
Given the input JSON file "optional/format/email.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: all integers are multiples of 0.5, if overflow is handled
/* Schema:
{"type": "integer", "multipleOf": 0.5}
*/
Given the input JSON file "optional\float-overflow.json"
Given the input JSON file "optional/float-overflow.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Scenario Outline: schema that uses custom metaschema with format-assertion: fals
"format": "ipv4"
}
*/
Given the input JSON file "optional\format-assertion.json"
Given the input JSON file "optional/format-assertion.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand All @@ -34,7 +34,7 @@ Scenario Outline: schema that uses custom metaschema with format-assertion: true
"format": "ipv4"
}
*/
Given the input JSON file "optional\format-assertion.json"
Given the input JSON file "optional/format-assertion.json"
And the schema at "#/1/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of host names
/* Schema:
{ "format": "hostname" }
*/
Given the input JSON file "optional\format\hostname.json"
Given the input JSON file "optional/format/hostname.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of an internationalized e-mail addresses
/* Schema:
{ "format": "idn-email" }
*/
Given the input JSON file "optional\format\idn-email.json"
Given the input JSON file "optional/format/idn-email.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of internationalized host names
/* Schema:
{ "format": "idn-hostname" }
*/
Given the input JSON file "optional\format\idn-hostname.json"
Given the input JSON file "optional/format/idn-hostname.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IP addresses
/* Schema:
{ "format": "ipv4" }
*/
Given the input JSON file "optional\format\ipv4.json"
Given the input JSON file "optional/format/ipv4.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IPv6 addresses
/* Schema:
{ "format": "ipv6" }
*/
Given the input JSON file "optional\format\ipv6.json"
Given the input JSON file "optional/format/ipv6.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IRI References
/* Schema:
{ "format": "iri-reference" }
*/
Given the input JSON file "optional\format\iri-reference.json"
Given the input JSON file "optional/format/iri-reference.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of IRIs
/* Schema:
{ "format": "iri" }
*/
Given the input JSON file "optional\format\iri.json"
Given the input JSON file "optional/format/iri.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of JSON-pointers (JSON String Representation)
/* Schema:
{ "format": "json-pointer" }
*/
Given the input JSON file "optional\format\json-pointer.json"
Given the input JSON file "optional/format/json-pointer.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of regular expressions
/* Schema:
{ "format": "regex" }
*/
Given the input JSON file "optional\format\regex.json"
Given the input JSON file "optional/format/regex.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of Relative JSON Pointers (RJP)
/* Schema:
{ "format": "relative-json-pointer" }
*/
Given the input JSON file "optional\format\relative-json-pointer.json"
Given the input JSON file "optional/format/relative-json-pointer.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of time strings
/* Schema:
{ "format": "time" }
*/
Given the input JSON file "optional\format\time.json"
Given the input JSON file "optional/format/time.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of URI References
/* Schema:
{ "format": "uri-reference" }
*/
Given the input JSON file "optional\format\uri-reference.json"
Given the input JSON file "optional/format/uri-reference.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: format: uri-template
/* Schema:
{ "format": "uri-template" }
*/
Given the input JSON file "optional\format\uri-template.json"
Given the input JSON file "optional/format/uri-template.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Scenario Outline: validation of URIs
/* Schema:
{ "format": "uri" }
*/
Given the input JSON file "optional\format\uri.json"
Given the input JSON file "optional/format/uri.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Scenario Outline: uuid format
"format": "uuid"
}
*/
Given the input JSON file "optional\format\uuid.json"
Given the input JSON file "optional/format/uuid.json"
And the schema at "#/0/schema"
And the input data at "<inputDataReference>"
And I generate a type for the schema
Expand Down
Loading