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
Network / firewall ?

failed on teardown with "firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
-Failed to establish a connection."

LOG DETAILS:

2025-03-31 12:04:19.089
2025-03-31 12:04:19.089 act = <firebird.qa.plugin.Action object at [hex]>
2025-03-31 12:04:19.089
2025-03-31 12:04:19.089     @pytest.mark.version('>=3.0,<6')
2025-03-31 12:04:19.089     def test_1(act: Action):
2025-03-31 12:04:19.089         script = f"""
2025-03-31 12:04:19.089         create database '{act.db.dsn}' user '{act.db.user}'
2025-03-31 12:04:19.089           password '{act.db.password}'
2025-03-31 12:04:19.089           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_10.F00')}' STARTING AT PAGE 301
2025-03-31 12:04:19.089           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_10.F01')}' STARTING AT PAGE 601
2025-03-31 12:04:19.089           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_10.F02')}' STARTING AT PAGE 1001
2025-03-31 12:04:19.089         ;
2025-03-31 12:04:19.089         set list on ;
2025-03-31 12:04:19.089         select
2025-03-31 12:04:19.090             cast(rdb$file_name as varchar(100)) db_file
2025-03-31 12:04:19.090             ,rdb$file_sequence
2025-03-31 12:04:19.090             ,rdb$file_start
2025-03-31 12:04:19.090             ,rdb$file_length
2025-03-31 12:04:19.090         from rdb$files ;
2025-03-31 12:04:19.090         """
2025-03-31 12:04:19.090         act.expected_stdout = expected_stdout
2025-03-31 12:04:19.090         act.isql(switches = ['-q'], input=script, connect_db=False, combine_output = True)
2025-03-31 12:04:19.090 >       assert act.clean_stdout == act.clean_expected_stdout
2025-03-31 12:04:19.090 E       assert
2025-03-31 12:04:19.090 E         + Statement	failed,	SQLSTATE	=	08006
2025-03-31 12:04:19.090 E         + Unable	to	complete	network	request	to	host	"localhost".
2025-03-31 12:04:19.090 E         + -Failed	to	establish	a	connection.
2025-03-31 12:04:19.090 E         - TMP_CREATE_DB_10.F00
2025-03-31 12:04:19.090 E         - RDB$FILE_SEQUENCE	1
2025-03-31 12:04:19.090 E         - RDB$FILE_START	301
2025-03-31 12:04:19.090 E         - RDB$FILE_LENGTH	300
2025-03-31 12:04:19.090 E         - TMP_CREATE_DB_10.F01
2025-03-31 12:04:19.091 E         - RDB$FILE_SEQUENCE	2
2025-03-31 12:04:19.091 E         - RDB$FILE_START	601
2025-03-31 12:04:19.091 E         - RDB$FILE_LENGTH	400
2025-03-31 12:04:19.091 E         - TMP_CREATE_DB_10.F02
2025-03-31 12:04:19.091 E         - RDB$FILE_SEQUENCE	3
2025-03-31 12:04:19.091 E         - RDB$FILE_START	1001
2025-03-31 12:04:19.091 E         - RDB$FILE_LENGTH	0
2025-03-31 12:04:19.091
2025-03-31 12:04:19.091 tests\functional\database\create\test_10.py:55: AssertionError
3 #text
request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11861')
db_cache = <firebird.qa.plugin.DbCache pytest object at [hex]>

    @pytest.fixture
    def database_fixture(request: pytest.FixtureRequest, db_path, db_cache) -> Database:
        db = Database(db_path, filename, user, password, charset, debug=str(request.module),
                      config_name=config_name, utf8filename=utf8filename)
        if not do_not_create:
            if from_backup is None and copy_of is None:
                db.create(page_size, sql_dialect, db_cache)
            elif from_backup is not None:
                db.restore(from_backup)
            elif copy_of is not None:
                db.copy(copy_of)
            if async_write:
                db.set_async_write()
            if init: # Do not check for None, we want to skip empty scripts as well
                try:
                    db.init(init)
                except Error as exc:
                    if hasattr(exc, 'stderr'):
                        request.node.user_properties.append(("dbinit-stderr", exc.stderr))
                    raise
        yield db
        if not do_not_drop:
>           db.drop()

src\firebird\qa\plugin.py:987: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

server = 'qa_rundaily_hq50'

    def connect_server(server: str, *, user: str=None, password: str=None,
                       crypt_callback: iCryptKeyCallbackImpl=None,
                       expected_db: str=None, role: str=None, encoding: str=None,
                       encoding_errors: str=None) -> Server:
        """Establishes a connection to server's service manager.
    
        Arguments:
            server: Server host machine or Server configuration name.
            user: User name.
            password: User password.
            crypt_callback: Callback that provides encryption key.
            expected_db: Database that would be accessed (for using services with non-default
                         security database)
            role: SQL role used for connection.
            encoding: Encoding for string values passed in parameter buffer. Default is
               `.ServerConfig.encoding`.
            encoding_errors: Error handler used for encoding errors. Default is
               `.ServerConfig.encoding_errors`.
    
        Hooks:
            Event `.ServerHook.ATTACHED`: Executed before `Service` instance is
            returned. Hook must have signature::
    
                hook_func(server: Server) -> None
    
            Any value returned by hook is ignored.
        """
        srv_config = driver_config.get_server(server)
        if srv_config is None:
            srv_config = driver_config.server_defaults
            host = server or None
            port = None
        else:
            host = srv_config.host.value
            port = srv_config.port.value
        if host is None:
            host = 'service_mgr'
        if not host.endswith('service_mgr'):
            if host and not host.endswith(':'):
                if port:
                    host += f"/{port}"
                host += ':'
            host += 'service_mgr'
        if user is None:
            user = srv_config.user.value
        if password is None:
            password = srv_config.password.value
        spb = SPB_ATTACH(user=user, password=password, config=srv_config.config.value,
                         trusted_auth=srv_config.trusted_auth.value,
                         auth_plugin_list=srv_config.auth_plugin_list.value,
                         expected_db=expected_db, encoding=srv_config.encoding.value,
                         errors=srv_config.encoding_errors.value, role=role)
        spb_buf = spb.get_buffer()
        with a.get_api().master.get_dispatcher() as provider:
            if crypt_callback is not None:
                provider.set_dbcrypt_callback(crypt_callback)
>           svc = provider.attach_service_manager(host, spb_buf)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:5692: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
service = 'localhost/33337:service_mgr'
spb = b'\x02\x02\x1c\x06SYSDBA\x1d\tmasterkey'

    def attach_service_manager(self, service: str, spb: bytes) -> iService:
        "Replaces `isc_service_attach()`"
        result = self.vtable.attachServiceManager(self, self.status, service.encode(), len(spb), spb)
>       self._check()

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1310: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>

    def _check(self) -> None:
        state = self.status.get_state()
        if StateFlag.ERRORS in state:
