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-04-03 12:05:50.105
2025-04-03 12:05:50.105 act = <firebird.qa.plugin.Action object at [hex]>
2025-04-03 12:05:50.105
2025-04-03 12:05:50.105     @pytest.mark.version('>=3,<6')
2025-04-03 12:05:50.105     def test_1(act: Action):
2025-04-03 12:05:50.105         script = f"""
2025-04-03 12:05:50.105         create database '{act.db.dsn}' user '{act.db.user}'
2025-04-03 12:05:50.105           password '{act.db.password}' LENGTH 300
2025-04-03 12:05:50.105           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_09.F00')}' LENGTH 300
2025-04-03 12:05:50.105           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_09.F01')}' LENGTH 300
2025-04-03 12:05:50.105           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_09.F02')}' LENGTH 300
2025-04-03 12:05:50.105         ;
2025-04-03 12:05:50.105         set list on ;
2025-04-03 12:05:50.105         select
2025-04-03 12:05:50.105             cast(rdb$file_name as varchar(100)) db_file
2025-04-03 12:05:50.105             ,rdb$file_sequence
2025-04-03 12:05:50.105             ,rdb$file_start
2025-04-03 12:05:50.105             ,rdb$file_length
2025-04-03 12:05:50.105         from rdb$files ;
2025-04-03 12:05:50.106         """
2025-04-03 12:05:50.106         act.expected_stdout = expected_stdout
2025-04-03 12:05:50.106         act.isql(switches = ['-q'], input=script, connect_db=False, combine_output = True)
2025-04-03 12:05:50.106 >       assert act.clean_stdout == act.clean_expected_stdout
2025-04-03 12:05:50.106 E       assert
2025-04-03 12:05:50.106 E         + Statement	failed,	SQLSTATE	=	08006
2025-04-03 12:05:50.106 E         + Unable	to	complete	network	request	to	host	"localhost".
2025-04-03 12:05:50.106 E         + -Failed	to	establish	a	connection.
2025-04-03 12:05:50.106 E         - TMP_CREATE_DB_09.F00
2025-04-03 12:05:50.106 E         - RDB$FILE_SEQUENCE	1
2025-04-03 12:05:50.106 E         - RDB$FILE_START	301
2025-04-03 12:05:50.106 E         - RDB$FILE_LENGTH	300
2025-04-03 12:05:50.106 E         - TMP_CREATE_DB_09.F01
2025-04-03 12:05:50.106 E         - RDB$FILE_SEQUENCE	2
2025-04-03 12:05:50.106 E         - RDB$FILE_START	601
2025-04-03 12:05:50.106 E         - RDB$FILE_LENGTH	300
2025-04-03 12:05:50.106 E         - TMP_CREATE_DB_09.F02
2025-04-03 12:05:50.106 E         - RDB$FILE_SEQUENCE	3
2025-04-03 12:05:50.107 E         - RDB$FILE_START	901
2025-04-03 12:05:50.107 E         - RDB$FILE_LENGTH	300
2025-04-03 12:05:50.107
2025-04-03 12:05:50.107 tests\functional\database\create\test_09.py:56: AssertionError
3 #text
request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11863')
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 488 294 2025.06.29 11:10:18.224 2025.06.29 11:10:18.712 2025.06.29 10:08:20.578 2025.06.29 10:08:20.872
2 5.0.3.1657 2025.06.26 dcb8a P P 434 304 2025.06.27 11:10:58.204 2025.06.27 11:10:58.638 2025.06.27 10:08:58.364 2025.06.27 10:08:58.668
3 5.0.3.1657 2025.06.20 8b4d2 P P 417 298 2025.06.26 11:25:21.225 2025.06.26 11:25:21.642 2025.06.26 10:23:14.926 2025.06.26 10:23:15.224
4 5.0.3.1657 2025.06.19 4bd4c P P 438 299 2025.06.20 05:29:41.573 2025.06.20 05:29:42.011 2025.06.20 04:27:33.725 2025.06.20 04:27:34.024
5 5.0.3.1657 2025.06.11 dae6f P P 422 292 2025.06.19 11:01:03.264 2025.06.19 11:01:03.686 2025.06.19 09:58:57.793 2025.06.19 09:58:58.085
6 5.0.3.1657 2025.06.10 dbc92 P P 433 300 2025.06.11 08:47:27.937 2025.06.11 08:47:28.370 2025.06.11 07:44:55.131 2025.06.11 07:44:55.431
7 5.0.3.1656 2025.06.05 00512 P P 421 298 2025.06.10 10:02:43.637 2025.06.10 10:02:44.058 2025.06.10 09:00:00.282 2025.06.10 09:00:00.580
8 5.0.3.1656 2025.05.20 c4b11 P P 422 303 2025.06.03 09:49:34.195 2025.06.03 09:49:34.617 2025.06.03 08:48:02.870 2025.06.03 08:48:03.173
9 5.0.3.1652 2025.05.13 f51c6 P P 413 293 2025.05.21 06:30:32.668 2025.05.21 06:30:33.081 2025.05.21 05:29:17.734 2025.05.21 05:29:18.027
10 5.0.3.1651 2025.05.08 ee9d2 P E 426 4438 2025.05.13 06:43:13.381 2025.05.13 06:43:13.807 2025.05.13 05:28:21.511 2025.05.13 05:28:25.949
11 5.0.3.1651 2025.05.04 3d914 P E 426 4446 2025.05.09 04:32:16.359 2025.05.09 04:32:16.785 2025.05.09 03:17:19.546 2025.05.09 03:17:23.992
12 5.0.3.1651 2025.04.30 141ef P E 454 4425 2025.05.02 04:39:52.529 2025.05.02 04:39:52.983 2025.05.02 03:25:12.499 2025.05.02 03:25:16.924
13 5.0.3.1650 2025.04.30 6253f P E 443 4409 2025.05.01 04:38:55.046 2025.05.01 04:38:55.489 2025.05.01 03:24:09.303 2025.05.01 03:24:13.712
14 5.0.3.1650 2025.04.28 4cbff P E 421 4426 2025.04.30 04:37:56.151 2025.04.30 04:37:56.572 2025.04.30 03:23:22.228 2025.04.30 03:23:26.654
15 5.0.3.1649 2025.04.21 5b2d0 P E 457 4417 2025.04.26 10:11:56.262 2025.04.26 10:11:56.719 2025.04.26 08:56:23.153 2025.04.26 08:56:27.570
16 5.0.3.1648 2025.04.18 2f4c5 P P 424 318 2025.04.20 04:23:10.969 2025.04.20 04:23:11.393 2025.04.20 03:20:53.564 2025.04.20 03:20:53.882
17 5.0.3.1635 2025.04.03 f6bd1 P E 426 4278 2025.04.18 06:50:53.817 2025.04.18 06:50:54.243 2025.04.18 05:35:34.605 2025.04.18 05:35:38.883
18 5.0.3.1635 2025.03.31 22ec6 P E 459 4466 2025.04.03 09:56:41.693 2025.04.03 09:56:42.152 2025.04.03 08:41:00.607 2025.04.03 08:41:05.073
19 5.0.3.1633 2025.03.28 3123a P E 462 4255 2025.03.31 09:55:06.398 2025.03.31 09:55:06.860 2025.03.31 08:39:29.649 2025.03.31 08:39:33.904
20 5.0.3.1633 2025.03.27 e0fb8 P E 484 4499 2025.03.28 10:26:51.989 2025.03.28 10:26:52.473 2025.03.28 09:07:27.741 2025.03.28 09:07:32.240
21 5.0.3.1631 2025.03.25 bda65 P P 436 323 2025.03.27 10:07:22.528 2025.03.27 10:07:22.964 2025.03.27 09:01:23.955 2025.03.27 09:01:24.278
22 5.0.3.1631 2025.03.21 1925b P P 453 320 2025.03.25 06:41:25.984 2025.03.25 06:41:26.437 2025.03.25 05:35:16.921 2025.03.25 05:35:17.241
23 5.0.3.1629 2025.03.18 506d7 P P 417 309 2025.03.20 09:41:36.527 2025.03.20 09:41:36.944 2025.03.20 08:35:22.777 2025.03.20 08:35:23.086
24 5.0.3.1628 2025.03.14 16d05 P P 432 299 2025.03.18 09:35:44.541 2025.03.18 09:35:44.973 2025.03.18 08:31:01.473 2025.03.18 08:31:01.772
25 5.0.3.1627 2025.02.26 4e218 P P 435 323 2025.03.13 09:55:07.494 2025.03.13 09:55:07.929 2025.03.13 08:48:37.153 2025.03.13 08:48:37.476
26 5.0.3.1624 2025.02.25 dc3b2 P P 432 318 2025.02.26 15:27:17.892 2025.02.26 15:27:18.324 2025.02.26 14:21:31.918 2025.02.26 14:21:32.236
27 5.0.2.1615 2025.02.20 4a726 P E 444 4247 2025.02.25 08:41:24.450 2025.02.25 08:41:24.894 2025.02.25 07:23:47.961 2025.02.25 07:23:52.208
28 5.0.2.1615 2025.02.14 9cb76 P P 454 304 2025.02.15 04:08:58.742 2025.02.15 04:08:59.196 2025.02.15 03:05:15.362 2025.02.15 03:05:15.666
29 5.0.2.1577 2025.02.07 f50a2 P P 429 301 2025.02.14 06:21:36.260 2025.02.14 06:21:36.689 2025.02.14 05:19:03.817 2025.02.14 05:19:04.118
30 5.0.2.1577 2024.12.24 3c80e P P 431 312 2025.02.06 09:35:08.478 2025.02.06 09:35:08.909 2025.02.06 08:32:39.248 2025.02.06 08:32:39.560
31 5.0.2.1576 2024.12.17 646b0 P P 424 321 2024.12.24 09:18:11.621 2024.12.24 09:18:12.045 2024.12.24 08:15:53.607 2024.12.24 08:15:53.928
32 5.0.2.1575 2024.12.09 9af52 P P 430 317 2024.12.16 09:14:56.763 2024.12.16 09:14:57.193 2024.12.16 08:12:44.341 2024.12.16 08:12:44.658
33 5.0.2.1575 2024.12.08 63d39 P P 423 267 2024.12.09 15:04:44.289 2024.12.09 15:04:44.712 2024.12.09 14:07:30.892 2024.12.09 14:07:31.159
34 5.0.2.1571 2024.12.08 8d11a P P 386 269 2024.12.09 06:18:23.436 2024.12.09 06:18:23.822 2024.12.09 05:19:08.029 2024.12.09 05:19:08.298
35 5.0.2.1567 2024.12.07 b01a2 P P 390 280 2024.12.08 01:56:46.207 2024.12.08 01:56:46.597 2024.12.08 00:55:54.914 2024.12.08 00:55:55.194
36 5.0.2.1567 2024.12.02 6ae74 P P 412 273 2024.12.04 09:00:16.841 2024.12.04 09:00:17.253 2024.12.04 08:03:00.626 2024.12.04 08:03:00.899
37 5.0.2.1567 2024.11.26 56e63 P P 469 300 2024.11.30 09:05:57.453 2024.11.30 09:05:57.922 2024.11.30 08:04:18.499 2024.11.30 08:04:18.799
38 5.0.2.1567 2024.11.21 96f61 P P 430 312 2024.11.27 09:02:42.893 2024.11.27 09:02:43.323 2024.11.27 08:01:38.673 2024.11.27 08:01:38.985
39 5.0.2.1567 2024.11.18 e1289 P E 456 4460 2024.11.21 09:21:06.053 2024.11.21 09:21:06.509 2024.11.21 08:06:09.735 2024.11.21 08:06:14.195
40 5.0.2.1533 2024.10.23 0ec43 P P 424 316 2024.11.18 08:56:55.780 2024.11.18 08:56:56.204 2024.11.18 07:55:08.986 2024.11.18 07:55:09.302
41 5.0.2.1533 2024.10.22 8af7a P P 433 299 2024.10.23 09:04:09.718 2024.10.23 09:04:10.151 2024.10.23 08:03:00.373 2024.10.23 08:03:00.672
42 5.0.2.1532 2024.10.15 36dc0 P P 435 313 2024.10.22 15:06:17.936 2024.10.22 15:06:18.371 2024.10.22 14:05:08.056 2024.10.22 14:05:08.369
43 5.0.2.1518 2024.10.04 259ba P P 437 317 2024.10.15 09:00:17.778 2024.10.15 09:00:18.215 2024.10.15 07:59:24.821 2024.10.15 07:59:25.138
44 5.0.2.1518 2024.09.26 703cd P P 426 313 2024.10.03 09:05:12.051 2024.10.03 09:05:12.477 2024.10.03 08:03:55.816 2024.10.03 08:03:56.129
45 5.0.2.1489 2024.08.31 994a6 P E 453 4276 2024.09.26 09:24:13.590 2024.09.26 09:24:14.043 2024.09.26 08:08:43.599 2024.09.26 08:08:47.875
46 5.0.2.1476 2024.08.09 843ea P E 499 4455 2024.09.01 09:12:56.169 2024.09.01 09:12:56.668 2024.09.01 07:55:49.370 2024.09.01 07:55:53.825
47 5.0.1.1454 2024.08.08 30f9f P P 508 348 2024.08.09 08:53:44.160 2024.08.09 08:53:44.668 2024.08.09 07:52:46.437 2024.08.09 07:52:46.785
48 5.0.1.1453 2024.08.07 ebbc3 P P 554 355 2024.08.08 20:08:02.960 2024.08.08 20:08:03.514 2024.08.08 19:06:38.250 2024.08.08 19:06:38.605
49 5.0.1.1453 2024.08.06 1b9d0 P P 544 343 2024.08.07 08:22:50.161 2024.08.07 08:22:50.705 2024.08.07 07:26:40.121 2024.08.07 07:26:40.464
50 5.0.1.1453 2024.07.30 48044 P P 492 341 2024.08.03 08:20:50.697 2024.08.03 08:20:51.189 2024.08.03 07:24:32.496 2024.08.03 07:24:32.837
51 5.0.1.1453 2024.07.28 8d956 P P 489 347 2024.07.30 08:01:32.540 2024.07.30 08:01:33.029 2024.07.30 07:06:57.638 2024.07.30 07:06:57.985
52 5.0.1.1429 2024.07.19 8ee90 P P 487 360 2024.07.27 08:00:15.395 2024.07.27 08:00:15.882 2024.07.27 07:06:03.324 2024.07.27 07:06:03.684
53 5.0.1.1428 2024.07.15 00392 P P 505 345 2024.07.19 07:55:41.021 2024.07.19 07:55:41.526 2024.07.19 07:01:36.186 2024.07.19 07:01:36.531
54 5.0.1.1428 2024.06.30 67a31 P P 487 410 2024.07.15 08:07:08.182 2024.07.15 08:07:08.669 2024.07.15 07:11:52.745 2024.07.15 07:11:53.155
55 5.0.1.1415 2024.06.12 f8731 P P 486 345 2024.06.22 05:05:47.247 2024.06.22 05:05:47.733 2024.06.22 04:12:10.723 2024.06.22 04:12:11.068
56 5.0.1.1415 2024.06.11 31d74 P P 469 265 2024.06.11 23:35:54.577 2024.06.11 23:35:55.046 2024.06.11 22:45:51.364 2024.06.11 22:45:51.629
57 5.0.1.1401 2024.06.05 f9b76 P P 484 265 2024.06.11 04:26:47.461 2024.06.11 04:26:47.945 2024.06.11 03:36:28.557 2024.06.11 03:36:28.822
58 5.0.1.1398 2024.05.10 5e3ce P P 437 266 2024.05.25 05:21:38.291 2024.05.25 05:21:38.728 2024.05.25 04:31:41.889 2024.05.25 04:31:42.155
59 5.0.1.1397 2024.05.09 ee2ef P P 438 266 2024.05.10 05:17:33.872 2024.05.10 05:17:34.310 2024.05.10 04:28:13.106 2024.05.10 04:28:13.372
60 5.0.1.1392 2024.04.29 7dbc2 F F 469 282 2024.05.09 17:07:16.180 2024.05.09 17:07:16.649 2024.05.09 16:17:41.922 2024.05.09 16:17:42.204
61 5.0.1.1386 2024.04.25 c0328 P P 469 265 2024.04.29 05:16:33.342 2024.04.29 05:16:33.811 2024.04.29 04:27:11.977 2024.04.29 04:27:12.242
62 5.0.1.1386 2024.04.20 80571 P P 442 281 2024.04.25 05:19:09.705 2024.04.25 05:19:10.147 2024.04.25 04:29:00.785 2024.04.25 04:29:01.066
63 5.0.1.1378 2024.04.07 5292b P E 468 4360 2024.04.20 05:38:51.300 2024.04.20 05:38:51.768 2024.04.20 04:32:46.831 2024.04.20 04:32:51.191
64 5.0.1.1346 2024.03.16 fe320 P P 406 266 2024.04.07 03:37:55.003 2024.04.07 03:37:55.409 2024.04.07 02:52:37.012 2024.04.07 02:52:37.278
65 5.0.1.1346 2024.03.02 da408 P P 405 265 2024.03.25 22:25:31.567 2024.03.25 22:25:31.972 2024.03.25 21:40:20.521 2024.03.25 21:40:20.786
66 5.0.1.1340 2024.02.17 08a71 P P 405 264 2024.03.25 23:55:13.982 2024.03.25 23:55:14.387 2024.03.25 23:10:07.813 2024.03.25 23:10:08.077
67 5.0.1.1325 2024.02.06 c98fb P E 421 4390 2024.03.26 02:26:41.902 2024.03.26 02:26:42.323 2024.03.26 01:25:39.168 2024.03.26 01:25:43.558
68 5.0.1.1325 2024.02.02 1d438 P E 421 4374 2024.03.26 07:44:03.901 2024.03.26 07:44:04.322 2024.03.26 06:42:06.356 2024.03.26 06:42:10.730
69 5.0.1.1325 2024.01.26 cffb6 P E 406 4218 2024.03.26 10:09:54.670 2024.03.26 10:09:55.076 2024.03.26 09:08:49.811 2024.03.26 09:08:54.029
70 5.0.1.1325 2024.01.26 d3810 P E 421 4265 2024.03.26 12:01:33.982 2024.03.26 12:01:34.403 2024.03.26 11:00:38.273 2024.03.26 11:00:42.538
71 5.0.1.1318 2024.01.21 a7ca3 P P 421 264 2024.03.26 13:30:35.290 2024.03.26 13:30:35.711 2024.03.26 12:45:30.558 2024.03.26 12:45:30.822
72 5.0.1.1318 2024.01.21 d429d P P 405 264 2024.03.26 15:12:12.347 2024.03.26 15:12:12.752 2024.03.26 14:27:10.305 2024.03.26 14:27:10.569
73 5.0.1.1318 2024.01.21 f1ab5 P P 405 264 2024.03.26 17:28:12.551 2024.03.26 17:28:12.956 2024.03.26 16:43:09.000 2024.03.26 16:43:09.264
74 5.0.1.1318 2024.01.20 46722 P P 405 264 2024.03.26 18:55:09.349 2024.03.26 18:55:09.754 2024.03.26 18:10:12.454 2024.03.26 18:10:12.718

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):