Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
b082d201
Commit
b082d201
authored
6 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
SW-231
: fixed test t_ltacp which was aparently broken before the start of this task
parent
dd606ed0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LTA/LTAIngest/LTAIngestServer/LTAIngestTransferServer/test/t_ltacp.py
+14
-10
14 additions, 10 deletions
...t/LTAIngestServer/LTAIngestTransferServer/test/t_ltacp.py
with
14 additions
and
10 deletions
LTA/LTAIngest/LTAIngestServer/LTAIngestTransferServer/test/t_ltacp.py
+
14
−
10
View file @
b082d201
...
@@ -4,6 +4,7 @@ import logging
...
@@ -4,6 +4,7 @@ import logging
import
unittest
import
unittest
import
uuid
import
uuid
import
os
,
os
.
path
import
os
,
os
.
path
import
mock
import
lofar.lta.ingest.server.ltacp
as
ltacp
import
lofar.lta.ingest.server.ltacp
as
ltacp
import
ltastubs
import
ltastubs
...
@@ -72,12 +73,13 @@ class TestLtaCp(unittest.TestCase):
...
@@ -72,12 +73,13 @@ class TestLtaCp(unittest.TestCase):
file
.
write
(
1000
*
'
a
'
)
file
.
write
(
1000
*
'
a
'
)
try
:
try
:
cp
=
ltacp
.
LtaCp
(
'
localhost
'
,
test_file_path
,
'
srm://fake_surl
'
)
with
mock
.
patch
(
'
lofar.lta.ingest.server.ltacp.convert_surl_to_turl
'
,
new
=
lambda
x
:
x
):
md5cs
,
a32cs
,
fs
=
cp
.
transfer
()
cp
=
ltacp
.
LtaCp
(
'
localhost
'
,
test_file_path
,
'
srm://fake_surl
'
)
#it suffices to check only the filesize as transfer result
md5cs
,
a32cs
,
fs
=
cp
.
transfer
()
#if the checksums whould have been different between source, local, and/or 'lta'
#it suffices to check only the filesize as transfer result
#then an exception would have been raised, and that is asserted below
#if the checksums whould have been different between source, local, and/or 'lta'
self
.
assertEqual
(
1000
,
int
(
fs
))
#then an exception would have been raised, and that is asserted below
self
.
assertEqual
(
1000
,
int
(
fs
))
except
Exception
as
e
:
except
Exception
as
e
:
self
.
assertTrue
(
False
,
'
Unexpected exception in transfer: %s
'
%
e
)
self
.
assertTrue
(
False
,
'
Unexpected exception in transfer: %s
'
%
e
)
finally
:
finally
:
...
@@ -96,8 +98,9 @@ class TestLtaCp(unittest.TestCase):
...
@@ -96,8 +98,9 @@ class TestLtaCp(unittest.TestCase):
test_file_paths
.
append
(
test_file_path
)
test_file_paths
.
append
(
test_file_path
)
try
:
try
:
cp
=
ltacp
.
LtaCp
(
'
localhost
'
,
test_file_paths
,
'
srm://fake_surl
'
)
with
mock
.
patch
(
'
lofar.lta.ingest.server.ltacp.convert_surl_to_turl
'
,
new
=
lambda
x
:
x
):
md5cs
,
a32cs
,
fs
=
cp
.
transfer
()
cp
=
ltacp
.
LtaCp
(
'
localhost
'
,
test_file_paths
,
'
srm://fake_surl
'
)
md5cs
,
a32cs
,
fs
=
cp
.
transfer
()
except
Exception
as
e
:
except
Exception
as
e
:
self
.
assertTrue
(
False
,
'
Unexpected exception in transfer: %s
'
%
e
)
self
.
assertTrue
(
False
,
'
Unexpected exception in transfer: %s
'
%
e
)
finally
:
finally
:
...
@@ -114,8 +117,9 @@ class TestLtaCp(unittest.TestCase):
...
@@ -114,8 +117,9 @@ class TestLtaCp(unittest.TestCase):
file
.
write
(
1000
*
'
a
'
)
file
.
write
(
1000
*
'
a
'
)
try
:
try
:
cp
=
ltacp
.
LtaCp
(
'
localhost
'
,
test_dir_path
,
'
srm://fake_surl
'
)
with
mock
.
patch
(
'
lofar.lta.ingest.server.ltacp.convert_surl_to_turl
'
,
new
=
lambda
x
:
x
):
md5cs
,
a32cs
,
fs
=
cp
.
transfer
()
cp
=
ltacp
.
LtaCp
(
'
localhost
'
,
test_dir_path
,
'
srm://fake_surl
'
)
md5cs
,
a32cs
,
fs
=
cp
.
transfer
()
except
Exception
as
e
:
except
Exception
as
e
:
self
.
assertTrue
(
False
,
'
Unexpected exception in transfer: %s
'
%
e
)
self
.
assertTrue
(
False
,
'
Unexpected exception in transfer: %s
'
%
e
)
finally
:
finally
:
...
...
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