>           raise self.__report(DatabaseError, self.status.get_errors())
E           firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
E           -Failed to establish a connection.

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
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.1674 2025.06.27 3ee5c P P 486 299 2025.06.29 11:10:18.712 2025.06.29 11:10:19.198 2025.06.29 10:08:20.872 2025.06.29 10:08:21.171
2 5.0.3.1657 2025.06.26 dcb8a P P 443 308 2025.06.27 11:10:58.638 2025.06.27 11:10:59.081 2025.06.27 10:08:58.668 2025.06.27 10:08:58.976
3 5.0.3.1657 2025.06.20 8b4d2 P P 426 300 2025.06.26 11:25:21.642 2025.06.26 11:25:22.068 2025.06.26 10:23:15.224 2025.06.26 10:23:15.524
4 5.0.3.1657 2025.06.19 4bd4c P P 435 293 2025.06.20 05:29:42.011 2025.06.20 05:29:42.446 2025.06.20 04:27:34.024 2025.06.20 04:27:34.317
5 5.0.3.1657 2025.06.11 dae6f P P 458 299 2025.06.19 11:01:03.686 2025.06.19 11:01:04.144 2025.06.19 09:58:58.085 2025.06.19 09:58:58.384
6 5.0.3.1657 2025.06.10 dbc92 P P 428 309 2025.06.11 08:47:28.370 2025.06.11 08:47:28.798 2025.06.11 07:44:55.431 2025.06.11 07:44:55.740
7 5.0.3.1656 2025.06.05 00512 P P 422 305 2025.06.10 10:02:44.058 2025.06.10 10:02:44.480 2025.06.10 09:00:00.580 2025.06.10 09:00:00.885
8 5.0.3.1656 2025.05.20 c4b11 P P 420 300 2025.06.03 09:49:34.617 2025.06.03 09:49:35.037 2025.06.03 08:48:03.173 2025.06.03 08:48:03.473
9 5.0.3.1652 2025.05.13 f51c6 P P 450 299 2025.05.21 06:30:33.081 2025.05.21 06:30:33.531 2025.05.21 05:29:18.027 2025.05.21 05:29:18.326
10 5.0.3.1651 2025.05.08 ee9d2 P E 420 4256 2025.05.13 06:43:13.807 2025.05.13 06:43:14.227 2025.05.13 05:28:25.949 2025.05.13 05:28:30.205
11 5.0.3.1651 2025.05.04 3d914 P E 427 4444 2025.05.09 04:32:16.785 2025.05.09 04:32:17.212 2025.05.09 03:17:23.992 2025.05.09 03:17:28.436
12 5.0.3.1651 2025.04.30 141ef P E 444 4440 2025.05.02 04:39:52.983 2025.05.02 04:39:53.427 2025.05.02 03:25:16.924 2025.05.02 03:25:21.364
13 5.0.3.1650 2025.04.30 6253f P E 420 4433 2025.05.01 04:38:55.489 2025.05.01 04:38:55.909 2025.05.01 03:24:13.712 2025.05.01 03:24:18.145
14 5.0.3.1650 2025.04.28 4cbff P E 421 4271 2025.04.30 04:37:56.572 2025.04.30 04:37:56.993 2025.04.30 03:23:26.654 2025.04.30 03:23:30.925
15 5.0.3.1649 2025.04.21 5b2d0 P E 455 4470 2025.04.26 10:11:56.719 2025.04.26 10:11:57.174 2025.04.26 08:56:27.570 2025.04.26 08:56:32.040
16 5.0.3.1648 2025.04.18 2f4c5 P P 425 295 2025.04.20 04:23:11.393 2025.04.20 04:23:11.818 2025.04.20 03:20:53.882 2025.04.20 03:20:54.177
17 5.0.3.1635 2025.04.03 f6bd1 P E 446 4419 2025.04.18 06:50:54.243 2025.04.18 06:50:54.689 2025.04.18 05:35:38.883 2025.04.18 05:35:43.302
18 5.0.3.1635 2025.03.31 22ec6 P E 439 4426 2025.04.03 09:56:42.152 2025.04.03 09:56:42.591 2025.04.03 08:41:05.073 2025.04.03 08:41:09.499
19 5.0.3.1633 2025.03.28 3123a P E 433 4424 2025.03.31 09:55:06.860 2025.03.31 09:55:07.293 2025.03.31 08:39:33.904 2025.03.31 08:39:38.328
20 5.0.3.1633 2025.03.27 e0fb8 P E 443 4454 2025.03.28 10:26:52.473 2025.03.28 10:26:52.916 2025.03.28 09:07:32.240 2025.03.28 09:07:36.694
21 5.0.3.1631 2025.03.25 bda65 P P 444 321 2025.03.27 10:07:22.964 2025.03.27 10:07:23.408 2025.03.27 09:01:24.278 2025.03.27 09:01:24.599
22 5.0.3.1631 2025.03.21 1925b P P 450 336 2025.03.25 06:41:26.437 2025.03.25 06:41:26.887 2025.03.25 05:35:17.241 2025.03.25 05:35:17.577
23 5.0.3.1629 2025.03.18 506d7 P P 443 320 2025.03.20 09:41:36.944 2025.03.20 09:41:37.387 2025.03.20 08:35:23.086 2025.03.20 08:35:23.406
24 5.0.3.1628 2025.03.14 16d05 P P 429 309 2025.03.18 09:35:44.973 2025.03.18 09:35:45.402 2025.03.18 08:31:01.772 2025.03.18 08:31:02.081
25 5.0.3.1627 2025.02.26 4e218 P P 436 346 2025.03.13 09:55:07.929 2025.03.13 09:55:08.365 2025.03.13 08:48:37.476 2025.03.13 08:48:37.822
26 5.0.3.1624 2025.02.25 dc3b2 P P 444 323 2025.02.26 15:27:18.324 2025.02.26 15:27:18.768 2025.02.26 14:21:32.236 2025.02.26 14:21:32.559
27 5.0.2.1615 2025.02.20 4a726 P E 417 4427 2025.02.25 08:41:24.894 2025.02.25 08:41:25.311 2025.02.25 07:23:52.208 2025.02.25 07:23:56.635
28 5.0.2.1615 2025.02.14 9cb76 P P 419 305 2025.02.15 04:08:59.196 2025.02.15 04:08:59.615 2025.02.15 03:05:15.666 2025.02.15 03:05:15.971
29 5.0.2.1577 2025.02.07 f50a2 P P 422 293 2025.02.14 06:21:36.689 2025.02.14 06:21:37.111 2025.02.14 05:19:04.118 2025.02.14 05:19:04.411
30 5.0.2.1577 2024.12.24 3c80e P P 438 311 2025.02.06 09:35:08.909 2025.02.06 09:35:09.347 2025.02.06 08:32:39.560 2025.02.06 08:32:39.871
31 5.0.2.1576 2024.12.17 646b0 P P 422 306 2024.12.24 09:18:12.045 2024.12.24 09:18:12.467 2024.12.24 08:15:53.928 2024.12.24 08:15:54.234
32 5.0.2.1575 2024.12.09 9af52 P P 421 310 2024.12.16 09:14:57.193 2024.12.16 09:14:57.614 2024.12.16 08:12:44.658 2024.12.16 08:12:44.968
33 5.0.2.1575 2024.12.08 63d39 P P 393 264 2024.12.09 15:04:44.712 2024.12.09 15:04:45.105 2024.12.09 14:07:31.159 2024.12.09 14:07:31.423
34 5.0.2.1571 2024.12.08 8d11a P P 384 286 2024.12.09 06:18:23.822 2024.12.09 06:18:24.206 2024.12.09 05:19:08.298 2024.12.09 05:19:08.584
35 5.0.2.1567 2024.12.07 b01a2 P P 442 274 2024.12.08 01:56:46.597 2024.12.08 01:56:47.039 2024.12.08 00:55:55.194 2024.12.08 00:55:55.468
36 5.0.2.1567 2024.12.02 6ae74 P P 389 265 2024.12.04 09:00:17.253 2024.12.04 09:00:17.642 2024.12.04 08:03:00.899 2024.12.04 08:03:01.164
37 5.0.2.1567 2024.11.26 56e63 P P 458 298 2024.11.30 09:05:57.922 2024.11.30 09:05:58.380 2024.11.30 08:04:18.799 2024.11.30 08:04:19.097
38 5.0.2.1567 2024.11.21 96f61 P P 460 300 2024.11.27 09:02:43.323 2024.11.27 09:02:43.783 2024.11.27 08:01:38.985 2024.11.27 08:01:39.285
39 5.0.2.1567 2024.11.18 e1289 P E 440 4265 2024.11.21 09:21:06.509 2024.11.21 09:21:06.949 2024.11.21 08:06:14.195 2024.11.21 08:06:18.460
40 5.0.2.1533 2024.10.23 0ec43 P P 447 302 2024.11.18 08:56:56.204 2024.11.18 08:56:56.651 2024.11.18 07:55:09.302 2024.11.18 07:55:09.604
41 5.0.2.1533 2024.10.22 8af7a P P 420 316 2024.10.23 09:04:10.151 2024.10.23 09:04:10.571 2024.10.23 08:03:00.672 2024.10.23 08:03:00.988
42 5.0.2.1532 2024.10.15 36dc0 P P 461 314 2024.10.22 15:06:18.371 2024.10.22 15:06:18.832 2024.10.22 14:05:08.369 2024.10.22 14:05:08.683
43 5.0.2.1518 2024.10.04 259ba P P 426 325 2024.10.15 09:00:18.215 2024.10.15 09:00:18.641 2024.10.15 07:59:25.138 2024.10.15 07:59:25.463
44 5.0.2.1518 2024.09.26 703cd P P 418 306 2024.10.03 09:05:12.477 2024.10.03 09:05:12.895 2024.10.03 08:03:56.129 2024.10.03 08:03:56.435
45 5.0.2.1489 2024.08.31 994a6 P E 430 4437 2024.09.26 09:24:14.043 2024.09.26 09:24:14.473 2024.09.26 08:08:47.875 2024.09.26 08:08:52.312
46 5.0.2.1476 2024.08.09 843ea P E 492 4282 2024.09.01 09:12:56.668 2024.09.01 09:12:57.160 2024.09.01 07:55:53.825 2024.09.01 07:55:58.107
47 5.0.1.1454 2024.08.08 30f9f P P 496 340 2024.08.09 08:53:44.668 2024.08.09 08:53:45.164 2024.08.09 07:52:46.785 2024.08.09 07:52:47.125
48 5.0.1.1453 2024.08.07 ebbc3 P P 551 352 2024.08.08 20:08:03.514 2024.08.08 20:08:04.065 2024.08.08 19:06:38.605 2024.08.08 19:06:38.957
49 5.0.1.1453 2024.08.06 1b9d0 P P 543 348 2024.08.07 08:22:50.705 2024.08.07 08:22:51.248 2024.08.07 07:26:40.464 2024.08.07 07:26:40.812
50 5.0.1.1453 2024.07.30 48044 P P 495 346 2024.08.03 08:20:51.189 2024.08.03 08:20:51.684 2024.08.03 07:24:32.837 2024.08.03 07:24:33.183
51 5.0.1.1453 2024.07.28 8d956 P P 508 379 2024.07.30 08:01:33.029 2024.07.30 08:01:33.537 2024.07.30 07:06:57.985 2024.07.30 07:06:58.364
52 5.0.1.1429 2024.07.19 8ee90 P P 484 346 2024.07.27 08:00:15.882 2024.07.27 08:00:16.366 2024.07.27 07:06:03.684 2024.07.27 07:06:04.030
53 5.0.1.1428 2024.07.15 00392 P P 488 344 2024.07.19 07:55:41.526 2024.07.19 07:55:42.014 2024.07.19 07:01:36.531 2024.07.19 07:01:36.875
54 5.0.1.1428 2024.06.30 67a31 P P 496 370 2024.07.15 08:07:08.669 2024.07.15 08:07:09.165 2024.07.15 07:11:53.155 2024.07.15 07:11:53.525
55 5.0.1.1415 2024.06.12 f8731 P P 483 345 2024.06.22 05:05:47.733 2024.06.22 05:05:48.216 2024.06.22 04:12:11.068 2024.06.22 04:12:11.413
56 5.0.1.1415 2024.06.11 31d74 P P 469 282 2024.06.11 23:35:55.046 2024.06.11 23:35:55.515 2024.06.11 22:45:51.629 2024.06.11 22:45:51.911
57 5.0.1.1401 2024.06.05 f9b76 P P 484 282 2024.06.11 04:26:47.945 2024.06.11 04:26:48.429 2024.06.11 03:36:28.822 2024.06.11 03:36:29.104
58 5.0.1.1398 2024.05.10 5e3ce P P 438 281 2024.05.25 05:21:38.728 2024.05.25 05:21:39.166 2024.05.25 04:31:42.155 2024.05.25 04:31:42.436
59 5.0.1.1397 2024.05.09 ee2ef P P 437 266 2024.05.10 05:17:34.310 2024.05.10 05:17:34.747 2024.05.10 04:28:13.372 2024.05.10 04:28:13.638
60 5.0.1.1392 2024.04.29 7dbc2 F F 469 281 2024.05.09 17:07:16.649 2024.05.09 17:07:17.118 2024.05.09 16:17:42.204 2024.05.09 16:17:42.485
61 5.0.1.1386 2024.04.25 c0328 P P 469 266 2024.04.29 05:16:33.811 2024.04.29 05:16:34.280 2024.04.29 04:27:12.242 2024.04.29 04:27:12.508
62 5.0.1.1386 2024.04.20 80571 P P 438 282 2024.04.25 05:19:10.147 2024.04.25 05:19:10.585 2024.04.25 04:29:01.066 2024.04.25 04:29:01.348
63 5.0.1.1378 2024.04.07 5292b P E 469 4344 2024.04.20 05:38:51.768 2024.04.20 05:38:52.237 2024.04.20 04:32:51.191 2024.04.20 04:32:55.535
64 5.0.1.1346 2024.03.16 fe320 P P 422 265 2024.04.07 03:37:55.409 2024.04.07 03:37:55.831 2024.04.07 02:52:37.278 2024.04.07 02:52:37.543
65 5.0.1.1346 2024.03.02 da408 P P 405 265 2024.03.25 22:25:31.973 2024.03.25 22:25:32.378 2024.03.25 21:40:20.787 2024.03.25 21:40:21.052
66 5.0.1.1340 2024.02.17 08a71 P P 406 265 2024.03.25 23:55:14.388 2024.03.25 23:55:14.794 2024.03.25 23:10:08.078 2024.03.25 23:10:08.343
67 5.0.1.1325 2024.02.06 c98fb P E 406 4375 2024.03.26 02:26:42.324 2024.03.26 02:26:42.730 2024.03.26 01:25:43.559 2024.03.26 01:25:47.934
68 5.0.1.1325 2024.02.02 1d438 P E 421 4343 2024.03.26 07:44:04.323 2024.03.26 07:44:04.744 2024.03.26 06:42:10.731 2024.03.26 06:42:15.074
69 5.0.1.1325 2024.01.26 cffb6 P E 420 4359 2024.03.26 10:09:55.077 2024.03.26 10:09:55.497 2024.03.26 09:08:54.030 2024.03.26 09:08:58.389
70 5.0.1.1325 2024.01.26 d3810 P E 406 4359 2024.03.26 12:01:34.404 2024.03.26 12:01:34.810 2024.03.26 11:00:42.539 2024.03.26 11:00:46.898
71 5.0.1.1318 2024.01.21 a7ca3 P P 405 265 2024.03.26 13:30:35.712 2024.03.26 13:30:36.117 2024.03.26 12:45:30.823 2024.03.26 12:45:31.088
72 5.0.1.1318 2024.01.21 d429d P P 405 265 2024.03.26 15:12:12.753 2024.03.26 15:12:13.158 2024.03.26 14:27:10.570 2024.03.26 14:27:10.835
73 5.0.1.1318 2024.01.21 f1ab5 P P 421 265 2024.03.26 17:28:12.957 2024.03.26 17:28:13.378 2024.03.26 16:43:09.265 2024.03.26 16:43:09.530
74 5.0.1.1318 2024.01.20 46722 P P 421 265 2024.03.26 18:55:09.755 2024.03.26 18:55:10.176 2024.03.26 18:10:12.719 2024.03.26 18:10:12.984

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):