Skip to content
Snippets Groups Projects
Commit b082d201 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

SW-231: fixed test t_ltacp which was aparently broken before the start of this task

parent dd606ed0
No related branches found
No related tags found
No related merge requests found
...@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment