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 setup with "firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
-Failed to establish a connection."
3 #text
request = <SubRequest 'act' for <Function test_1>>

    @pytest.fixture
    def isql_act_fixture(request: pytest.FixtureRequest) -> Action:
>       db: Database = request.getfixturevalue(db_fixture_name)

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

request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_12306')
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)

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

database = 'pytest'

    def create_database(database: str, *, user: str=None, password: str=None, role: str=None,
                        no_gc: bool=None, no_db_triggers: bool=None, dbkey_scope: DBKeyScope=None,
                        crypt_callback: iCryptKeyCallbackImpl=None, charset: str=None,
                        overwrite: bool=False, auth_plugin_list=None,
                        session_time_zone: str=None) -> Connection:
        """Creates new database.
    
        Arguments:
            database: DSN or Database configuration name.
            user: User name.
            password: User password.
            role: User role.
            no_gc: Do not perform garbage collection for this connection.
            no_db_triggers: Do not execute database triggers for this connection.
            dbkey_scope: DBKEY scope override for connection.
            crypt_callback: Callback that provides encryption key for the database.
            charset: Character set for connection.
            overwrite: Overwite the existing database.
            auth_plugin_list: List of authentication plugins override
            session_time_zone: Session time zone [Firebird 4]
    
        Hooks:
            Event `.ConnectionHook.ATTACHED`: Executed before `Connection` instance is
            returned. Hook must have signature::
    
                hook_func(connection: Connection) -> None
    
            Any value returned by hook is ignored.
        """
        db_config = driver_config.get_database(database)
        if db_config is None:
            db_config = driver_config.db_defaults
            db_config.database.value = database
            if db_config.server.value is None:
                srv_config = driver_config.server_defaults
            else:
                srv_config = driver_config.get_server(db_config.server.value)
                if srv_config is None:
                    raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
        else:
            if db_config.server.value is None:
                srv_config = driver_config.server_defaults
            else:
                srv_config = driver_config.get_server(db_config.server.value)
                if srv_config is None:
                    raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
        if user is None:
            user = db_config.user.value
            if user is None:
                user = srv_config.user.value
        if password is None:
            password = db_config.password.value
            if password is None:
                password = srv_config.password.value
        if role is None:
            role = db_config.role.value
        if charset is None:
            charset = db_config.charset.value
        if charset:
            charset = charset.upper()
        if auth_plugin_list is None:
            auth_plugin_list = db_config.auth_plugin_list.value
        if session_time_zone is None:
            session_time_zone = db_config.session_time_zone.value
        dsn = _connect_helper(db_config.dsn.value, srv_config.host.value, srv_config.port.value,
                              db_config.database.value, db_config.protocol.value)
        dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
                  sql_dialect=db_config.db_sql_dialect.value, timeout=db_config.timeout.value,
                  charset=charset, cache_size=db_config.cache_size.value,
                  no_linger=db_config.no_linger.value, utf8filename=db_config.utf8filename.value,
                  no_gc=no_gc, no_db_triggers=no_db_triggers, dbkey_scope=dbkey_scope,
                  dummy_packet_interval=db_config.dummy_packet_interval.value,
                  config=db_config.config.value, auth_plugin_list=auth_plugin_list,
                  session_time_zone=session_time_zone, set_bind=db_config.set_bind.value,
                  decfloat_round=db_config.decfloat_round.value,
                  decfloat_traps=db_config.decfloat_traps.value,
                  overwrite=overwrite, db_cache_size=db_config.db_cache_size.value,
                  forced_writes=db_config.forced_writes.value, page_size=db_config.page_size.value,
                  reserve_space=db_config.reserve_space.value, sweep_interval=db_config.sweep_interval.value,
                  db_sql_dialect=db_config.db_sql_dialect.value, db_charset=db_config.db_charset.value)
>       return __make_connection(True, dsn, db_config.utf8filename.value,
                                 dpb.get_buffer(for_create=True), db_config.sql_dialect.value,
                                 charset, crypt_callback)

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

create = True
dsn = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_12306\\test.fdb'
utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x01\x00\x00\x000\x04NONED\x04NONE\x04\x04\x00\x10\x00\x00A\x04\x01\x00\x00\x00D\x04NONE'
sql_dialect = 1, charset = 'NONE', crypt_callback = None

    def __make_connection(create: bool, dsn: str, utf8filename: bool, dpb: bytes,
                          sql_dialect: int, charset: str,
                          crypt_callback: iCryptKeyCallbackImpl) -> Connection:
        with a.get_api().master.get_dispatcher() as provider:
            if crypt_callback is not None:
                provider.set_dbcrypt_callback(crypt_callback)
            if create:
