Check firebird.log [no messages found for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
assert   
  - Expected.

LOG DETAILS:

2025-06-26 14:41:32.703
2025-06-26 14:41:32.704 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 14:41:32.704 tmp_user = <firebird.qa.plugin.User object at [hex]>
2025-06-26 14:41:32.704 tmp_logs = [WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11284/tmp_6142.0.log'), WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_112.../qa2024.tmp/fbqa/test_11284/tmp_6142.4.log'), WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11284/tmp_6142.5.log'), ...]
2025-06-26 14:41:32.704 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-26 14:41:32.704
2025-06-26 14:41:32.704     @pytest.mark.version('>=3.0.5')
2025-06-26 14:41:32.704     @pytest.mark.platform('Windows')
2025-06-26 14:41:32.704     def test_1(act: Action, tmp_user: User, tmp_logs: List[Path], capsys):
2025-06-26 14:41:32.704
2025-06-26 14:41:32.704         srv_config = driver_config.register_server(name = 'test_srv_core_6142', config = '')
2025-06-26 14:41:32.704
2025-06-26 14:41:32.704         # Create new threads:
2025-06-26 14:41:32.704         # ###################
2025-06-26 14:41:32.704         threads_list=[]
2025-06-26 14:41:32.704         for thr_idx in range(THREADS_CNT):
2025-06-26 14:41:32.704
2025-06-26 14:41:32.704             db_cfg_object = driver_config.register_database(name = f'test_db_core_6142_{thr_idx}')
2025-06-26 14:41:32.704             db_cfg_object.database.value = str(act.db.db_path)
2025-06-26 14:41:32.704             db_cfg_object.server.value = 'test_srv_core_6142'
2025-06-26 14:41:32.705             db_cfg_object.protocol.value = NetProtocol.XNET
2025-06-26 14:41:32.705
2025-06-26 14:41:32.705             threads_list.append( workerThread( act, db_cfg_object, thr_idx, THREADS_CNT, LOOP_CNT, tmp_user, tmp_logs ) )
2025-06-26 14:41:32.705
2025-06-26 14:41:32.705         # Start new Threads
2025-06-26 14:41:32.705         # #################
2025-06-26 14:41:32.705         for t in threads_list:
2025-06-26 14:41:32.705             t.start()
2025-06-26 14:41:32.705
2025-06-26 14:41:32.705         # Wait for all threads to complete
2025-06-26 14:41:32.705         for t in threads_list:
2025-06-26 14:41:32.705             t.join()
2025-06-26 14:41:32.705
2025-06-26 14:41:32.705         # not helps -- time.sleep(151)
2025-06-26 14:41:32.705
2025-06-26 14:41:32.705         if set([len(t.pass_lst) for t in threads_list]) == set((LOOP_CNT,)):
2025-06-26 14:41:32.705             # All threads could establish connections using XNET on <LOOP_CNT> iterations.
2025-06-26 14:41:32.705             print('Expected.')
2025-06-26 14:41:32.705         else:
2025-06-26 14:41:32.705             for t in threads_list:
2025-06-26 14:41:32.706                 if t.fail_lst:
2025-06-26 14:41:32.706                     print(f'Thread {t.thr_idx} - failed attempts to make connection on iterations:')
2025-06-26 14:41:32.706                     print(t.fail_lst)
2025-06-26 14:41:32.706                     print('Check log:')
2025-06-26 14:41:32.706                     with open(t.tmp_log, 'r') as f:
2025-06-26 14:41:32.706                         print(f.read())
2025-06-26 14:41:32.706                     print('*' * 50)
2025-06-26 14:41:32.706
2025-06-26 14:41:32.706         act.expected_stdout = """
2025-06-26 14:41:32.706             Expected.
2025-06-26 14:41:32.706         """
2025-06-26 14:41:32.706         act.stdout = capsys.readouterr().out
2025-06-26 14:41:32.706 >       assert act.clean_stdout == act.clean_expected_stdout
2025-06-26 14:41:32.706 E       assert
2025-06-26 14:41:32.706 E         - Expected.
2025-06-26 14:41:32.706
2025-06-26 14:41:32.706 tests\bugs\core_6142_test.py:202: AssertionError
2025-06-26 14:41:32.706 ---------------------------- Captured stdout setup ----------------------------
2025-06-26 14:41:32.706 Creating db: localhost:H:\QA\temp\qa2024.tmp\fbqa\test_11284\test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-26 14:41:32.707 CREATE user: TMP$CORE_6142 PLUGIN: Srp
2025-06-26 14:41:32.707 -------------------------- Captured stdout teardown ---------------------------
2025-06-26 14:41:32.707 DROP user: TMP$CORE_6142 PLUGIN: Srp
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_user = <firebird.qa.plugin.User pytest object at [hex]>
tmp_logs = [WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11284/tmp_6142.0.log'), WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_112.../qa2024.tmp/fbqa/test_11284/tmp_6142.4.log'), WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11284/tmp_6142.5.log'), ...]
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=3.0.5')
    @pytest.mark.platform('Windows')
    def test_1(act: Action, tmp_user: User, tmp_logs: List[Path], capsys):
    
        srv_config = driver_config.register_server(name = 'test_srv_core_6142', config = '')
    
        # Create new threads:
        # ###################
        threads_list=[]
        for thr_idx in range(THREADS_CNT):
    
            db_cfg_object = driver_config.register_database(name = f'test_db_core_6142_{thr_idx}')
            db_cfg_object.database.value = str(act.db.db_path)
            db_cfg_object.server.value = 'test_srv_core_6142'
            db_cfg_object.protocol.value = NetProtocol.XNET
    
            threads_list.append( workerThread( act, db_cfg_object, thr_idx, THREADS_CNT, LOOP_CNT, tmp_user, tmp_logs ) )
    
        # Start new Threads
        # #################
        for t in threads_list:
            t.start()
    
        # Wait for all threads to complete
        for t in threads_list:
            t.join()
    
        # not helps -- time.sleep(151)
    
        if set([len(t.pass_lst) for t in threads_list]) == set((LOOP_CNT,)):
            # All threads could establish connections using XNET on <LOOP_CNT> iterations.
            print('Expected.')
        else:
            for t in threads_list:
                if t.fail_lst:
                    print(f'Thread {t.thr_idx} - failed attempts to make connection on iterations:')
                    print(t.fail_lst)
                    print('Check log:')
                    with open(t.tmp_log, 'r') as f:
                        print(f.read())
                    print('*' * 50)
    
        act.expected_stdout = """
            Expected.
        """
        act.stdout = capsys.readouterr().out
>       assert act.clean_stdout == act.clean_expected_stdout
E       assert   
E         - Expected.

tests\bugs\core_6142_test.py:202: AssertionError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 5.0.3.1657 2025.06.26 dcb8a P P 3391 1198 2025.06.27 10:52:44.530 2025.06.27 10:52:47.921 2025.06.27 09:55:09.585 2025.06.27 09:55:10.783
2 5.0.3.1657 2025.06.20 8b4d2 F P 3400 1220 2025.06.26 11:06:56.549 2025.06.26 11:06:59.949 2025.06.26 10:09:26.798 2025.06.26 10:09:28.018
3 5.0.3.1657 2025.06.19 4bd4c P P 3596 1210 2025.06.20 05:11:15.955 2025.06.20 05:11:19.551 2025.06.20 04:13:37.499 2025.06.20 04:13:38.709
4 5.0.3.1657 2025.06.11 dae6f P P 3427 1204 2025.06.19 10:42:51.816 2025.06.19 10:42:55.243 2025.06.19 09:45:05.105 2025.06.19 09:45:06.309
5 5.0.3.1657 2025.06.10 dbc92 P P 3672 1225 2025.06.11 08:28:58.628 2025.06.11 08:29:02.300 2025.06.11 07:30:59.405 2025.06.11 07:31:00.630
6 5.0.3.1656 2025.06.05 00512 P P 3610 1303 2025.06.10 09:44:22.852 2025.06.10 09:44:26.462 2025.06.10 08:46:01.901 2025.06.10 08:46:03.204
7 5.0.3.1656 2025.05.20 c4b11 P P 3353 1239 2025.06.03 09:31:28.250 2025.06.03 09:31:31.603 2025.06.03 08:34:14.007 2025.06.03 08:34:15.246
8 5.0.3.1652 2025.05.13 f51c6 P P 3723 1157 2025.05.21 06:12:33.033 2025.05.21 06:12:36.756 2025.05.21 05:15:31.021 2025.05.21 05:15:32.178
9 5.0.3.1651 2025.05.08 ee9d2 P P 3679 1309 2025.05.13 06:25:00.083 2025.05.13 06:25:03.762 2025.05.13 05:09:33.821 2025.05.13 05:09:35.130
10 5.0.3.1651 2025.05.04 3d914 P P 3470 1174 2025.05.09 04:14:09.783 2025.05.09 04:14:13.253 2025.05.09 02:58:35.706 2025.05.09 02:58:36.880
11 5.0.3.1651 2025.04.30 141ef P P 3237 1189 2025.05.02 04:21:52.195 2025.05.02 04:21:55.432 2025.05.02 03:06:25.501 2025.05.02 03:06:26.690
12 5.0.3.1650 2025.04.30 6253f P P 3274 1229 2025.05.01 04:20:54.591 2025.05.01 04:20:57.865 2025.05.01 03:05:05.629 2025.05.01 03:05:06.858
13 5.0.3.1650 2025.04.28 4cbff P P 3307 1186 2025.04.30 04:19:51.904 2025.04.30 04:19:55.211 2025.04.30 03:04:39.728 2025.04.30 03:04:40.914
14 5.0.3.1649 2025.04.21 5b2d0 P P 3359 1290 2025.04.26 09:53:24.429 2025.04.26 09:53:27.788 2025.04.26 08:37:15.666 2025.04.26 08:37:16.956
15 5.0.3.1648 2025.04.18 2f4c5 P P 3247 1256 2025.04.20 04:04:39.176 2025.04.20 04:04:42.423 2025.04.20 03:06:40.240 2025.04.20 03:06:41.496
16 5.0.3.1635 2025.04.03 f6bd1 P P 3294 1244 2025.04.18 06:32:21.991 2025.04.18 06:32:25.285 2025.04.18 05:15:57.697 2025.04.18 05:15:58.941
17 5.0.3.1635 2025.03.31 22ec6 P P 3292 1273 2025.04.03 09:38:07.619 2025.04.03 09:38:10.911 2025.04.03 08:21:04.580 2025.04.03 08:21:05.853
18 5.0.3.1633 2025.03.28 3123a P P 3339 1243 2025.03.31 09:36:37.850 2025.03.31 09:36:41.189 2025.03.31 08:19:40.136 2025.03.31 08:19:41.379
19 5.0.3.1633 2025.03.27 e0fb8 P P 3437 1328 2025.03.28 10:07:37.307 2025.03.28 10:07:40.744 2025.03.28 08:47:01.103 2025.03.28 08:47:02.431
20 5.0.3.1631 2025.03.25 bda65 P P 3469 1299 2025.03.27 09:48:14.238 2025.03.27 09:48:17.707 2025.03.27 08:46:27.929 2025.03.27 08:46:29.228
21 5.0.3.1631 2025.03.21 1925b P P 3661 1406 2025.03.25 06:22:07.829 2025.03.25 06:22:11.490 2025.03.25 05:20:18.749 2025.03.25 05:20:20.155
22 5.0.3.1629 2025.03.18 506d7 P P 3344 1648 2025.03.20 09:22:46.787 2025.03.20 09:22:50.131 2025.03.20 08:20:44.337 2025.03.20 08:20:45.985
23 5.0.3.1628 2025.03.14 16d05 P P 3354 1377 2025.03.18 09:17:04.813 2025.03.18 09:17:08.167 2025.03.18 08:16:22.032 2025.03.18 08:16:23.409
24 5.0.3.1627 2025.02.26 4e218 P P 3317 1324 2025.03.13 09:36:03.959 2025.03.13 09:36:07.276 2025.03.13 08:33:49.108 2025.03.13 08:33:50.432
25 5.0.3.1624 2025.02.25 dc3b2 P P 3375 1309 2025.02.26 15:08:14.924 2025.02.26 15:08:18.299 2025.02.26 14:06:38.750 2025.02.26 14:06:40.059
26 5.0.2.1615 2025.02.20 4a726 P P 3582 1259 2025.02.25 08:22:58.402 2025.02.25 08:23:01.984 2025.02.25 07:04:44.002 2025.02.25 07:04:45.261
27 5.0.2.1615 2025.02.14 9cb76 P P 3283 1271 2025.02.15 03:50:48.060 2025.02.15 03:50:51.343 2025.02.15 02:50:52.020 2025.02.15 02:50:53.291
28 5.0.2.1577 2025.02.07 f50a2 P P 3455 1445 2025.02.14 06:03:33.123 2025.02.14 06:03:36.578 2025.02.14 05:04:56.891 2025.02.14 05:04:58.336
29 5.0.2.1577 2024.12.24 3c80e P P 3381 1268 2025.02.06 09:17:00.246 2025.02.06 09:17:03.627 2025.02.06 08:18:22.489 2025.02.06 08:18:23.757
30 5.0.2.1576 2024.12.17 646b0 P P 3351 1264 2024.12.24 09:00:13.713 2024.12.24 09:00:17.064 2024.12.24 08:01:52.097 2024.12.24 08:01:53.361
31 5.0.2.1575 2024.12.09 9af52 P P 3282 1217 2024.12.16 08:57:12.575 2024.12.16 08:57:15.857 2024.12.16 07:58:55.556 2024.12.16 07:58:56.773
32 5.0.2.1575 2024.12.08 63d39 P P 3593 1159 2024.12.09 14:48:15.702 2024.12.09 14:48:19.295 2024.12.09 13:54:53.903 2024.12.09 13:54:55.062
33 5.0.2.1571 2024.12.08 8d11a P P 4105 1100 2024.12.09 06:01:39.324 2024.12.09 06:01:43.429 2024.12.09 05:06:18.235 2024.12.09 05:06:19.335
34 5.0.2.1567 2024.12.07 b01a2 P P 3508 1187 2024.12.08 01:38:47.013 2024.12.08 01:38:50.521 2024.12.08 00:42:14.874 2024.12.08 00:42:16.061
35 5.0.2.1567 2024.12.02 6ae74 P P 3587 1203 2024.12.04 08:43:50.754 2024.12.04 08:43:54.341 2024.12.04 07:50:17.893 2024.12.04 07:50:19.096
36 5.0.2.1567 2024.11.26 56e63 P P 3330 1298 2024.11.30 08:48:00.153 2024.11.30 08:48:03.483 2024.11.30 07:50:29.100 2024.11.30 07:50:30.398
37 5.0.2.1567 2024.11.21 96f61 P P 3482 1276 2024.11.27 08:45:00.938 2024.11.27 08:45:04.420 2024.11.27 07:47:51.279 2024.11.27 07:47:52.555
38 5.0.2.1567 2024.11.18 e1289 P P 3282 1237 2024.11.21 09:03:23.398 2024.11.21 09:03:26.680 2024.11.21 07:44:01.545 2024.11.21 07:44:02.782
39 5.0.2.1533 2024.10.23 0ec43 P P 3317 1422 2024.11.18 08:38:29.066 2024.11.18 08:38:32.383 2024.11.18 07:41:19.367 2024.11.18 07:41:20.789
40 5.0.2.1533 2024.10.22 8af7a P P 3419 1281 2024.10.23 08:46:30.682 2024.10.23 08:46:34.101 2024.10.23 07:49:16.591 2024.10.23 07:49:17.872
41 5.0.2.1532 2024.10.15 36dc0 P P 3542 1331 2024.10.22 14:48:37.901 2024.10.22 14:48:41.443 2024.10.22 13:51:22.384 2024.10.22 13:51:23.715
42 5.0.2.1518 2024.10.04 259ba P P 3347 1256 2024.10.15 08:42:45.521 2024.10.15 08:42:48.868 2024.10.15 07:45:35.487 2024.10.15 07:45:36.743
43 5.0.2.1518 2024.09.26 703cd P P 3400 1285 2024.10.03 08:47:35.478 2024.10.03 08:47:38.878 2024.10.03 07:50:14.722 2024.10.03 07:50:16.007
44 5.0.2.1489 2024.08.31 994a6 P P 3364 1249 2024.09.26 09:06:21.090 2024.09.26 09:06:24.454 2024.09.26 07:50:16.475 2024.09.26 07:50:17.724
45 5.0.2.1476 2024.08.09 843ea P P 3486 1314 2024.09.01 08:54:40.533 2024.09.01 08:54:44.019 2024.09.01 07:37:05.765 2024.09.01 07:37:07.079
46 5.0.1.1454 2024.08.08 30f9f P P 3887 1343 2024.08.09 08:37:04.471 2024.08.09 08:37:08.358 2024.08.09 07:40:10.055 2024.08.09 07:40:11.398
47 5.0.1.1453 2024.08.07 ebbc3 P P 3780 1302 2024.08.08 19:51:10.252 2024.08.08 19:51:14.032 2024.08.08 18:54:11.631 2024.08.08 18:54:12.933
48 5.0.1.1453 2024.08.06 1b9d0 P P 3777 1229 2024.08.07 08:07:25.925 2024.08.07 08:07:29.702 2024.08.07 07:15:01.202 2024.08.07 07:15:02.431
49 5.0.1.1453 2024.07.30 48044 P P 3622 1176 2024.08.03 08:05:49.118 2024.08.03 08:05:52.740 2024.08.03 07:13:02.535 2024.08.03 07:13:03.711
50 5.0.1.1453 2024.07.28 8d956 P P 3736 1190 2024.07.30 07:46:39.796 2024.07.30 07:46:43.532 2024.07.30 06:55:33.261 2024.07.30 06:55:34.451
51 5.0.1.1429 2024.07.19 8ee90 P P 3620 1196 2024.07.27 07:45:24.022 2024.07.27 07:45:27.642 2024.07.27 06:54:41.468 2024.07.27 06:54:42.664
52 5.0.1.1428 2024.07.15 00392 P P 3762 1181 2024.07.19 07:40:48.302 2024.07.19 07:40:52.064 2024.07.19 06:50:20.436 2024.07.19 06:50:21.617
53 5.0.1.1428 2024.06.30 67a31 P P 3505 1203 2024.07.15 07:52:32.029 2024.07.15 07:52:35.534 2024.07.15 07:00:27.786 2024.07.15 07:00:28.989
54 5.0.1.1415 2024.06.12 f8731 P P 3655 1249 2024.06.22 04:51:15.342 2024.06.22 04:51:18.997 2024.06.22 04:01:00.774 2024.06.22 04:01:02.023
55 5.0.1.1415 2024.06.11 31d74 P P 5141 1031 2024.06.11 23:22:39.785 2024.06.11 23:22:44.926 2024.06.11 22:36:09.128 2024.06.11 22:36:10.159
56 5.0.1.1401 2024.06.05 f9b76 P P 4860 969 2024.06.11 04:13:29.811 2024.06.11 04:13:34.671 2024.06.11 03:26:44.759 2024.06.11 03:26:45.728
57 5.0.1.1398 2024.05.10 5e3ce P P 5282 1000 2024.05.25 05:08:37.032 2024.05.25 05:08:42.314 2024.05.25 04:22:05.859 2024.05.25 04:22:06.859
58 5.0.1.1397 2024.05.09 ee2ef P P 4922 969 2024.05.10 05:04:54.352 2024.05.10 05:04:59.274 2024.05.10 04:18:55.062 2024.05.10 04:18:56.031
59 5.0.1.1392 2024.04.29 7dbc2 P P 4985 969 2024.05.09 16:54:34.020 2024.05.09 16:54:39.005 2024.05.09 16:08:23.893 2024.05.09 16:08:24.862
60 5.0.1.1386 2024.04.25 c0328 P P 5017 984 2024.04.29 05:03:52.924 2024.04.29 05:03:57.941 2024.04.29 04:18:01.069 2024.04.29 04:18:02.053
61 5.0.1.1386 2024.04.20 80571 P P 3855 973 2024.04.25 05:06:06.320 2024.04.25 05:06:10.175 2024.04.25 04:19:47.384 2024.04.25 04:19:48.357
62 5.0.1.1378 2024.04.07 5292b P P 5188 969 2024.04.20 05:26:07.576 2024.04.20 05:26:12.764 2024.04.20 04:18:23.580 2024.04.20 04:18:24.549
63 5.0.1.1346 2024.03.16 fe320 P P 3094 890 2024.04.07 03:26:35.852 2024.04.07 03:26:38.946 2024.04.07 02:44:02.877 2024.04.07 02:44:03.767
64 5.0.1.1346 2024.03.02 da408 P P 3077 905 2024.03.25 22:14:12.728 2024.03.25 22:14:15.805 2024.03.25 21:31:45.574 2024.03.25 21:31:46.479
65 5.0.1.1340 2024.02.17 08a71 P P 3187 921 2024.03.25 23:43:54.970 2024.03.25 23:43:58.157 2024.03.25 23:01:33.101 2024.03.25 23:01:34.022
66 5.0.1.1325 2024.02.06 c98fb P P 3093 906 2024.03.26 02:15:20.953 2024.03.26 02:15:24.046 2024.03.26 01:11:49.764 2024.03.26 01:11:50.670
67 5.0.1.1325 2024.02.02 1d438 P P 3155 890 2024.03.26 07:32:27.334 2024.03.26 07:32:30.489 2024.03.26 06:28:05.460 2024.03.26 06:28:06.350
68 5.0.1.1325 2024.01.26 cffb6 P P 3171 905 2024.03.26 09:58:33.656 2024.03.26 09:58:36.827 2024.03.26 08:54:59.797 2024.03.26 08:55:00.702
69 5.0.1.1325 2024.01.26 d3810 P P 3156 937 2024.03.26 11:50:37.395 2024.03.26 11:50:40.551 2024.03.26 10:47:21.482 2024.03.26 10:47:22.419
70 5.0.1.1318 2024.01.21 a7ca3 P P 3077 936 2024.03.26 13:19:38.857 2024.03.26 13:19:41.934 2024.03.26 12:37:28.007 2024.03.26 12:37:28.943
71 5.0.1.1318 2024.01.21 d429d P P 3062 921 2024.03.26 15:01:16.542 2024.03.26 15:01:19.604 2024.03.26 14:19:07.065 2024.03.26 14:19:07.986
72 5.0.1.1318 2024.01.21 f1ab5 P P 3140 890 2024.03.26 17:17:17.994 2024.03.26 17:17:21.134 2024.03.26 16:35:05.681 2024.03.26 16:35:06.571
73 5.0.1.1318 2024.01.20 46722 P P 3187 921 2024.03.26 18:44:15.653 2024.03.26 18:44:18.840 2024.03.26 18:02:11.024 2024.03.26 18:02:11.945

Elapsed time, ms. Chart for last 73 runs:

Last commits information (all timestamps in UTC):