mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
Improve test_writer tests
Check also that locking succeeds after the writer closes the WARC file. Remove parametrize from ``test_warc_writer_locking``, test only for the ``no_warc_open_suffix=True`` option. Change `1` to `OBTAINED LOCK` and `0` to `FAILED TO OBTAIN LOCK` in ``lock_file`` method.
This commit is contained in:
parent
25c0accc3c
commit
c087cc7a2e
@ -11,10 +11,10 @@ from warcprox import Options
|
|||||||
recorder = ProxyingRecorder(None, None, 'sha1', url='http://example.com')
|
recorder = ProxyingRecorder(None, None, 'sha1', url='http://example.com')
|
||||||
|
|
||||||
recorded_url = RecordedUrl(url='http://example.com', content_type='text/plain',
|
recorded_url = RecordedUrl(url='http://example.com', content_type='text/plain',
|
||||||
status=200, client_ip='5.5.5.5',
|
status=200, client_ip='127.0.0.2',
|
||||||
request_data=b'abc',
|
request_data=b'abc',
|
||||||
response_recorder=recorder,
|
response_recorder=recorder,
|
||||||
remote_ip='6.6.6.6',
|
remote_ip='127.0.0.3',
|
||||||
timestamp=datetime.utcnow())
|
timestamp=datetime.utcnow())
|
||||||
|
|
||||||
|
|
||||||
@ -26,29 +26,20 @@ def lock_file(queue, filename):
|
|||||||
fi = open(filename, 'ab')
|
fi = open(filename, 'ab')
|
||||||
fcntl.lockf(fi, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
fcntl.lockf(fi, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
||||||
fi.close()
|
fi.close()
|
||||||
queue.put('1')
|
queue.put('OBTAINED LOCK')
|
||||||
except IOError:
|
except IOError:
|
||||||
queue.put('0')
|
queue.put('FAILED TO OBTAIN LOCK')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("no_warc_open_suffix,lock_result", [
|
def test_warc_writer_locking(tmpdir):
|
||||||
(True, '0'),
|
|
||||||
(False, '1')])
|
|
||||||
def test_warc_writer_locking(tmpdir, no_warc_open_suffix, lock_result):
|
|
||||||
"""Test if WarcWriter is locking WARC files.
|
"""Test if WarcWriter is locking WARC files.
|
||||||
When we don't have the .open suffix, WarcWriter locks the file and the
|
When we don't have the .open suffix, WarcWriter locks the file and the
|
||||||
external process trying to ``lock_file`` fails (result=0).
|
external process trying to ``lock_file`` fails (result=0).
|
||||||
"""
|
"""
|
||||||
dirname = os.path.dirname(str(tmpdir.mkdir('test-warc-writer')))
|
dirname = os.path.dirname(str(tmpdir.mkdir('test-warc-writer')))
|
||||||
wwriter = WarcWriter(Options(directory=dirname,
|
wwriter = WarcWriter(Options(directory=dirname, no_warc_open_suffix=True))
|
||||||
no_warc_open_suffix=no_warc_open_suffix))
|
|
||||||
wwriter.write_records(recorded_url)
|
wwriter.write_records(recorded_url)
|
||||||
|
warcs = [fn for fn in os.listdir(dirname) if fn.endswith('.warc')]
|
||||||
if no_warc_open_suffix:
|
|
||||||
suffix = '.warc'
|
|
||||||
else:
|
|
||||||
suffix = '.warc.open'
|
|
||||||
warcs = [fn for fn in os.listdir(dirname) if fn.endswith(suffix)]
|
|
||||||
assert warcs
|
assert warcs
|
||||||
target_warc = os.path.join(dirname, warcs[0])
|
target_warc = os.path.join(dirname, warcs[0])
|
||||||
# launch another process and try to lock WARC file
|
# launch another process and try to lock WARC file
|
||||||
@ -56,4 +47,11 @@ def test_warc_writer_locking(tmpdir, no_warc_open_suffix, lock_result):
|
|||||||
p = Process(target=lock_file, args=(queue, target_warc))
|
p = Process(target=lock_file, args=(queue, target_warc))
|
||||||
p.start()
|
p.start()
|
||||||
p.join()
|
p.join()
|
||||||
assert queue.get() == lock_result
|
assert queue.get() == 'FAILED TO OBTAIN LOCK'
|
||||||
|
wwriter.close_writer()
|
||||||
|
|
||||||
|
# locking must succeed after writer has closed the WARC file.
|
||||||
|
p = Process(target=lock_file, args=(queue, target_warc))
|
||||||
|
p.start()
|
||||||
|
p.join()
|
||||||
|
assert queue.get() == 'OBTAINED LOCK'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user