2 @message |
Performance problem
assert
- CPU time ratio when sending COMPRESSABLE TEXTUAL DATA and WireCompression is ON vs OFF: EXPECTED
+ CPU time ratio when sending COMPRESSABLE TEXTUAL DATA and WireCompression is ON vs OFF: /* perf_issue_tag */ UNEXPECTED less than 5
- CPU time ratio when sending INCOMPRESSABLE BINARY DATA and WireCompression is ON vs OFF: EXPECTED
+ CPU time ratio when sending INCOMPRESSABLE BINARY DATA and WireCompression is ON vs OFF: /* perf_issue_tag */ UNEXPECTED, less than 4
CPU time ratio when WireCompression is OFF and sending TEXTUAL vs BINARY data: EXPECTED
+ compressed_txt= [0.72, 0.6799999999999999, 0.6499999999999999, 0.5499999999999999, 0.62, 0.53, 0.6699999999999999, 0.69, 0.63] min= 0.53 max= 0.72
+ compressed_bin= [0.72, 0.6100000000000001, 0.6100000000000001, 0.59, 0.7100000000000001, 0.6299999999999999, 0.7, 0.54, 0.5399999999999999] min= 0.5399999999999999 max= 0.72
+ non_comprs_txt= [0.15000000000000002, 0.18, 0.19, 0.16999999999999998, 0.21, 0.18, 0.14, 0.15, 0.16] min= 0.14 max= 0.21
+ non_comprs_bin= [0.18, 0.22000000000000003, 0.17, 0.22, 0.15000000000000002, 0.21, 0.15, 0.2, 0.16999999999999998] min= 0.15 max= 0.22000000000000003
+ median(compressed_txt) / median(non_comprs_txt) = 3.8235294117647056
+ median(compressed_bin) / median(non_comprs_bin) = 3.3888888888888897
+ median(non_comprs_txt) / median(non_comprs_bin) = 0.9444444444444444
LOG DETAILS:
2025-06-27 15:45:42.900
2025-06-27 15:45:42.905 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-27 15:45:42.909 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-27 15:45:42.914
2025-06-27 15:45:42.919 @pytest.mark.version('>=3.0')
2025-06-27 15:45:42.924 def test_1(act: Action, capsys):
2025-06-27 15:45:42.928
2025-06-27 15:45:42.932 # OPTIONAL CHECK: minimal ratio between CPU user time when WireCompression = false
2025-06-27 15:45:42.937 # and engine sends to client: 1) 'IDEALLY COMPRESSABLE'; 2) 'ABSOLUTELY IMCOMPRESSIBLE' data.
2025-06-27 15:45:42.942 # This can be useful to estimate record-level compression: textual data can be compressed
2025-06-27 15:45:42.946 # very well, so its transfer must take much less time then for GEN_UUID.
2025-06-27 15:45:42.951 # Experiments show that this ratio can be on Windows in the scope 0.3.... 0.8,
2025-06-27 15:45:42.956 # but on Linux it can be 1.0 or even slightly more then 1(!)
2025-06-27 15:45:42.960 # Windows: 0.500; 0.600; 0.571; 0.428; 0.714; 0.667; 0.625; 0.429; 0.571 // 4.0.1
2025-06-27 15:45:42.965 # 0.454; 0.357; 0.357; 0.500; 0.250; 0.385; 0.333; 0.200; 0.500 // 3.0.8
2025-06-27 15:45:42.970 # Linux: 0.684; 1.000; 1.000; 1.067; 0.867; 0.813; 0.800; 0.777; 0.750 // 4.0.1
2025-06-27 15:45:42.975 # 0.928; 1.000; 0.933; 1.000; 1.077; 0.750; 0.938; 0.929; 0.928 // 3.0.8
2025-06-27 15:45:42.979 if act.is_version('<4'):
2025-06-27 15:45:42.984 # 16.09.2022, 4.3.0.8 Classic: Windows -> 1.2
2025-06-27 15:45:42.988 MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF = 1.1 if platform.system() == 'Linux' else 1.5
2025-06-27 15:45:42.992 else:
2025-06-27 15:45:42.997 # 05.03.2023, 5.0.0.970, SS, Linux: 1.1 --> 1.3
2025-06-27 15:45:43.002 # 05.04.2023, 5.0.0.1001, SS, WIndows: 0.95 --> 1.5
2025-06-27 15:45:43.007 MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF = 1.3 if platform.system() == 'Linux' else 1.5
2025-06-27 15:45:43.013
2025-06-27 15:45:43.018 # Register Firebird server (D:\FB\probes\fid-set-dpb-probe-05x.py)
2025-06-27 15:45:43.024 srv_cfg = driver_config.register_server(name = 'test_srv_core_0733', config = '')
2025-06-27 15:45:43.029
2025-06-27 15:45:43.034 #srv_config_key_value_text = \
2025-06-27 15:45:43.039 #f"""
2025-06-27 15:45:43.043 # [test_srv_core_0733]
2025-06-27 15:45:43.049 # protocol = inet
2025-06-27 15:45:43.054 #"""
2025-06-27 15:45:43.060 #driver_config.register_server(name = 'test_srv_core_0733', config = srv_config_key_value_text)
2025-06-27 15:45:43.065 #db_cfg_object = driver_config.register_database(name = 'test_db_core_0733')
2025-06-27 15:45:43.070 #db_cfg_object.database.value = str(act.db.db_path)
2025-06-27 15:45:43.075
2025-06-27 15:45:43.080 benchmark_data = defaultdict(list)
2025-06-27 15:45:43.085
2025-06-27 15:45:43.090 for w_compr in (True, False):
2025-06-27 15:45:43.094
2025-06-27 15:45:43.099 db_cfg_name = f'test_db_core_0733__wcompr_{w_compr}'
2025-06-27 15:45:43.103 db_cfg_object = driver_config.register_database(name = db_cfg_name)
2025-06-27 15:45:43.108 db_cfg_object.server.value = srv_cfg.name
2025-06-27 15:45:43.113 # db_cfg_object.protocol.value = None / XNET / WNET -- these can not be used in this test!
2025-06-27 15:45:43.118 db_cfg_object.protocol.value = NetProtocol.INET
2025-06-27 15:45:43.123 db_cfg_object.database.value = str(act.db.db_path)
2025-06-27 15:45:43.128 db_cfg_object.config.value = f"""
2025-06-27 15:45:43.133 WireCrypt = Disabled
2025-06-27 15:45:43.138 WireCompression = {w_compr}
2025-06-27 15:45:43.142 """
2025-06-27 15:45:43.147 for i in range(0, N_MEASURES):
2025-06-27 15:45:43.152 with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
2025-06-27 15:45:43.157 prot_name = db_cfg_object.protocol.value.name if db_cfg_object.protocol.value else 'Embedded'
2025-06-27 15:45:43.162 assert w_compr == con.info.is_compressed(), f'Protocol: {prot_name} - can not be used to measure wire_compression'
2025-06-27 15:45:43.166
2025-06-27 15:45:43.171 with con.cursor() as cur:
2025-06-27 15:45:43.175 cur.execute('select mon$server_pid, mon$remote_protocol as p from mon$attachments where mon$attachment_id = current_connection')
2025-06-27 15:45:43.180 for r in cur:
2025-06-27 15:45:43.185 fb_pid, connection_protocol = r
2025-06-27 15:45:43.190 assert connection_protocol.startswith('TCP'), f'Invalid connection protocol: {connection_protocol}'
2025-06-27 15:45:43.194
2025-06-27 15:45:43.199 for data_source in ('t_common_text', 't_binary_data'):
2025-06-27 15:45:43.204 cur.execute('select s from ' + data_source)
2025-06-27 15:45:43.209
2025-06-27 15:45:43.214 fb_info_a = psutil.Process(fb_pid).cpu_times()
2025-06-27 15:45:43.218 for r in cur:
2025-06-27 15:45:43.222 # *** FULL FETCH ***
2025-06-27 15:45:43.227 pass
2025-06-27 15:45:43.233 fb_info_b = psutil.Process(fb_pid).cpu_times()
2025-06-27 15:45:43.238
2025-06-27 15:45:43.245 k = ('WireCompression=%d' % (1 if w_compr else 0), 'DataSource='+data_source)
2025-06-27 15:45:43.251 benchmark_data[k] += fb_info_b.user - fb_info_a.user,
2025-06-27 15:45:43.258
2025-06-27 15:45:43.264
2025-06-27 15:45:43.271 compressed_txt = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=1' and k[1] == 'DataSource=t_common_text'][0]
2025-06-27 15:45:43.277 compressed_bin = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=1' and k[1] == 'DataSource=t_binary_data'][0]
2025-06-27 15:45:43.284 non_comprs_txt = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=0' and k[1] == 'DataSource=t_common_text'][0]
2025-06-27 15:45:43.289 non_comprs_bin = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=0' and k[1] == 'DataSource=t_binary_data'][0]
2025-06-27 15:45:43.294
2025-06-27 15:45:43.298 cpu_txt_wcompr_ON_vs_OFF = median(compressed_txt) / max(0.00001, median(non_comprs_txt))
2025-06-27 15:45:43.303 cpu_bin_wcompr_ON_vs_OFF = median(compressed_bin) / max(0.00001, median(non_comprs_bin))
2025-06-27 15:45:43.307 cpu_txt2bin_wcompr_OFF = median(non_comprs_txt) / max(0.00001, median(non_comprs_bin))
2025-06-27 15:45:43.312
2025-06-27 15:45:43.317 msg_result1 = 'CPU time ratio when sending %s and WireCompression is ON vs OFF: %s'
2025-06-27 15:45:43.321 what_sent1 = 'COMPRESSABLE TEXTUAL DATA'
2025-06-27 15:45:43.326 all_fine = 1
2025-06-27 15:45:43.330 if cpu_txt_wcompr_ON_vs_OFF > MIN_CPU_RATIO_TXT_WCOMPR_ON_OFF:
2025-06-27 15:45:43.335 print(msg_result1 % (what_sent1, 'EXPECTED') )
2025-06-27 15:45:43.339 else:
2025-06-27 15:45:43.344 print(msg_result1 % (what_sent1, '/* perf_issue_tag */ UNEXPECTED less than '+str(MIN_CPU_RATIO_TXT_WCOMPR_ON_OFF)) )
2025-06-27 15:45:43.349 all_fine = 0
2025-06-27 15:45:43.355
2025-06-27 15:45:43.359
2025-06-27 15:45:43.364 what_sent2 = 'INCOMPRESSABLE BINARY DATA'
2025-06-27 15:45:43.369 if cpu_bin_wcompr_ON_vs_OFF > MIN_CPU_RATIO_BIN_WCOMPR_ON_OFF:
2025-06-27 15:45:43.374 print(msg_result1 % (what_sent2, 'EXPECTED') )
2025-06-27 15:45:43.379 else:
2025-06-27 15:45:43.385 print(msg_result1 % (what_sent2, '/* perf_issue_tag */ UNEXPECTED, less than '+str(MIN_CPU_RATIO_BIN_WCOMPR_ON_OFF)) )
2025-06-27 15:45:43.394 all_fine = 0
2025-06-27 15:45:43.405
2025-06-27 15:45:43.415
2025-06-27 15:45:43.427 msg_result2 = 'CPU time ratio when WireCompression is OFF and sending TEXTUAL vs BINARY data: %s'
2025-06-27 15:45:43.437 if cpu_txt2bin_wcompr_OFF <= MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF:
2025-06-27 15:45:43.446 print(msg_result2 % ('EXPECTED') )
2025-06-27 15:45:43.453 else:
2025-06-27 15:45:43.461 print(msg_result2 % ('/* perf_issue_tag */ UNEXPECTED, more than ' + str(MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF)) )
2025-06-27 15:45:43.467 all_fine = 0
2025-06-27 15:45:43.472
2025-06-27 15:45:43.482 if not all_fine:
2025-06-27 15:45:43.495 print('compressed_txt=',compressed_txt,' min=',min(compressed_txt),' max=',max(compressed_txt))
2025-06-27 15:45:43.507 print('compressed_bin=',compressed_bin,' min=',min(compressed_bin),' max=',max(compressed_bin))
2025-06-27 15:45:43.517 print('non_comprs_txt=',non_comprs_txt,' min=',min(non_comprs_txt),' max=',max(non_comprs_txt))
2025-06-27 15:45:43.524 print('non_comprs_bin=',non_comprs_bin,' min=',min(non_comprs_bin),' max=',max(non_comprs_bin))
2025-06-27 15:45:43.533
2025-06-27 15:45:43.542 print('median(compressed_txt) / median(non_comprs_txt) =',1.000 * median(compressed_txt) / max(0.00001, median(non_comprs_txt)) )
2025-06-27 15:45:43.556 print('median(compressed_bin) / median(non_comprs_bin) =',1.000 * median(compressed_bin) / max(0.00001, median(non_comprs_bin)) )
2025-06-27 15:45:43.567 print('median(non_comprs_txt) / median(non_comprs_bin) =',1.000 * median(non_comprs_txt) / max(0.00001, median(non_comprs_bin)) )
2025-06-27 15:45:43.575
2025-06-27 15:45:43.583
2025-06-27 15:45:43.589 expected_stdout = ''
2025-06-27 15:45:43.595 for f in (what_sent1, what_sent2):
2025-06-27 15:45:43.601 expected_stdout += ''.join( (msg_result1 % (f, 'EXPECTED'), '\n') )
2025-06-27 15:45:43.607 expected_stdout += (msg_result2 % 'EXPECTED')
2025-06-27 15:45:43.613
2025-06-27 15:45:43.619 act.expected_stdout = expected_stdout
2025-06-27 15:45:43.625 act.stdout = capsys.readouterr().out
2025-06-27 15:45:43.631 > assert act.clean_stdout == act.clean_expected_stdout
2025-06-27 15:45:43.637 E assert
2025-06-27 15:45:43.643 E - CPU time ratio when sending COMPRESSABLE TEXTUAL DATA and WireCompression is ON vs OFF: EXPECTED
2025-06-27 15:45:43.655 E + CPU time ratio when sending COMPRESSABLE TEXTUAL DATA and WireCompression is ON vs OFF: /* perf_issue_tag */ UNEXPECTED less than 5
2025-06-27 15:45:43.678 E - CPU time ratio when sending INCOMPRESSABLE BINARY DATA and WireCompression is ON vs OFF: EXPECTED
2025-06-27 15:45:43.686 E + CPU time ratio when sending INCOMPRESSABLE BINARY DATA and WireCompression is ON vs OFF: /* perf_issue_tag */ UNEXPECTED, less than 4
2025-06-27 15:45:43.709 E CPU time ratio when WireCompression is OFF and sending TEXTUAL vs BINARY data: EXPECTED
2025-06-27 15:45:43.719 E + compressed_txt= [0.72, 0.6799999999999999, 0.6499999999999999, 0.5499999999999999, 0.62, 0.53, 0.6699999999999999, 0.69, 0.63] min= 0.53 max= 0.72
2025-06-27 15:45:43.726 E + compressed_bin= [0.72, 0.6100000000000001, 0.6100000000000001, 0.59, 0.7100000000000001, 0.6299999999999999, 0.7, 0.54, 0.5399999999999999] min= 0.5399999999999999 max= 0.72
2025-06-27 15:45:43.734 E + non_comprs_txt= [0.15000000000000002, 0.18, 0.19, 0.16999999999999998, 0.21, 0.18, 0.14, 0.15, 0.16] min= 0.14 max= 0.21
2025-06-27 15:45:43.743 E + non_comprs_bin= [0.18, 0.22000000000000003, 0.17, 0.22, 0.15000000000000002, 0.21, 0.15, 0.2, 0.16999999999999998] min= 0.15 max= 0.22000000000000003
2025-06-27 15:45:43.755 E + median(compressed_txt) / median(non_comprs_txt) = 3.8235294117647056
2025-06-27 15:45:43.764 E + median(compressed_bin) / median(non_comprs_bin) = 3.3888888888888897
2025-06-27 15:45:43.772 E + median(non_comprs_txt) / median(non_comprs_bin) = 0.9444444444444444
2025-06-27 15:45:43.779
2025-06-27 15:45:43.787 tests/bugs/core_0733_test.py:254: AssertionError
2025-06-27 15:45:43.800 ---------------------------- Captured stdout setup -----------------------------
2025-06-27 15:45:43.810 Creating db: localhost:/var/tmp/qa_2024/test_173/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-27 15:45:43.816 ____________________ tests/bugs/core_1263_test.py::test_1_a ____________________
2025-06-27 15:45:43.822
2025-06-27 15:45:43.830 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-27 15:45:43.838
2025-06-27 15:45:43.850 @pytest.mark.version('>=3.0')
2025-06-27 15:45:43.862 @pytest.mark.platform('Linux', 'Darwin')
2025-06-27 15:45:43.869 def test_1_a(act: Action):
2025-06-27 15:45:43.874 act.expected_stderr = expected_stderr_a
2025-06-27 15:45:43.880 act.gsec(input=commands)
2025-06-27 15:45:43.885 > assert act.clean_stderr == act.clean_expected_stderr
2025-06-27 15:45:43.890 E assert
2025-06-27 15:45:43.896 E GSEC> invalid switch specified in interactive mode
2025-06-27 15:45:43.901 E GSEC> invalid switch specified in interactive mode
2025-06-27 15:45:43.907 E GSEC> invalid switch specified in interactive mode
2025-06-27 15:45:43.913 E GSEC> invalid switch specified in interactive mode
2025-06-27 15:45:43.921 E GSEC> invalid switch specified in interactive mode
2025-06-27 15:45:43.927 E - GSEC> invalid switch specified
2025-06-27 15:45:43.935 E + GSEC> invalid switch specified in interactive mode
2025-06-27 15:45:43.953 E - error in switch specifications
2025-06-27 15:45:43.964 E GSEC>
2025-06-27 15:45:43.976
2025-06-27 15:45:43.989 tests/bugs/core_1263_test.py:44: AssertionError
2025-06-27 15:45:43.999 ---------------------------- Captured stdout setup -----------------------------
2025-06-27 15:45:44.006 Creating db: localhost:/var/tmp/qa_2024/test_1_a0/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
|
3 #text |
act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>
@pytest.mark.version('>=3.0')
def test_1(act: Action, capsys):
# OPTIONAL CHECK: minimal ratio between CPU user time when WireCompression = false
# and engine sends to client: 1) 'IDEALLY COMPRESSABLE'; 2) 'ABSOLUTELY IMCOMPRESSIBLE' data.
# This can be useful to estimate record-level compression: textual data can be compressed
# very well, so its transfer must take much less time then for GEN_UUID.
# Experiments show that this ratio can be on Windows in the scope 0.3.... 0.8,
# but on Linux it can be 1.0 or even slightly more then 1(!)
# Windows: 0.500; 0.600; 0.571; 0.428; 0.714; 0.667; 0.625; 0.429; 0.571 // 4.0.1
# 0.454; 0.357; 0.357; 0.500; 0.250; 0.385; 0.333; 0.200; 0.500 // 3.0.8
# Linux: 0.684; 1.000; 1.000; 1.067; 0.867; 0.813; 0.800; 0.777; 0.750 // 4.0.1
# 0.928; 1.000; 0.933; 1.000; 1.077; 0.750; 0.938; 0.929; 0.928 // 3.0.8
if act.is_version('<4'):
# 16.09.2022, 4.3.0.8 Classic: Windows -> 1.2
MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF = 1.1 if platform.system() == 'Linux' else 1.5
else:
# 05.03.2023, 5.0.0.970, SS, Linux: 1.1 --> 1.3
# 05.04.2023, 5.0.0.1001, SS, WIndows: 0.95 --> 1.5
MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF = 1.3 if platform.system() == 'Linux' else 1.5
# Register Firebird server (D:\FB\probes\fid-set-dpb-probe-05x.py)
srv_cfg = driver_config.register_server(name = 'test_srv_core_0733', config = '')
#srv_config_key_value_text = \
#f"""
# [test_srv_core_0733]
# protocol = inet
#"""
#driver_config.register_server(name = 'test_srv_core_0733', config = srv_config_key_value_text)
#db_cfg_object = driver_config.register_database(name = 'test_db_core_0733')
#db_cfg_object.database.value = str(act.db.db_path)
benchmark_data = defaultdict(list)
for w_compr in (True, False):
db_cfg_name = f'test_db_core_0733__wcompr_{w_compr}'
db_cfg_object = driver_config.register_database(name = db_cfg_name)
db_cfg_object.server.value = srv_cfg.name
# db_cfg_object.protocol.value = None / XNET / WNET -- these can not be used in this test!
db_cfg_object.protocol.value = NetProtocol.INET
db_cfg_object.database.value = str(act.db.db_path)
db_cfg_object.config.value = f"""
WireCrypt = Disabled
WireCompression = {w_compr}
"""
for i in range(0, N_MEASURES):
with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
prot_name = db_cfg_object.protocol.value.name if db_cfg_object.protocol.value else 'Embedded'
assert w_compr == con.info.is_compressed(), f'Protocol: {prot_name} - can not be used to measure wire_compression'
with con.cursor() as cur:
cur.execute('select mon$server_pid, mon$remote_protocol as p from mon$attachments where mon$attachment_id = current_connection')
for r in cur:
fb_pid, connection_protocol = r
assert connection_protocol.startswith('TCP'), f'Invalid connection protocol: {connection_protocol}'
for data_source in ('t_common_text', 't_binary_data'):
cur.execute('select s from ' + data_source)
fb_info_a = psutil.Process(fb_pid).cpu_times()
for r in cur:
# *** FULL FETCH ***
pass
fb_info_b = psutil.Process(fb_pid).cpu_times()
k = ('WireCompression=%d' % (1 if w_compr else 0), 'DataSource='+data_source)
benchmark_data[k] += fb_info_b.user - fb_info_a.user,
compressed_txt = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=1' and k[1] == 'DataSource=t_common_text'][0]
compressed_bin = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=1' and k[1] == 'DataSource=t_binary_data'][0]
non_comprs_txt = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=0' and k[1] == 'DataSource=t_common_text'][0]
non_comprs_bin = [ v for k,v in benchmark_data.items() if k[0] == 'WireCompression=0' and k[1] == 'DataSource=t_binary_data'][0]
cpu_txt_wcompr_ON_vs_OFF = median(compressed_txt) / max(0.00001, median(non_comprs_txt))
cpu_bin_wcompr_ON_vs_OFF = median(compressed_bin) / max(0.00001, median(non_comprs_bin))
cpu_txt2bin_wcompr_OFF = median(non_comprs_txt) / max(0.00001, median(non_comprs_bin))
msg_result1 = 'CPU time ratio when sending %s and WireCompression is ON vs OFF: %s'
what_sent1 = 'COMPRESSABLE TEXTUAL DATA'
all_fine = 1
if cpu_txt_wcompr_ON_vs_OFF > MIN_CPU_RATIO_TXT_WCOMPR_ON_OFF:
print(msg_result1 % (what_sent1, 'EXPECTED') )
else:
print(msg_result1 % (what_sent1, '/* perf_issue_tag */ UNEXPECTED less than '+str(MIN_CPU_RATIO_TXT_WCOMPR_ON_OFF)) )
all_fine = 0
what_sent2 = 'INCOMPRESSABLE BINARY DATA'
if cpu_bin_wcompr_ON_vs_OFF > MIN_CPU_RATIO_BIN_WCOMPR_ON_OFF:
print(msg_result1 % (what_sent2, 'EXPECTED') )
else:
print(msg_result1 % (what_sent2, '/* perf_issue_tag */ UNEXPECTED, less than '+str(MIN_CPU_RATIO_BIN_WCOMPR_ON_OFF)) )
all_fine = 0
msg_result2 = 'CPU time ratio when WireCompression is OFF and sending TEXTUAL vs BINARY data: %s'
if cpu_txt2bin_wcompr_OFF <= MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF:
print(msg_result2 % ('EXPECTED') )
else:
print(msg_result2 % ('/* perf_issue_tag */ UNEXPECTED, more than ' + str(MAX_CPU_RATIO_TXT2BIN_WCOMPR_OFF)) )
all_fine = 0
if not all_fine:
print('compressed_txt=',compressed_txt,' min=',min(compressed_txt),' max=',max(compressed_txt))
print('compressed_bin=',compressed_bin,' min=',min(compressed_bin),' max=',max(compressed_bin))
print('non_comprs_txt=',non_comprs_txt,' min=',min(non_comprs_txt),' max=',max(non_comprs_txt))
print('non_comprs_bin=',non_comprs_bin,' min=',min(non_comprs_bin),' max=',max(non_comprs_bin))
print('median(compressed_txt) / median(non_comprs_txt) =',1.000 * median(compressed_txt) / max(0.00001, median(non_comprs_txt)) )
print('median(compressed_bin) / median(non_comprs_bin) =',1.000 * median(compressed_bin) / max(0.00001, median(non_comprs_bin)) )
print('median(non_comprs_txt) / median(non_comprs_bin) =',1.000 * median(non_comprs_txt) / max(0.00001, median(non_comprs_bin)) )
expected_stdout = ''
for f in (what_sent1, what_sent2):
expected_stdout += ''.join( (msg_result1 % (f, 'EXPECTED'), '\n') )
expected_stdout += (msg_result2 % 'EXPECTED')
act.expected_stdout = expected_stdout
act.stdout = capsys.readouterr().out
> assert act.clean_stdout == act.clean_expected_stdout
E assert
E - CPU time ratio when sending COMPRESSABLE TEXTUAL DATA and WireCompression is ON vs OFF: EXPECTED
E + CPU time ratio when sending COMPRESSABLE TEXTUAL DATA and WireCompression is ON vs OFF: /* perf_issue_tag */ UNEXPECTED less than 5
E - CPU time ratio when sending INCOMPRESSABLE BINARY DATA and WireCompression is ON vs OFF: EXPECTED
E + CPU time ratio when sending INCOMPRESSABLE BINARY DATA and WireCompression is ON vs OFF: /* perf_issue_tag */ UNEXPECTED, less than 4
E CPU time ratio when WireCompression is OFF and sending TEXTUAL vs BINARY data: EXPECTED
E + compressed_txt= [0.72, 0.6799999999999999, 0.6499999999999999, 0.5499999999999999, 0.62, 0.53, 0.6699999999999999, 0.69, 0.63] min= 0.53 max= 0.72
E + compressed_bin= [0.72, 0.6100000000000001, 0.6100000000000001, 0.59, 0.7100000000000001, 0.6299999999999999, 0.7, 0.54, 0.5399999999999999] min= 0.5399999999999999 max= 0.72
E + non_comprs_txt= [0.15000000000000002, 0.18, 0.19, 0.16999999999999998, 0.21, 0.18, 0.14, 0.15, 0.16] min= 0.14 max= 0.21
E + non_comprs_bin= [0.18, 0.22000000000000003, 0.17, 0.22, 0.15000000000000002, 0.21, 0.15, 0.2, 0.16999999999999998] min= 0.15 max= 0.22000000000000003
E + median(compressed_txt) / median(non_comprs_txt) = 3.8235294117647056
E + median(compressed_bin) / median(non_comprs_bin) = 3.3888888888888897
E + median(non_comprs_txt) / median(non_comprs_bin) = 0.9444444444444444
tests/bugs/core_0733_test.py:254: AssertionError
|