Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
intermediate-format
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bibliothek-der-neologie
intermediate-format
Commits
a86d220c
Commit
a86d220c
authored
7 years ago
by
uwe
Browse files
Options
Downloads
Patches
Plain Diff
expanding unit testing module
parent
5b92c4e6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/intermediate_format/identification.xqm
+0
-27
0 additions, 27 deletions
modules/intermediate_format/identification.xqm
oxygen/devel/modules/unittesting.xqm
+42
-14
42 additions, 14 deletions
oxygen/devel/modules/unittesting.xqm
with
42 additions
and
41 deletions
modules/intermediate_format/identification.xqm
+
0
−
27
View file @
a86d220c
...
...
@@ -446,31 +446,4 @@ declare function ident:fetch-marker-from-sequence
where
$found
return
$markers
};
(:~
: ident:identify-unit-test()
: Some kind of test-unit-function to eval the main identification functionality of this module on all tei:lem and tei:readings of a given xml-tree
:
: @param $nodes xml-tree to be tested
: @return test report for each tei:lem and tei:reading as node()*
:
: @version 2.0 (2018-02-01)
: @status working
: @note meant to test the identification algorithm
: @author Uwe Sikora
:)
declare
function
ident:identify-unit-test
(
$nodes
as
node
()
*
)
as
node
()
*
{
for
$node
at
$nr
in
$nodes
//
node
()[
self
::
lem
or
self
::
rdg
]
let
$identified-targets
:=
ident:identify-targets
(
$node
)
return
element
{
"UTEST"
}{
attribute
{
"n"
}{
$nr
}
,
element
{
"SELF"
}
{
$node
}
,
$identified-targets
}
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
oxygen/devel/modules/unittesting.xqm
+
42
−
14
View file @
a86d220c
...
...
@@ -14,6 +14,8 @@ module namespace test="http://bdn.edition.de/intermediate_format/unit_testing";
import
module
namespace
ident
=
"http://bdn.edition.de/intermediate_format/identification"
at
"../../../modules/intermediate_format/identification.xqm"
;
declare
namespace
tei
=
"http://www.tei-c.org/ns/1.0"
;
(:############################# Modules Functions #############################:)
(:~
...
...
@@ -73,28 +75,54 @@ declare function test:branch-axis
: @author Uwe Sikora
:)
declare
function
test:reading-evaluation
(
$
reading
s
as
node
()
*
)
as
item
()
*
{
(
$
node
s
as
node
()
*
)
as
item
()
*
{
for
$reading
at
$nr
in
$
readings
let
$first-save-
node
:=
ident:first-save-node
(
$reading
)
let
$last-save-
node
:=
ident:last-save-node
(
$reading
)
for
$reading
at
$nr
in
$
nodes
//
node
()[
self
::
tei:lem
or
self
::
tei:rdg
]
let
$first-save-
target
:=
ident:first-save-node
(
$reading
)
let
$last-save-
target
:=
ident:last-save-node
(
$reading
)
return
element
{
$reading
/
name
()}{
$reading
/
@
*,
attribute
{
"
index
"
}
{
$nr
}
,
attribute
{
"
nr
"
}
{
$nr
}
,
element
{
"self"
}{
attribute
{
"gid"
}{
generate-id
(
$reading
)
}
,
$reading
}
,
element
{
"
target
"
}{
attribute
{
"type"
}{
"open"
}
,
attribute
{
"gid"
}{
generate-id
(
$first-save-
node
)
}
,
$first-save-
node
}
,
element
{
"
targe
t"
}{
attribute
{
"
type"
}{
"close"
}
,
attribute
{
"gid"
}{
generate-id
(
$last-save-
node
)
}
,
$last-save-node
element
{
"
evaluation
"
}{
element
{
"first"
}{
attribute
{
"gid"
}{
generate-id
(
$first-save-
target
)
}
,
$first-save-
target
}
,
element
{
"
las
t"
}{
attribute
{
"
gid"
}{
generate-id
(
$last-save-target
)
}
,
$last-save-
target
}
}
}
};
(:~
: test:identify-target()
: unit-test-function to eval the main identification functionality of the ident module on all tei:lem and tei:readings of a given xml-tree
:
: @param $nodes xml-tree to be tested
: @return test report for each tei:lem and tei:reading as node()*
:
: @version 2.1 (2018-02-05)
: @status working
: @note meant to test the identification algorithm
: @author Uwe Sikora
:)
declare
function
test:identify-target
(
$nodes
as
node
()
*
)
as
node
()
*
{
for
$node
at
$nr
in
$nodes
//
node
()[
self
::
tei:lem
or
self
::
tei:rdg
]
let
$identified-targets
:=
ident:identify-targets
(
$node
)
return
element
{
"UTEST"
}{
attribute
{
"n"
}{
$nr
}
,
element
{
"SELF"
}
{
$node
}
,
$identified-targets
}
};
\ No newline at end of file
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