Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
6634d088
Commit
6634d088
authored
10 months ago
by
Valentin Rigal
Browse files
Options
Downloads
Patches
Plain Diff
Update tests
parent
32318ed4
No related branches found
No related tags found
1 merge request
!2317
Support exports version 8 in the load_export command
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arkindex/documents/tests/commands/test_load_export.py
+8
-2
8 additions, 2 deletions
arkindex/documents/tests/commands/test_load_export.py
with
8 additions
and
2 deletions
arkindex/documents/tests/commands/test_load_export.py
+
8
−
2
View file @
6634d088
...
...
@@ -100,7 +100,13 @@ class TestLoadExport(FixtureTestCase):
_
,
temp_file
=
tempfile
.
mkstemp
(
suffix
=
"
.db
"
)
with
self
.
assertRaises
(
CommandError
)
as
context
:
call_command
(
"
load_export
"
,
temp_file
,
"
--email
"
,
self
.
user
.
email
)
self
.
assertEqual
(
str
(
context
.
exception
),
f
"
The SQLite database
{
temp_file
}
is not a correct Arkindex export
"
)
self
.
assertEqual
(
str
(
context
.
exception
),
(
f
"
The SQLite database
{
temp_file
}
miss some expected tables:
"
"
[
'
classification
'
,
'
dataset
'
,
'
dataset_element
'
,
'
element
'
,
"
"'
element_path
'
,
'
entity
'
,
'
entity_type
'
,
'
export_version
'
,
"
"'
image
'
,
'
image_server
'
,
'
metadata
'
,
'
transcription
'
,
"
"'
transcription_entity
'
,
'
worker_run
'
,
'
worker_version
'
]
"
))
def
test_invalid_version
(
self
):
_
,
temp_file
=
tempfile
.
mkstemp
(
suffix
=
"
.db
"
)
...
...
@@ -113,7 +119,7 @@ class TestLoadExport(FixtureTestCase):
with
self
.
assertRaises
(
CommandError
)
as
context
:
call_command
(
"
load_export
"
,
temp_file
,
"
--email
"
,
self
.
user
.
email
,
"
--corpus-name
"
,
"
My corpus
"
)
self
.
assertEqual
(
str
(
context
.
exception
),
f
"
The SQLite database
{
temp_file
}
does not have
the correct
export version
"
)
self
.
assertEqual
(
str
(
context
.
exception
),
f
"
The SQLite database
{
temp_file
}
does not have
a supported
export version
"
)
@patch
(
"
arkindex.documents.export.os.unlink
"
)
@patch
(
"
arkindex.project.aws.s3.Object
"
)
...
...
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