1
1
# -*- coding: utf-8 -*-
2
-
3
- import filecmp
4
2
import os
5
3
import shutil
6
4
import tempfile
24
22
SYNCED = "synchronized"
25
23
UNSYNCED = "unsynchronized"
26
24
SKIP = "skip"
27
- FILECMP = "filecmp"
28
25
SHOULD_DETECT_ENCODING = "should_detect_encoding"
29
26
EXTRA_ARGS = "extra_args"
30
27
EXTRA_NO_VALUE_ARGS = "extra_no_value_args"
@@ -51,13 +48,10 @@ def test_path(fname):
51
48
unparsed_args .append ("--{}" .format (extra_key ))
52
49
args = parser .parse_args (unparsed_args )
53
50
truth = test_path (test [SYNCED ])
54
- should_filecmp = True
55
- if FILECMP in test :
56
- should_filecmp = test [FILECMP ]
57
51
should_detect_encoding = None
58
52
if SHOULD_DETECT_ENCODING in test :
59
53
should_detect_encoding = test [SHOULD_DETECT_ENCODING ]
60
- yield args , truth , should_filecmp , should_detect_encoding
54
+ yield args , truth , should_detect_encoding
61
55
62
56
63
57
def timestamps_roughly_match (f1 , f2 ):
@@ -66,7 +60,7 @@ def timestamps_roughly_match(f1, f2):
66
60
pipe = make_pipeline (parser , extractor )
67
61
f1_bitstring = pipe .fit_transform (f1 ).astype (bool )
68
62
f2_bitstring = pipe .fit_transform (f2 ).astype (bool )
69
- return np .alltrue (f1_bitstring == f2_bitstring )
63
+ return np .sum (f1_bitstring == f2_bitstring ) / len ( f1_bitstring ) >= 0.99
70
64
71
65
72
66
def detected_encoding (fname ):
@@ -76,10 +70,8 @@ def detected_encoding(fname):
76
70
77
71
78
72
@pytest .mark .integration
79
- @pytest .mark .parametrize (
80
- "args,truth,should_filecmp,should_detect_encoding" , gen_synctest_configs ()
81
- )
82
- def test_sync_matches_ground_truth (args , truth , should_filecmp , should_detect_encoding ):
73
+ @pytest .mark .parametrize ("args,truth,should_detect_encoding" , gen_synctest_configs ())
74
+ def test_sync_matches_ground_truth (args , truth , should_detect_encoding ):
83
75
# context manager TemporaryDirectory not available on py2
84
76
dirpath = tempfile .mkdtemp ()
85
77
try :
@@ -88,12 +80,7 @@ def test_sync_matches_ground_truth(args, truth, should_filecmp, should_detect_en
88
80
)
89
81
args .skip_ssa_info = True
90
82
assert ffsubsync .run (args )["retval" ] == 0
91
- if should_filecmp :
92
- # uncomment this after verifying that test failures are false positives
93
- # shutil.copy(args.srtout, truth)
94
- assert filecmp .cmp (args .srtout , truth , shallow = False )
95
- else :
96
- assert timestamps_roughly_match (args .srtout , truth )
83
+ assert timestamps_roughly_match (args .srtout , truth )
97
84
if should_detect_encoding is not None :
98
85
assert detected_encoding (args .srtin [0 ]) == should_detect_encoding
99
86
finally :
0 commit comments