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.103
2025-04-03 12:05:50.103 act = <firebird.qa.plugin.Action object at [hex]>
2025-04-03 12:05:50.103
2025-04-03 12:05:50.103     @pytest.mark.version('>=3,<6')
2025-04-03 12:05:50.103     def test_1(act: Action):
2025-04-03 12:05:50.103         script = f"""
2025-04-03 12:05:50.103         create database '{act.db.dsn}' user '{act.db.user}'
2025-04-03 12:05:50.103           password '{act.db.password}' LENGTH 300
2025-04-03 12:05:50.103           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_08.F00')}' LENGTH 300
2025-04-03 12:05:50.103         ;
2025-04-03 12:05:50.103         set list on ;
2025-04-03 12:05:50.104         select
2025-04-03 12:05:50.104             cast(rdb$file_name as varchar(100)) db_file
2025-04-03 12:05:50.104             ,rdb$file_sequence
2025-04-03 12:05:50.104             ,rdb$file_start
2025-04-03 12:05:50.104             ,rdb$file_length
2025-04-03 12:05:50.104         from rdb$files ;
2025-04-03 12:05:50.104         """
2025-04-03 12:05:50.104         act.expected_stdout = expected_stdout
2025-04-03 12:05:50.104         act.isql(switches = ['-q'], input=script, connect_db=False, combine_output = True)
2025-04-03 12:05:50.104 >       assert act.clean_stdout == act.clean_expected_stdout
2025-04-03 12:05:50.104 E       assert
2025-04-03 12:05:50.104 E         + Statement	failed,	SQLSTATE	=	08006
2025-04-03 12:05:50.104 E         + Unable	to	complete	network	request	to	host	"localhost".
2025-04-03 12:05:50.104 E         + -Failed	to	establish	a	connection.
2025-04-03 12:05:50.104 E         - TMP_CREATE_DB_08.F00
2025-04-03 12:05:50.104 E         - RDB$FILE_SEQUENCE	1
2025-04-03 12:05:50.104 E         - RDB$FILE_START	301
2025-04-03 12:05:50.104 E         - RDB$FILE_LENGTH	300
2025-04-03 12:05:50.104
2025-04-03 12:05:50.104 tests\functional\database\create\test_08.py:46: AssertionError
3 #text
request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11862')
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.1657 2025.06.20 8b4d2 P P 462 298 2025.06.26 11:25:20.763 2025.06.26 11:25:21.225 2025.06.26 10:23:14.628 2025.06.26 10:23:14.926
2 5.0.3.1657 2025.06.19 4bd4c P P 443 294 2025.06.20 05:29:41.130 2025.06.20 05:29:41.573 2025.06.20 04:27:33.431 2025.06.20 04:27:33.725
3 5.0.3.1657 2025.06.11 dae6f P P 419 311 2025.06.19 11:01:02.845 2025.06.19 11:01:03.264 2025.06.19 09:58:57.482 2025.06.19 09:58:57.793
4 5.0.3.1657 2025.06.10 dbc92 P P 460 305 2025.06.11 08:47:27.477 2025.06.11 08:47:27.937 2025.06.11 07:44:54.826 2025.06.11 07:44:55.131
5 5.0.3.1656 2025.06.05 00512 P P 416 288 2025.06.10 10:02:43.221 2025.06.10 10:02:43.637 2025.06.10 08:59:59.994 2025.06.10 09:00:00.282
6 5.0.3.1656 2025.05.20 c4b11 P P 445 314 2025.06.03 09:49:33.750 2025.06.03 09:49:34.195 2025.06.03 08:48:02.556 2025.06.03 08:48:02.870
7 5.0.3.1652 2025.05.13 f51c6 P P 445 292 2025.05.21 06:30:32.223 2025.05.21 06:30:32.668 2025.05.21 05:29:17.442 2025.05.21 05:29:17.734
8 5.0.3.1651 2025.05.08 ee9d2 P E 418 4447 2025.05.13 06:43:12.963 2025.05.13 06:43:13.381 2025.05.13 05:28:17.064 2025.05.13 05:28:21.511
9 5.0.3.1651 2025.05.04 3d914 P E 410 4439 2025.05.09 04:32:15.949 2025.05.09 04:32:16.359 2025.05.09 03:17:15.107 2025.05.09 03:17:19.546
10 5.0.3.1651 2025.04.30 141ef P E 448 4419 2025.05.02 04:39:52.081 2025.05.02 04:39:52.529 2025.05.02 03:25:08.080 2025.05.02 03:25:12.499
11 5.0.3.1650 2025.04.30 6253f P E 413 4235 2025.05.01 04:38:54.633 2025.05.01 04:38:55.046 2025.05.01 03:24:05.068 2025.05.01 03:24:09.303
12 5.0.3.1650 2025.04.28 4cbff P E 422 4433 2025.04.30 04:37:55.729 2025.04.30 04:37:56.151 2025.04.30 03:23:17.795 2025.04.30 03:23:22.228
13 5.0.3.1649 2025.04.21 5b2d0 P E 423 4424 2025.04.26 10:11:55.839 2025.04.26 10:11:56.262 2025.04.26 08:56:18.729 2025.04.26 08:56:23.153
14 5.0.3.1648 2025.04.18 2f4c5 P P 418 300 2025.04.20 04:23:10.551 2025.04.20 04:23:10.969 2025.04.20 03:20:53.264 2025.04.20 03:20:53.564
15 5.0.3.1635 2025.04.03 f6bd1 P E 444 4437 2025.04.18 06:50:53.373 2025.04.18 06:50:53.817 2025.04.18 05:35:30.168 2025.04.18 05:35:34.605
16 5.0.3.1635 2025.03.31 22ec6 P E 420 4422 2025.04.03 09:56:41.273 2025.04.03 09:56:41.693 2025.04.03 08:40:56.185 2025.04.03 08:41:00.607
17 5.0.3.1633 2025.03.28 3123a P E 454 4421 2025.03.31 09:55:05.944 2025.03.31 09:55:06.398 2025.03.31 08:39:25.228 2025.03.31 08:39:29.649
18 5.0.3.1633 2025.03.27 e0fb8 P E 466 4473 2025.03.28 10:26:51.523 2025.03.28 10:26:51.989 2025.03.28 09:07:23.268 2025.03.28 09:07:27.741
19 5.0.3.1631 2025.03.25 bda65 P P 454 325 2025.03.27 10:07:22.074 2025.03.27 10:07:22.528 2025.03.27 09:01:23.630 2025.03.27 09:01:23.955
20 5.0.3.1631 2025.03.21 1925b P P 442 310 2025.03.25 06:41:25.542 2025.03.25 06:41:25.984 2025.03.25 05:35:16.611 2025.03.25 05:35:16.921
21 5.0.3.1629 2025.03.18 506d7 P P 418 313 2025.03.20 09:41:36.109 2025.03.20 09:41:36.527 2025.03.20 08:35:22.464 2025.03.20 08:35:22.777
22 5.0.3.1628 2025.03.14 16d05 P P 471 307 2025.03.18 09:35:44.070 2025.03.18 09:35:44.541 2025.03.18 08:31:01.166 2025.03.18 08:31:01.473
23 5.0.3.1627 2025.02.26 4e218 P P 482 320 2025.03.13 09:55:07.012 2025.03.13 09:55:07.494 2025.03.13 08:48:36.833 2025.03.13 08:48:37.153
24 5.0.3.1624 2025.02.25 dc3b2 P P 467 313 2025.02.26 15:27:17.425 2025.02.26 15:27:17.892 2025.02.26 14:21:31.605 2025.02.26 14:21:31.918
25 5.0.2.1615 2025.02.20 4a726 P E 425 4446 2025.02.25 08:41:24.025 2025.02.25 08:41:24.450 2025.02.25 07:23:43.515 2025.02.25 07:23:47.961
26 5.0.2.1615 2025.02.14 9cb76 P P 451 301 2025.02.15 04:08:58.291 2025.02.15 04:08:58.742 2025.02.15 03:05:15.061 2025.02.15 03:05:15.362
27 5.0.2.1577 2025.02.07 f50a2 P P 452 307 2025.02.14 06:21:35.808 2025.02.14 06:21:36.260 2025.02.14 05:19:03.510 2025.02.14 05:19:03.817
28 5.0.2.1577 2024.12.24 3c80e P P 426 308 2025.02.06 09:35:08.052 2025.02.06 09:35:08.478 2025.02.06 08:32:38.940 2025.02.06 08:32:39.248
29 5.0.2.1576 2024.12.17 646b0 P P 429 308 2024.12.24 09:18:11.192 2024.12.24 09:18:11.621 2024.12.24 08:15:53.299 2024.12.24 08:15:53.607
30 5.0.2.1575 2024.12.09 9af52 P P 420 308 2024.12.16 09:14:56.343 2024.12.16 09:14:56.763 2024.12.16 08:12:44.033 2024.12.16 08:12:44.341
31 5.0.2.1575 2024.12.08 63d39 P P 387 258 2024.12.09 15:04:43.902 2024.12.09 15:04:44.289 2024.12.09 14:07:30.634 2024.12.09 14:07:30.892
32 5.0.2.1571 2024.12.08 8d11a P P 392 269 2024.12.09 06:18:23.044 2024.12.09 06:18:23.436 2024.12.09 05:19:07.760 2024.12.09 05:19:08.029
33 5.0.2.1567 2024.12.07 b01a2 P P 380 255 2024.12.08 01:56:45.827 2024.12.08 01:56:46.207 2024.12.08 00:55:54.659 2024.12.08 00:55:54.914
34 5.0.2.1567 2024.12.02 6ae74 P P 383 258 2024.12.04 09:00:16.458 2024.12.04 09:00:16.841 2024.12.04 08:03:00.368 2024.12.04 08:03:00.626
35 5.0.2.1567 2024.11.26 56e63 P P 421 310 2024.11.30 09:05:57.032 2024.11.30 09:05:57.453 2024.11.30 08:04:18.189 2024.11.30 08:04:18.499
36 5.0.2.1567 2024.11.21 96f61 P P 453 307 2024.11.27 09:02:42.440 2024.11.27 09:02:42.893 2024.11.27 08:01:38.366 2024.11.27 08:01:38.673
37 5.0.2.1567 2024.11.18 e1289 P E 457 4421 2024.11.21 09:21:05.596 2024.11.21 09:21:06.053 2024.11.21 08:06:05.314 2024.11.21 08:06:09.735
38 5.0.2.1533 2024.10.23 0ec43 P P 434 308 2024.11.18 08:56:55.346 2024.11.18 08:56:55.780 2024.11.18 07:55:08.678 2024.11.18 07:55:08.986
39 5.0.2.1533 2024.10.22 8af7a P P 453 307 2024.10.23 09:04:09.265 2024.10.23 09:04:09.718 2024.10.23 08:03:00.066 2024.10.23 08:03:00.373
40 5.0.2.1532 2024.10.15 36dc0 P P 453 311 2024.10.22 15:06:17.483 2024.10.22 15:06:17.936 2024.10.22 14:05:07.745 2024.10.22 14:05:08.056
41 5.0.2.1518 2024.10.04 259ba P P 427 306 2024.10.15 09:00:17.351 2024.10.15 09:00:17.778 2024.10.15 07:59:24.515 2024.10.15 07:59:24.821
42 5.0.2.1518 2024.09.26 703cd P P 423 305 2024.10.03 09:05:11.628 2024.10.03 09:05:12.051 2024.10.03 08:03:55.511 2024.10.03 08:03:55.816
43 5.0.2.1489 2024.08.31 994a6 P E 426 4444 2024.09.26 09:24:13.164 2024.09.26 09:24:13.590 2024.09.26 08:08:39.155 2024.09.26 08:08:43.599
44 5.0.2.1476 2024.08.09 843ea P E 500 4442 2024.09.01 09:12:55.669 2024.09.01 09:12:56.169 2024.09.01 07:55:44.928 2024.09.01 07:55:49.370
45 5.0.1.1454 2024.08.08 30f9f P P 485 340 2024.08.09 08:53:43.675 2024.08.09 08:53:44.160 2024.08.09 07:52:46.097 2024.08.09 07:52:46.437
46 5.0.1.1453 2024.08.07 ebbc3 P P 500 335 2024.08.08 20:08:02.460 2024.08.08 20:08:02.960 2024.08.08 19:06:37.915 2024.08.08 19:06:38.250
47 5.0.1.1453 2024.08.06 1b9d0 P P 494 376 2024.08.07 08:22:49.667 2024.08.07 08:22:50.161 2024.08.07 07:26:39.745 2024.08.07 07:26:40.121
48 5.0.1.1453 2024.07.30 48044 P P 495 353 2024.08.03 08:20:50.202 2024.08.03 08:20:50.697 2024.08.03 07:24:32.143 2024.08.03 07:24:32.496
49 5.0.1.1453 2024.07.28 8d956 P P 501 381 2024.07.30 08:01:32.039 2024.07.30 08:01:32.540 2024.07.30 07:06:57.257 2024.07.30 07:06:57.638
50 5.0.1.1429 2024.07.19 8ee90 P P 540 344 2024.07.27 08:00:14.855 2024.07.27 08:00:15.395 2024.07.27 07:06:02.980 2024.07.27 07:06:03.324
51 5.0.1.1428 2024.07.15 00392 P P 485 349 2024.07.19 07:55:40.536 2024.07.19 07:55:41.021 2024.07.19 07:01:35.837 2024.07.19 07:01:36.186
52 5.0.1.1428 2024.06.30 67a31 P P 495 347 2024.07.15 08:07:07.687 2024.07.15 08:07:08.182 2024.07.15 07:11:52.398 2024.07.15 07:11:52.745
53 5.0.1.1415 2024.06.12 f8731 P P 485 343 2024.06.22 05:05:46.762 2024.06.22 05:05:47.247 2024.06.22 04:12:10.380 2024.06.22 04:12:10.723
54 5.0.1.1415 2024.06.11 31d74 P P 453 266 2024.06.11 23:35:54.124 2024.06.11 23:35:54.577 2024.06.11 22:45:51.098 2024.06.11 22:45:51.364
55 5.0.1.1401 2024.06.05 f9b76 P P 485 282 2024.06.11 04:26:46.976 2024.06.11 04:26:47.461 2024.06.11 03:36:28.275 2024.06.11 03:36:28.557
56 5.0.1.1398 2024.05.10 5e3ce P P 438 265 2024.05.25 05:21:37.853 2024.05.25 05:21:38.291 2024.05.25 04:31:41.624 2024.05.25 04:31:41.889
57 5.0.1.1397 2024.05.09 ee2ef P P 469 281 2024.05.10 05:17:33.403 2024.05.10 05:17:33.872 2024.05.10 04:28:12.825 2024.05.10 04:28:13.106
58 5.0.1.1392 2024.04.29 7dbc2 F F 469 281 2024.05.09 17:07:15.711 2024.05.09 17:07:16.180 2024.05.09 16:17:41.641 2024.05.09 16:17:41.922
59 5.0.1.1386 2024.04.25 c0328 P P 453 282 2024.04.29 05:16:32.889 2024.04.29 05:16:33.342 2024.04.29 04:27:11.695 2024.04.29 04:27:11.977
60 5.0.1.1386 2024.04.20 80571 P P 424 266 2024.04.25 05:19:09.281 2024.04.25 05:19:09.705 2024.04.25 04:29:00.519 2024.04.25 04:29:00.785
61 5.0.1.1378 2024.04.07 5292b P E 454 4344 2024.04.20 05:38:50.846 2024.04.20 05:38:51.300 2024.04.20 04:32:42.487 2024.04.20 04:32:46.831
62 5.0.1.1346 2024.03.16 fe320 P P 422 266 2024.04.07 03:37:54.581 2024.04.07 03:37:55.003 2024.04.07 02:52:36.746 2024.04.07 02:52:37.012
63 5.0.1.1346 2024.03.02 da408 P P 421 264 2024.03.25 22:25:31.145 2024.03.25 22:25:31.566 2024.03.25 21:40:20.256 2024.03.25 21:40:20.520
64 5.0.1.1340 2024.02.17 08a71 P P 405 265 2024.03.25 23:55:13.576 2024.03.25 23:55:13.981 2024.03.25 23:10:07.547 2024.03.25 23:10:07.812
65 5.0.1.1325 2024.02.06 c98fb P E 405 4374 2024.03.26 02:26:41.496 2024.03.26 02:26:41.901 2024.03.26 01:25:34.793 2024.03.26 01:25:39.167
66 5.0.1.1325 2024.02.02 1d438 P E 437 4391 2024.03.26 07:44:03.463 2024.03.26 07:44:03.900 2024.03.26 06:42:01.964 2024.03.26 06:42:06.355
67 5.0.1.1325 2024.01.26 cffb6 P E 405 4344 2024.03.26 10:09:54.264 2024.03.26 10:09:54.669 2024.03.26 09:08:45.466 2024.03.26 09:08:49.810
68 5.0.1.1325 2024.01.26 d3810 P E 405 4390 2024.03.26 12:01:33.576 2024.03.26 12:01:33.981 2024.03.26 11:00:33.882 2024.03.26 11:00:38.272
69 5.0.1.1318 2024.01.21 a7ca3 P P 405 265 2024.03.26 13:30:34.884 2024.03.26 13:30:35.289 2024.03.26 12:45:30.292 2024.03.26 12:45:30.557
70 5.0.1.1318 2024.01.21 d429d P P 405 265 2024.03.26 15:12:11.941 2024.03.26 15:12:12.346 2024.03.26 14:27:10.039 2024.03.26 14:27:10.304
71 5.0.1.1318 2024.01.21 f1ab5 P P 405 265 2024.03.26 17:28:12.145 2024.03.26 17:28:12.550 2024.03.26 16:43:08.734 2024.03.26 16:43:08.999
72 5.0.1.1318 2024.01.20 46722 P P 406 265 2024.03.26 18:55:08.942 2024.03.26 18:55:09.348 2024.03.26 18:10:12.188 2024.03.26 18:10:12.453

Elapsed time, ms. Chart for last 72 runs:

Last commits information (all timestamps in UTC):