Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Rodolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
cubes
Rodolf
Commits
b043f7a10ff7
Commit
b043f7a10ff7
authored
11 months ago
by
Elodie Thiéblin
Browse files
Options
Downloads
Patches
Plain Diff
feat: export shacl report summary
parent
7d9563fb2f43
No related branches found
No related tags found
2 merge requests
!65
feat: add a footpage
,
!61
feat: export shacl report summary
Pipeline
#233888
failed
11 months ago
Stage: install
Stage: lint
Stage: build
Stage: tests
Stage: release
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cubicweb_rodolf/import_data.py
+42
-3
42 additions, 3 deletions
cubicweb_rodolf/import_data.py
with
42 additions
and
3 deletions
cubicweb_rodolf/import_data.py
+
42
−
3
View file @
b043f7a1
...
@@ -21,7 +21,46 @@
...
@@ -21,7 +21,46 @@
from
cubicweb
import
Binary
from
cubicweb
import
Binary
from
cubicweb_rq.rq
import
rqjob
from
cubicweb_rq.rq
import
rqjob
from
rdflib
import
Graph
from
rdflib
import
Graph
,
URIRef
from
rdflib.namespace
import
NamespaceManager
def
summarize_validation_report
(
shacl_report_graph
):
summary_query
=
"""
PREFIX sh: <http://www.w3.org/ns/shacl#>
select distinct ?property ?inverseProperty ?severity
?constraint ?shape ?message
(count(?x) as ?shcount)
(sample(?fmessage) as ?message)
(sample(?fnode) as ?node)
where{
?x a sh:ValidationResult.
?x sh:resultPath ?property.
?x sh:resultSeverity ?severity.
?x sh:sourceShape ?shape.
?x sh:resultMessage ?fmessage.
?x sh:focusNode ?fnode.
OPTIONAL{?x sh:sourceConstraintComponent ?constraint.}
OPTIONAL{?property sh:inversePath ?inverseProperty}
}
GROUP BY ?property ?severity ?shape ?inverseProperty ?constraint
"""
qres
=
shacl_report_graph
.
query
(
summary_query
)
summary_report
=
""
nb_violations
=
0
g
=
Graph
()
nm
=
NamespaceManager
(
g
,
bind_namespaces
=
"
rdflib
"
)
for
row
in
qres
:
nb_violations
+=
int
(
row
.
shcount
)
sh_property
=
(
row
.
property
.
n3
(
nm
)
if
isinstance
(
row
.
shape
,
URIRef
)
else
f
"
^
{
row
.
inverseProperty
.
n3
(
nm
)
}
"
)
sh_shape
=
row
.
shape
.
n3
(
nm
)
if
isinstance
(
row
.
shape
,
URIRef
)
else
""
summary_report
+=
f
"
{
row
.
severity
.
n3
(
nm
)
}
:
{
row
.
shcount
}
{
row
.
message
}
(
{
row
.
constraint
.
n3
(
nm
)
}
on
{
sh_property
}
)
{
sh_shape
}
\n\n
"
# noqa
return
f
"
{
nb_violations
}
SHACL Validation problems detected
\n\n
"
+
summary_report
def
check_rdf_graph
(
graph
,
import_procedure
):
def
check_rdf_graph
(
graph
,
import_procedure
):
...
@@ -32,9 +71,9 @@
...
@@ -32,9 +71,9 @@
data
=
file
.
data
.
getvalue
().
decode
(
"
utf8
"
),
data
=
file
.
data
.
getvalue
().
decode
(
"
utf8
"
),
format
=
file
.
data_format
,
format
=
file
.
data_format
,
)
)
conforms
,
_
graph_reports
,
text_reports
=
pyshacl
.
validate
(
conforms
,
graph_reports
,
text_reports
=
pyshacl
.
validate
(
graph
,
graph
,
shacl_graph
=
shacl_shapes_graph
,
shacl_graph
=
shacl_shapes_graph
,
)
)
if
not
conforms
:
if
not
conforms
:
everything_ok
=
False
everything_ok
=
False
...
@@ -36,9 +75,9 @@
...
@@ -36,9 +75,9 @@
graph
,
graph
,
shacl_graph
=
shacl_shapes_graph
,
shacl_graph
=
shacl_shapes_graph
,
)
)
if
not
conforms
:
if
not
conforms
:
everything_ok
=
False
everything_ok
=
False
errors
[
file
.
eid
]
=
text
_reports
errors
[
file
.
eid
]
=
summarize_validation_report
(
graph
_reports
)
return
everything_ok
,
errors
return
everything_ok
,
errors
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment