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

Automatically build HTML versions of test manifests. #596

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Automatic Report and Test Manifest Generation
on:
push:
branches: [main]
paths: ["reports/**", "tests/**"]
pull_request:
branches: [ main ]
paths: ["reports/**", "tests/**"]

jobs:
build:
name: Generate Reports using Ruby
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
- name: Install dependencies
run: bundle install
- name: Generate Test Manifests
run: (cd tests; bundle exec rake)
#- name: Generate Report
# run: (cd reports; rake)
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated report generation
commit_user_name: Report generation bot
commit_user_email: <>

1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ GEM
PLATFORMS
arm64-darwin-21
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-20
x86_64-linux

Expand Down
49 changes: 49 additions & 0 deletions tests/expand-manifest.html
Original file line number Diff line number Diff line change
Expand Up @@ -6004,6 +6004,27 @@ <h2>
</dd>
</dl>
</dd>
<dt id='ter56'>
Test ter56 Invalid redefinition of @context keyword.
</dt>
<dd>
<dl class='entry'>
<dt>id</dt>
<dd>#ter56</dd>
<dt>Type</dt>
<dd>jld:NegativeEvaluationTest, jld:ExpandTest</dd>
<dt>Purpose</dt>
<dd>Verifies that an exception is raised when attempting to redefine @context.</dd>
<dt>input</dt>
<dd>
<a href='expand/er56-in.jsonld'>expand/er56-in.jsonld</a>
</dd>
<dt>expect</dt>
<dd>
keyword redefinition
</dd>
</dl>
</dd>
<dt id='tes01'>
Test tes01 Using an array value for @context is illegal in JSON-LD 1.0
</dt>
Expand Down Expand Up @@ -9594,6 +9615,34 @@ <h2>
</dd>
</dl>
</dd>
<dt id='tpr42'>
Test tpr42 Fail if protected flag not retained during redefinition
</dt>
<dd>
<dl class='entry'>
<dt>id</dt>
<dd>#tpr42</dd>
<dt>Type</dt>
<dd>jld:NegativeEvaluationTest, jld:ExpandTest</dd>
<dt>Purpose</dt>
<dd>Check protected redefinition retains protected flag.</dd>
<dt>input</dt>
<dd>
<a href='expand/pr42-in.jsonld'>expand/pr42-in.jsonld</a>
</dd>
<dt>expect</dt>
<dd>
protected term redefinition
</dd>
<dt>Options</dt>
<dd>
<dl class='options'>
<dt>specVersion</dt>
<dd>json-ld-1.1</dd>
</dl>
</dd>
</dl>
</dd>
<dt id='tso01'>
Test tso01 @import is invalid in 1.0.
</dt>
Expand Down
49 changes: 49 additions & 0 deletions tests/toRdf-manifest.html
Original file line number Diff line number Diff line change
Expand Up @@ -7289,6 +7289,27 @@ <h2>
</dd>
</dl>
</dd>
<dt id='ter56'>
Test ter56 Invalid redefinition of @context keyword.
</dt>
<dd>
<dl class='entry'>
<dt>id</dt>
<dd>#ter56</dd>
<dt>Type</dt>
<dd>jld:NegativeEvaluationTest, jld:ToRDFTest</dd>
<dt>Purpose</dt>
<dd>Verifies that an exception is raised when attempting to redefine @context.</dd>
<dt>input</dt>
<dd>
<a href='expand/er56-in.jsonld'>expand/er56-in.jsonld</a>
</dd>
<dt>expect</dt>
<dd>
keyword redefinition
</dd>
</dl>
</dd>
<dt id='tin01'>
Test tin01 Basic Included array
</dt>
Expand Down Expand Up @@ -11293,6 +11314,34 @@ <h2>
</dd>
</dl>
</dd>
<dt id='tpr42'>
Test tpr42 Fail if protected flag not retained during redefinition
</dt>
<dd>
<dl class='entry'>
<dt>id</dt>
<dd>#tpr42</dd>
<dt>Type</dt>
<dd>jld:NegativeEvaluationTest, jld:ToRDFTest</dd>
<dt>Purpose</dt>
<dd>Check protected redefinition retains protected flag.</dd>
<dt>input</dt>
<dd>
<a href='toRdf/pr42-in.jsonld'>toRdf/pr42-in.jsonld</a>
</dd>
<dt>expect</dt>
<dd>
protected term redefinition
</dd>
<dt>Options</dt>
<dd>
<dl class='options'>
<dt>specVersion</dt>
<dd>json-ld-1.1</dd>
</dl>
</dd>
</dl>
</dd>
<dt id='trt01'>
Test trt01 Representing numbers &gt;= 1e21
</dt>
Expand Down
Loading