>               att = provider.create_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)

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

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_12306\\test.fdb'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x01\x00\x00\x000\x04NONED\x04NONE\x04\x04\x00\x10\x00\x00A\x04\x01\x00\x00\x00D\x04NONE'
encoding = 'utf-8'

    def create_database(self, filename: str, dpb: bytes, encoding: str = 'ascii') -> iAttachment:
        "Replaces `isc_create_database()`"
        result = self.vtable.createDatabase(self, self.status, filename.encode(encoding), len(dpb), dpb)
>       self._check()

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

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.26 dcb8a P P 582 399 2025.06.27 11:22:19.682 2025.06.27 11:22:20.264 2025.06.27 10:18:04.329 2025.06.27 10:18:04.728
2 5.0.3.1657 2025.06.20 8b4d2 P P 599 373 2025.06.26 11:36:51.836 2025.06.26 11:36:52.435 2025.06.26 10:32:17.031 2025.06.26 10:32:17.404
3 5.0.3.1657 2025.06.19 4bd4c P P 629 370 2025.06.20 05:40:54.089 2025.06.20 05:40:54.718 2025.06.20 04:36:27.529 2025.06.20 04:36:27.899
4 5.0.3.1657 2025.06.11 dae6f P P 600 355 2025.06.19 11:12:25.129 2025.06.19 11:12:25.729 2025.06.19 10:08:04.160 2025.06.19 10:08:04.515
5 5.0.3.1657 2025.06.10 dbc92 P P 575 374 2025.06.11 08:58:42.506 2025.06.11 08:58:43.081 2025.06.11 07:53:58.413 2025.06.11 07:53:58.787
6 5.0.3.1656 2025.06.05 00512 P P 571 375 2025.06.10 10:13:57.919 2025.06.10 10:13:58.490 2025.06.10 09:09:10.892 2025.06.10 09:09:11.267
7 5.0.3.1656 2025.05.20 c4b11 P P 581 370 2025.06.03 10:00:21.426 2025.06.03 10:00:22.007 2025.06.03 08:56:44.741 2025.06.03 08:56:45.111
8 5.0.3.1652 2025.05.13 f51c6 P P 578 362 2025.05.21 06:41:21.649 2025.05.21 06:41:22.227 2025.05.21 05:38:03.739 2025.05.21 05:38:04.101
9 5.0.3.1651 2025.05.08 ee9d2 P E 607 2224 2025.05.13 06:54:02.802 2025.05.13 06:54:03.409 2025.05.13 05:46:57.725 2025.05.13 05:46:59.949
10 5.0.3.1651 2025.05.04 3d914 P E 590 2232 2025.05.09 04:43:05.396 2025.05.09 04:43:05.986 2025.05.09 03:35:55.630 2025.05.09 03:35:57.862
11 5.0.3.1651 2025.04.30 141ef P E 571 2233 2025.05.02 04:50:38.309 2025.05.02 04:50:38.880 2025.05.02 03:43:48.543 2025.05.02 03:43:50.776
12 5.0.3.1650 2025.04.30 6253f P E 566 2429 2025.05.01 04:49:45.732 2025.05.01 04:49:46.298 2025.05.01 03:42:44.933 2025.05.01 03:42:47.362
13 5.0.3.1650 2025.04.28 4cbff P E 603 2443 2025.04.30 04:48:44.724 2025.04.30 04:48:45.327 2025.04.30 03:41:58.050 2025.04.30 03:42:00.493
14 5.0.3.1649 2025.04.21 5b2d0 P E 606 2231 2025.04.26 10:22:51.563 2025.04.26 10:22:52.169 2025.04.26 09:15:00.779 2025.04.26 09:15:03.010
15 5.0.3.1648 2025.04.18 2f4c5 P P 609 373 2025.04.20 04:34:00.914 2025.04.20 04:34:01.523 2025.04.20 03:29:41.586 2025.04.20 03:29:41.959
16 5.0.3.1635 2025.04.03 f6bd1 P E 577 2427 2025.04.18 07:01:42.959 2025.04.18 07:01:43.536 2025.04.18 05:54:09.533 2025.04.18 05:54:11.960
17 5.0.3.1635 2025.03.31 22ec6 P E 583 2424 2025.04.03 10:07:36.054 2025.04.03 10:07:36.637 2025.04.03 08:59:34.025 2025.04.03 08:59:36.449
18 5.0.3.1633 2025.03.28 3123a P E 576 2423 2025.03.31 10:05:58.896 2025.03.31 10:05:59.472 2025.03.31 08:58:03.115 2025.03.31 08:58:05.538
19 5.0.3.1633 2025.03.27 e0fb8 P E 623 2424 2025.03.28 10:38:02.911 2025.03.28 10:38:03.534 2025.03.28 09:26:01.116 2025.03.28 09:26:03.540
20 5.0.3.1631 2025.03.25 bda65 P P 614 404 2025.03.27 10:18:33.521 2025.03.27 10:18:34.135 2025.03.27 09:10:23.568 2025.03.27 09:10:23.972
21 5.0.3.1631 2025.03.21 1925b P P 614 405 2025.03.25 06:52:41.739 2025.03.25 06:52:42.353 2025.03.25 05:44:28.287 2025.03.25 05:44:28.692
22 5.0.3.1629 2025.03.18 506d7 P P 615 376 2025.03.20 09:52:37.265 2025.03.20 09:52:37.880 2025.03.20 08:44:34.860 2025.03.20 08:44:35.236
23 5.0.3.1628 2025.03.14 16d05 P P 586 421 2025.03.18 09:46:35.369 2025.03.18 09:46:35.955 2025.03.18 08:40:01.650 2025.03.18 08:40:02.071
24 5.0.3.1627 2025.02.26 4e218 P P 615 372 2025.03.13 10:06:22.692 2025.03.13 10:06:23.307 2025.03.13 08:57:40.544 2025.03.13 08:57:40.916
25 5.0.3.1624 2025.02.25 dc3b2 P P 620 400 2025.02.26 15:38:30.435 2025.02.26 15:38:31.055 2025.02.26 14:30:44.542 2025.02.26 14:30:44.942
26 5.0.2.1615 2025.02.20 4a726 P E 578 2226 2025.02.25 08:52:14.631 2025.02.25 08:52:15.209 2025.02.25 07:42:14.937 2025.02.25 07:42:17.163
27 5.0.2.1615 2025.02.14 9cb76 P P 580 385 2025.02.15 04:19:48.697 2025.02.15 04:19:49.277 2025.02.15 03:14:08.845 2025.02.15 03:14:09.230
28 5.0.2.1577 2025.02.07 f50a2 P P 582 376 2025.02.14 06:32:31.779 2025.02.14 06:32:32.361 2025.02.14 05:27:55.905 2025.02.14 05:27:56.281
29 5.0.2.1577 2024.12.24 3c80e P P 602 374 2025.02.06 09:46:42.401 2025.02.06 09:46:43.003 2025.02.06 08:41:30.028 2025.02.06 08:41:30.402
30 5.0.2.1576 2024.12.17 646b0 P P 617 390 2024.12.24 09:29:13.043 2024.12.24 09:29:13.660 2024.12.24 08:24:39.590 2024.12.24 08:24:39.980
31 5.0.2.1575 2024.12.09 9af52 P P 578 386 2024.12.16 09:25:51.995 2024.12.16 09:25:52.573 2024.12.16 08:21:32.490 2024.12.16 08:21:32.876
32 5.0.2.1575 2024.12.08 63d39 P P 531 326 2024.12.09 15:14:04.111 2024.12.09 15:14:04.642 2024.12.09 14:14:47.266 2024.12.09 14:14:47.592
33 5.0.2.1571 2024.12.08 8d11a P P 532 330 2024.12.09 06:27:47.415 2024.12.09 06:27:47.947 2024.12.09 05:26:27.798 2024.12.09 05:26:28.128
34 5.0.2.1567 2024.12.07 b01a2 P P 541 308 2024.12.08 02:06:28.557 2024.12.08 02:06:29.098 2024.12.08 01:03:19.828 2024.12.08 01:03:20.136
35 5.0.2.1567 2024.12.02 6ae74 P P 511 323 2024.12.04 09:09:37.340 2024.12.04 09:09:37.851 2024.12.04 08:10:20.035 2024.12.04 08:10:20.358
36 5.0.2.1567 2024.11.26 56e63 P P 579 374 2024.11.30 09:15:54.806 2024.11.30 09:15:55.385 2024.11.30 08:12:12.906 2024.11.30 08:12:13.280
37 5.0.2.1567 2024.11.21 96f61 P P 579 379 2024.11.27 09:12:35.374 2024.11.27 09:12:35.953 2024.11.27 08:09:34.239 2024.11.27 08:09:34.618
38 5.0.2.1567 2024.11.18 e1289 P E 576 2433 2024.11.21 09:31:00.861 2024.11.21 09:31:01.437 2024.11.21 08:24:34.746 2024.11.21 08:24:37.179
39 5.0.2.1533 2024.10.23 0ec43 P P 589 392 2024.11.18 09:06:59.859 2024.11.18 09:07:00.448 2024.11.18 08:03:06.563 2024.11.18 08:03:06.955
40 5.0.2.1533 2024.10.22 8af7a P P 594 410 2024.10.23 09:14:12.519 2024.10.23 09:14:13.113 2024.10.23 08:11:04.656 2024.10.23 08:11:05.066
41 5.0.2.1532 2024.10.15 36dc0 P P 614 377 2024.10.22 15:16:25.340 2024.10.22 15:16:25.954 2024.10.22 14:13:07.430 2024.10.22 14:13:07.807
42 5.0.2.1518 2024.10.04 259ba P P 591 403 2024.10.15 09:10:19.477 2024.10.15 09:10:20.068 2024.10.15 08:07:26.814 2024.10.15 08:07:27.217
43 5.0.2.1518 2024.09.26 703cd P P 582 395 2024.10.03 09:15:09.777 2024.10.03 09:15:10.359 2024.10.03 08:11:54.758 2024.10.03 08:11:55.153
44 5.0.2.1489 2024.08.31 994a6 P E 620 2416 2024.09.26 09:34:24.298 2024.09.26 09:34:24.918 2024.09.26 08:27:07.827 2024.09.26 08:27:10.243
45 5.0.2.1476 2024.08.09 843ea P E 690 2469 2024.09.01 09:21:52.066 2024.09.01 09:21:52.756 2024.09.01 08:14:08.914 2024.09.01 08:14:11.383
46 5.0.1.1454 2024.08.08 30f9f P P 720 421 2024.08.09 09:02:51.144 2024.08.09 09:02:51.864 2024.08.09 07:59:40.739 2024.08.09 07:59:41.160
47 5.0.1.1453 2024.08.07 ebbc3 P P 654 421 2024.08.08 20:17:10.122 2024.08.08 20:17:10.776 2024.08.08 19:13:28.149 2024.08.08 19:13:28.570
48 5.0.1.1453 2024.08.06 1b9d0 P P 479 312 2024.08.07 08:30:48.294 2024.08.07 08:30:48.773 2024.08.07 07:32:48.097 2024.08.07 07:32:48.409
49 5.0.1.1453 2024.07.30 48044 P P 504 295 2024.08.03 08:29:44.455 2024.08.03 08:29:44.959 2024.08.03 07:31:37.211 2024.08.03 07:31:37.506
50 5.0.1.1453 2024.07.28 8d956 P P 469 301 2024.07.30 08:09:24.465 2024.07.30 08:09:24.934 2024.07.30 07:12:59.619 2024.07.30 07:12:59.920
51 5.0.1.1429 2024.07.19 8ee90 P P 468 314 2024.07.27 08:08:01.533 2024.07.27 08:08:02.001 2024.07.27 07:12:08.408 2024.07.27 07:12:08.722
52 5.0.1.1428 2024.07.15 00392 P P 539 322 2024.07.19 08:03:28.989 2024.07.19 08:03:29.528 2024.07.19 07:07:35.048 2024.07.19 07:07:35.370
53 5.0.1.1428 2024.06.30 67a31 P P 521 308 2024.07.15 08:16:01.640 2024.07.15 08:16:02.161 2024.07.15 07:18:48.369 2024.07.15 07:18:48.677
54 5.0.1.1415 2024.06.12 f8731 P P 474 304 2024.06.22 05:13:21.015 2024.06.22 05:13:21.489 2024.06.22 04:18:02.316 2024.06.22 04:18:02.620
55 5.0.1.1415 2024.06.11 31d74 P P 422 234 2024.06.11 23:43:17.646 2024.06.11 23:43:18.068 2024.06.11 22:51:09.245 2024.06.11 22:51:09.479
56 5.0.1.1401 2024.06.05 f9b76 P P 453 219 2024.06.11 04:34:12.447 2024.06.11 04:34:12.900 2024.06.11 03:41:49.629 2024.06.11 03:41:49.848
57 5.0.1.1398 2024.05.10 5e3ce P P 453 218 2024.05.25 05:28:57.295 2024.05.25 05:28:57.748 2024.05.25 04:37:00.338 2024.05.25 04:37:00.556
58 5.0.1.1397 2024.05.09 ee2ef P P 438 219 2024.05.10 05:24:54.377 2024.05.10 05:24:54.815 2024.05.10 04:33:29.755 2024.05.10 04:33:29.974
59 5.0.1.1392 2024.04.29 7dbc2 P P 438 235 2024.05.09 17:14:42.103 2024.05.09 17:14:42.541 2024.05.09 16:22:59.753 2024.05.09 16:22:59.988
60 5.0.1.1386 2024.04.25 c0328 P P 438 219 2024.04.29 05:23:54.506 2024.04.29 05:23:54.944 2024.04.29 04:32:34.797 2024.04.29 04:32:35.016
61 5.0.1.1386 2024.04.20 80571 P P 426 235 2024.04.25 05:26:29.979 2024.04.25 05:26:30.405 2024.04.25 04:34:19.254 2024.04.25 04:34:19.489
62 5.0.1.1378 2024.04.07 5292b P E 1438 2297 2024.04.20 05:46:12.581 2024.04.20 05:46:14.019 2024.04.20 04:50:12.497 2024.04.20 04:50:14.794
63 5.0.1.1346 2024.03.16 fe320 P P 390 203 2024.04.07 03:44:27.500 2024.04.07 03:44:27.890 2024.04.07 02:57:36.283 2024.04.07 02:57:36.486
64 5.0.1.1346 2024.03.02 da408 P P 389 202 2024.03.25 22:32:04.172 2024.03.25 22:32:04.561 2024.03.25 21:45:20.351 2024.03.25 21:45:20.553
65 5.0.1.1340 2024.02.17 08a71 P P 405 202 2024.03.26 00:01:48.121 2024.03.26 00:01:48.526 2024.03.25 23:15:04.392 2024.03.25 23:15:04.594
66 5.0.1.1325 2024.02.06 c98fb P E 390 2172 2024.03.26 02:33:14.773 2024.03.26 02:33:15.163 2024.03.26 01:43:03.019 2024.03.26 01:43:05.191
67 5.0.1.1325 2024.02.02 1d438 P E 390 2171 2024.03.26 07:50:40.210 2024.03.26 07:50:40.600 2024.03.26 06:59:34.457 2024.03.26 06:59:36.628
68 5.0.1.1325 2024.01.26 cffb6 P E 389 2187 2024.03.26 10:16:25.869 2024.03.26 10:16:26.258 2024.03.26 09:26:14.689 2024.03.26 09:26:16.876
69 5.0.1.1325 2024.01.26 d3810 P E 390 2312 2024.03.26 12:08:07.963 2024.03.26 12:08:08.353 2024.03.26 11:18:04.058 2024.03.26 11:18:06.370
70 5.0.1.1318 2024.01.21 a7ca3 P P 390 218 2024.03.26 13:37:09.317 2024.03.26 13:37:09.707 2024.03.26 12:50:31.201 2024.03.26 12:50:31.419
71 5.0.1.1318 2024.01.21 d429d P P 390 218 2024.03.26 15:18:45.529 2024.03.26 15:18:45.919 2024.03.26 14:32:10.712 2024.03.26 14:32:10.930
72 5.0.1.1318 2024.01.21 f1ab5 P P 390 218 2024.03.26 17:34:44.860 2024.03.26 17:34:45.250 2024.03.26 16:48:07.063 2024.03.26 16:48:07.281
73 5.0.1.1318 2024.01.20 46722 P P 389 218 2024.03.26 19:01:43.062 2024.03.26 19:01:43.451 2024.03.26 18:15:12.048 2024.03.26 18:15:12.266

Elapsed time, ms. Chart for last 73 runs:

Last commits information (all timestamps in UTC):