Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Base Worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
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
Workers
Base Worker
Commits
70444569
Commit
70444569
authored
3 years ago
by
ml bonhomme
Browse files
Options
Downloads
Patches
Plain Diff
update tests
parent
03e666fd
No related branches found
No related tags found
1 merge request
!139
Text orientation in base worker
Pipeline
#78870
passed
3 years ago
Stage: test
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arkindex_worker/worker/transcription.py
+3
-3
3 additions, 3 deletions
arkindex_worker/worker/transcription.py
tests/test_elements_worker/test_transcriptions.py
+88
-45
88 additions, 45 deletions
tests/test_elements_worker/test_transcriptions.py
with
91 additions
and
48 deletions
arkindex_worker/worker/transcription.py
+
3
−
3
View file @
70444569
...
@@ -256,9 +256,9 @@ class TranscriptionMixin(object):
...
@@ -256,9 +256,9 @@ class TranscriptionMixin(object):
"
element_id
"
:
annotation
[
"
element_id
"
],
"
element_id
"
:
annotation
[
"
element_id
"
],
"
text
"
:
transcription
[
"
text
"
],
"
text
"
:
transcription
[
"
text
"
],
"
confidence
"
:
transcription
[
"
score
"
],
"
confidence
"
:
transcription
[
"
score
"
],
"
orientation
"
:
transcription
[
"
orientation
"
].
value
"
orientation
"
:
transcription
.
get
(
if
"
orientation
"
in
transcription
"
orientation
"
,
TextOrientation
.
HorizontalLeftToRight
else
TextOrientation
.
HorizontalLeftToRight
.
value
,
)
.
value
,
"
worker_version_id
"
:
self
.
worker_version_id
,
"
worker_version_id
"
:
self
.
worker_version_id
,
}
}
)
)
...
...
This diff is collapsed.
Click to expand it.
tests/test_elements_worker/test_transcriptions.py
+
88
−
45
View file @
70444569
...
@@ -690,17 +690,22 @@ def test_create_transcriptions(responses, mock_elements_worker_with_cache):
...
@@ -690,17 +690,22 @@ def test_create_transcriptions(responses, mock_elements_worker_with_cache):
(
"
POST
"
,
"
http://testserver/api/v1/transcription/bulk/
"
),
(
"
POST
"
,
"
http://testserver/api/v1/transcription/bulk/
"
),
]
]
trans_response
=
list
(
map
(
dict
,
trans
))
for
transcription
in
trans_response
:
transcription
[
"
orientation
"
]
=
(
transcription
[
"
orientation
"
].
value
if
"
orientation
"
in
transcription
else
TextOrientation
.
HorizontalLeftToRight
.
value
)
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
transcriptions
"
:
trans_response
,
"
transcriptions
"
:
[
{
"
element_id
"
:
"
11111111-1111-1111-1111-111111111111
"
,
"
text
"
:
"
The
"
,
"
score
"
:
0.75
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
{
"
element_id
"
:
"
11111111-1111-1111-1111-111111111111
"
,
"
text
"
:
"
word
"
,
"
score
"
:
0.42
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
],
}
}
# Check that created transcriptions were properly stored in SQLite cache
# Check that created transcriptions were properly stored in SQLite cache
...
@@ -770,17 +775,22 @@ def test_create_transcriptions_orientation(responses, mock_elements_worker_with_
...
@@ -770,17 +775,22 @@ def test_create_transcriptions_orientation(responses, mock_elements_worker_with_
transcriptions
=
trans
,
transcriptions
=
trans
,
)
)
trans_response
=
list
(
map
(
dict
,
trans
))
for
transcription
in
trans_response
:
transcription
[
"
orientation
"
]
=
(
transcription
[
"
orientation
"
].
value
if
"
orientation
"
in
transcription
else
TextOrientation
.
HorizontalLeftToRight
.
value
)
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
transcriptions
"
:
trans_response
,
"
transcriptions
"
:
[
{
"
element_id
"
:
"
11111111-1111-1111-1111-111111111111
"
,
"
text
"
:
"
Animula vagula blandula
"
,
"
score
"
:
0.12
,
"
orientation
"
:
TextOrientation
.
HorizontalRightToLeft
.
value
,
},
{
"
element_id
"
:
"
11111111-1111-1111-1111-111111111111
"
,
"
text
"
:
"
Hospes comesque corporis
"
,
"
score
"
:
0.21
,
"
orientation
"
:
TextOrientation
.
VerticalLeftToRight
.
value
,
},
],
}
}
# Check that oriented transcriptions were properly stored in SQLite cache
# Check that oriented transcriptions were properly stored in SQLite cache
...
@@ -1289,18 +1299,29 @@ def test_create_element_transcriptions(responses, mock_elements_worker):
...
@@ -1289,18 +1299,29 @@ def test_create_element_transcriptions(responses, mock_elements_worker):
(
"
POST
"
,
f
"
http://testserver/api/v1/element/
{
elt
.
id
}
/transcriptions/bulk/
"
),
(
"
POST
"
,
f
"
http://testserver/api/v1/element/
{
elt
.
id
}
/transcriptions/bulk/
"
),
]
]
transcriptions_sample_response
=
list
(
map
(
dict
,
TRANSCRIPTIONS_SAMPLE
))
for
transcription
in
transcriptions_sample_response
:
transcription
[
"
orientation
"
]
=
(
transcription
[
"
orientation
"
].
value
if
"
orientation
"
in
transcription
else
TextOrientation
.
HorizontalLeftToRight
.
value
)
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
"
element_type
"
:
"
page
"
,
"
element_type
"
:
"
page
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
transcriptions
"
:
transcriptions_sample_response
,
"
transcriptions
"
:
[
{
"
polygon
"
:
[[
100
,
150
],
[
700
,
150
],
[
700
,
200
],
[
100
,
200
]],
"
score
"
:
0.5
,
"
text
"
:
"
The
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
{
"
polygon
"
:
[[
0
,
0
],
[
2000
,
0
],
[
2000
,
3000
],
[
0
,
3000
]],
"
score
"
:
0.75
,
"
text
"
:
"
first
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
{
"
polygon
"
:
[[
1000
,
300
],
[
1200
,
300
],
[
1200
,
500
],
[
1000
,
500
]],
"
score
"
:
0.9
,
"
text
"
:
"
line
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
],
"
return_elements
"
:
True
,
"
return_elements
"
:
True
,
}
}
assert
annotations
==
[
assert
annotations
==
[
...
@@ -1363,18 +1384,29 @@ def test_create_element_transcriptions_with_cache(
...
@@ -1363,18 +1384,29 @@ def test_create_element_transcriptions_with_cache(
(
"
POST
"
,
f
"
http://testserver/api/v1/element/
{
elt
.
id
}
/transcriptions/bulk/
"
),
(
"
POST
"
,
f
"
http://testserver/api/v1/element/
{
elt
.
id
}
/transcriptions/bulk/
"
),
]
]
transcriptions_sample_response
=
list
(
map
(
dict
,
TRANSCRIPTIONS_SAMPLE
))
for
transcription
in
transcriptions_sample_response
:
transcription
[
"
orientation
"
]
=
(
transcription
[
"
orientation
"
].
value
if
"
orientation
"
in
transcription
else
TextOrientation
.
HorizontalLeftToRight
.
value
)
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
"
element_type
"
:
"
page
"
,
"
element_type
"
:
"
page
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
transcriptions
"
:
transcriptions_sample_response
,
"
transcriptions
"
:
[
{
"
polygon
"
:
[[
100
,
150
],
[
700
,
150
],
[
700
,
200
],
[
100
,
200
]],
"
score
"
:
0.5
,
"
text
"
:
"
The
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
{
"
polygon
"
:
[[
0
,
0
],
[
2000
,
0
],
[
2000
,
3000
],
[
0
,
3000
]],
"
score
"
:
0.75
,
"
text
"
:
"
first
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
{
"
polygon
"
:
[[
1000
,
300
],
[
1200
,
300
],
[
1200
,
500
],
[
1000
,
500
]],
"
score
"
:
0.9
,
"
text
"
:
"
line
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
],
"
return_elements
"
:
True
,
"
return_elements
"
:
True
,
}
}
assert
annotations
==
[
assert
annotations
==
[
...
@@ -1494,18 +1526,29 @@ def test_create_transcriptions_orientation_with_cache(
...
@@ -1494,18 +1526,29 @@ def test_create_transcriptions_orientation_with_cache(
transcriptions
=
oriented_transcriptions
,
transcriptions
=
oriented_transcriptions
,
)
)
oriented_transcriptions_response
=
list
(
map
(
dict
,
oriented_transcriptions
))
for
transcription
in
oriented_transcriptions_response
:
transcription
[
"
orientation
"
]
=
(
transcription
[
"
orientation
"
].
value
if
"
orientation
"
in
transcription
else
TextOrientation
.
HorizontalLeftToRight
.
value
)
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
assert
json
.
loads
(
responses
.
calls
[
-
1
].
request
.
body
)
==
{
"
element_type
"
:
"
page
"
,
"
element_type
"
:
"
page
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
worker_version
"
:
"
12341234-1234-1234-1234-123412341234
"
,
"
transcriptions
"
:
oriented_transcriptions_response
,
"
transcriptions
"
:
[
{
"
polygon
"
:
[[
100
,
150
],
[
700
,
150
],
[
700
,
200
],
[
100
,
200
]],
"
score
"
:
0.5
,
"
text
"
:
"
Animula vagula blandula
"
,
"
orientation
"
:
TextOrientation
.
HorizontalLeftToRight
.
value
,
},
{
"
polygon
"
:
[[
0
,
0
],
[
2000
,
0
],
[
2000
,
3000
],
[
0
,
3000
]],
"
score
"
:
0.75
,
"
text
"
:
"
Hospes comesque corporis
"
,
"
orientation
"
:
TextOrientation
.
VerticalLeftToRight
.
value
,
},
{
"
polygon
"
:
[[
100
,
150
],
[
700
,
150
],
[
700
,
200
],
[
100
,
200
]],
"
score
"
:
0.9
,
"
text
"
:
"
Quae nunc abibis in loca
"
,
"
orientation
"
:
TextOrientation
.
HorizontalRightToLeft
.
value
,
},
],
"
return_elements
"
:
True
,
"
return_elements
"
:
True
,
}
}
assert
annotations
==
[
assert
annotations
==
[
...
...
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