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:2696: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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

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:tmp_fd0fa8a3_alias', utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey0\x04NONED\x04NONED\x04NONE'
sql_dialect = 3, 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:tmp_fd0fa8a3_alias'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey0\x04NONED\x04NONED\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 4.0.6.3215 2025.06.25 6461d P E 729 2469 2025.06.26 08:12:35.777 2025.06.26 08:12:36.506 2025.06.26 07:08:40.453 2025.06.26 07:08:42.922
2 4.0.6.3214 2025.06.21 e11f6 P P 733 465 2025.06.25 12:51:41.499 2025.06.25 12:51:42.232 2025.06.25 11:49:09.995 2025.06.25 11:49:10.460
3 4.0.6.3213 2025.06.14 f015c P P 744 473 2025.06.21 07:52:18.571 2025.06.21 07:52:19.315 2025.06.21 06:49:29.257 2025.06.21 06:49:29.730
4 4.0.6.3212 2025.06.11 bc50d P P 834 439 2025.06.14 08:19:58.763 2025.06.14 08:19:59.597 2025.06.14 07:16:31.543 2025.06.14 07:16:31.982
5 4.0.6.3208 2025.06.10 19fe3 P P 736 467 2025.06.11 06:46:53.062 2025.06.11 06:46:53.798 2025.06.11 05:44:30.707 2025.06.11 05:44:31.174
6 4.0.6.3207 2025.06.07 205ff P P 790 483 2025.06.10 06:48:20.025 2025.06.10 06:48:20.815 2025.06.10 05:45:09.373 2025.06.10 05:45:09.856
7 4.0.6.3206 2025.05.22 d7d10 P P 735 442 2025.06.06 06:41:54.701 2025.06.06 06:41:55.436 2025.06.06 05:40:08.598 2025.06.06 05:40:09.040
8 4.0.6.3205 2025.05.07 00148 P P 735 438 2025.05.18 06:29:12.804 2025.05.18 06:29:13.539 2025.05.18 05:29:17.427 2025.05.18 05:29:17.865
9 4.0.6.3204 2025.05.06 35b85 P P 725 444 2025.05.07 06:37:25.633 2025.05.07 06:37:26.358 2025.05.07 05:36:11.423 2025.05.07 05:36:11.867
10 4.0.6.3203 2025.05.05 c2cbd P P 770 425 2025.05.06 06:37:43.294 2025.05.06 06:37:44.064 2025.05.06 05:36:18.906 2025.05.06 05:36:19.331
11 4.0.6.3200 2025.04.18 7ef56 P P 762 445 2025.04.26 06:42:17.473 2025.04.26 06:42:18.235 2025.04.26 05:40:35.295 2025.04.26 05:40:35.740
12 4.0.6.3199 2025.04.14 33a10 P P 758 468 2025.04.17 06:39:58.179 2025.04.17 06:39:58.937 2025.04.17 05:38:01.669 2025.04.17 05:38:02.137
13 4.0.6.3198 2025.04.13 64a7f P P 740 447 2025.04.14 06:38:08.232 2025.04.14 06:38:08.972 2025.04.14 05:36:22.301 2025.04.14 05:36:22.748
14 4.0.6.3195 2025.04.12 82cb5 P P 703 437 2025.04.13 06:22:53.597 2025.04.13 06:22:54.300 2025.04.13 05:23:35.383 2025.04.13 05:23:35.820
15 4.0.6.3195 2025.03.28 b9faf P P 726 432 2025.04.12 06:43:07.200 2025.04.12 06:43:07.926 2025.04.12 05:40:25.962 2025.04.12 05:40:26.394
16 4.0.6.3194 2025.03.27 ab754 P P 752 463 2025.03.28 06:55:43.302 2025.03.28 06:55:44.054 2025.03.28 05:52:37.158 2025.03.28 05:52:37.621
17 4.0.6.3194 2025.03.26 912aa P P 734 488 2025.03.27 06:46:03.429 2025.03.27 06:46:04.163 2025.03.27 05:41:41.405 2025.03.27 05:41:41.893
18 4.0.6.3193 2025.03.20 80234 P P 775 480 2025.03.24 06:46:33.273 2025.03.24 06:46:34.048 2025.03.24 05:41:52.021 2025.03.24 05:41:52.501
19 4.0.6.3192 2025.03.13 2a9da P P 733 430 2025.03.20 06:33:45.246 2025.03.20 06:33:45.979 2025.03.20 05:31:08.887 2025.03.20 05:31:09.317
20 4.0.6.3191 2025.03.10 3d9fd P P 744 482 2025.03.13 06:41:22.634 2025.03.13 06:41:23.378 2025.03.13 05:37:13.138 2025.03.13 05:37:13.620
21 4.0.6.3190 2025.02.25 c9928 P P 806 445 2025.03.09 06:38:09.016 2025.03.09 06:38:09.822 2025.03.09 05:34:09.881 2025.03.09 05:34:10.326
22 4.0.6.3189 2025.02.22 3fb0b P P 728 452 2025.02.25 06:27:01.949 2025.02.25 06:27:02.677 2025.02.25 05:24:42.996 2025.02.25 05:24:43.448
23 4.0.6.3188 2025.02.21 8ee1c P P 764 443 2025.02.22 06:20:38.772 2025.02.22 06:20:39.536 2025.02.22 05:18:43.184 2025.02.22 05:18:43.627
24 4.0.6.3186 2025.02.19 92cb6 P P 733 444 2025.02.20 04:18:26.337 2025.02.20 04:18:27.070 2025.02.20 03:15:52.122 2025.02.20 03:15:52.566
25 4.0.6.3185 2025.02.16 9cac4 P P 716 521 2025.02.17 02:05:43.082 2025.02.17 02:05:43.798 2025.02.17 01:03:57.730 2025.02.17 01:03:58.251
26 4.0.6.3183 2025.02.04 bf738 P P 737 446 2025.02.08 06:24:25.909 2025.02.08 06:24:26.646 2025.02.08 05:22:15.020 2025.02.08 05:22:15.466
27 4.0.6.3181 2025.02.01 00b64 P P 750 438 2025.02.04 06:37:56.105 2025.02.04 06:37:56.855 2025.02.04 05:35:36.421 2025.02.04 05:35:36.859
28 4.0.6.3180 2025.01.27 2edb8 P P 732 445 2025.01.28 06:21:00.673 2025.01.28 06:21:01.405 2025.01.28 05:19:25.940 2025.01.28 05:19:26.385
29 4.0.6.3179 2025.01.24 008d4 P P 756 446 2025.01.25 04:11:14.689 2025.01.25 04:11:15.445 2025.01.25 03:09:40.472 2025.01.25 03:09:40.918
30 4.0.6.3178 2025.01.20 ec94d P P 728 445 2025.01.24 06:21:43.676 2025.01.24 06:21:44.404 2025.01.24 05:20:00.054 2025.01.24 05:20:00.499
31 4.0.6.3176 2025.01.16 79cc1 P P 724 442 2025.01.20 06:20:30.167 2025.01.20 06:20:30.891 2025.01.20 05:18:49.357 2025.01.20 05:18:49.799
32 4.0.6.3175 2025.01.15 91361 P P 725 450 2025.01.16 06:24:17.162 2025.01.16 06:24:17.887 2025.01.16 05:22:14.128 2025.01.16 05:22:14.578
33 4.0.6.3174 2024.12.23 ffd39 P P 731 447 2025.01.15 06:17:46.768 2025.01.15 06:17:47.499 2025.01.15 05:15:42.948 2025.01.15 05:15:43.395
34 4.0.6.3173 2024.12.19 60b32 P P 728 450 2024.12.21 17:17:36.262 2024.12.21 17:17:36.990 2024.12.21 16:15:27.255 2024.12.21 16:15:27.705
35 4.0.6.3172 2024.12.11 33f5d P P 761 446 2024.12.16 06:19:49.303 2024.12.16 06:19:50.064 2024.12.16 05:18:03.449 2024.12.16 05:18:03.895
36 4.0.6.3171 2024.12.10 ab1d4 P P 739 450 2024.12.11 06:22:13.741 2024.12.11 06:22:14.480 2024.12.11 05:20:19.075 2024.12.11 05:20:19.525
37 4.0.6.3170 2024.12.02 68abd P P 762 457 2024.12.04 06:11:03.761 2024.12.04 06:11:04.523 2024.12.04 05:10:24.726 2024.12.04 05:10:25.183
38 4.0.6.3169 2024.11.28 1673f P P 756 490 2024.11.30 06:09:03.706 2024.11.30 06:09:04.462 2024.11.30 05:08:30.268 2024.11.30 05:08:30.758
39 4.0.6.3168 2024.11.27 7fffc P P 774 442 2024.11.28 06:04:59.396 2024.11.28 06:05:00.170 2024.11.28 05:05:08.301 2024.11.28 05:05:08.743
40 4.0.6.3168 2024.11.07 f67e2 P P 781 448 2024.11.27 06:07:28.902 2024.11.27 06:07:29.683 2024.11.27 05:06:49.525 2024.11.27 05:06:49.973
41 4.0.6.3167 2024.11.04 c9228 P P 753 457 2024.11.05 06:00:20.868 2024.11.05 06:00:21.621 2024.11.05 05:00:46.287 2024.11.05 05:00:46.744
42 4.0.6.3165 2024.10.23 b0c36 P P 732 445 2024.11.04 11:50:09.744 2024.11.04 11:50:10.476 2024.11.04 10:50:25.534 2024.11.04 10:50:25.979
43 4.0.6.3164 2024.10.17 35344 P P 785 459 2024.10.23 06:09:34.947 2024.10.23 06:09:35.732 2024.10.23 05:09:13.536 2024.10.23 05:09:13.995
44 4.0.6.3161 2024.10.05 91502 P P 757 446 2024.10.15 06:06:45.001 2024.10.15 06:06:45.758 2024.10.15 05:06:50.041 2024.10.15 05:06:50.487
45 4.0.6.3159 2024.10.01 85136 P P 752 442 2024.10.05 06:10:40.938 2024.10.05 06:10:41.690 2024.10.05 05:09:43.226 2024.10.05 05:09:43.668
46 4.0.6.3158 2024.09.30 14c68 P P 783 441 2024.10.01 06:08:49.917 2024.10.01 06:08:50.700 2024.10.01 05:07:56.642 2024.10.01 05:07:57.083
47 4.0.6.3157 2024.09.24 3bb2e P P 726 453 2024.09.30 06:08:27.888 2024.09.30 06:08:28.614 2024.09.30 05:07:55.478 2024.09.30 05:07:55.931
48 4.0.6.3156 2024.09.21 f6416 P P 819 437 2024.09.24 06:07:48.462 2024.09.24 06:07:49.281 2024.09.24 05:07:22.938 2024.09.24 05:07:23.375
49 4.0.6.3155 2024.09.20 1ed0c P P 741 513 2024.09.21 06:09:19.235 2024.09.21 06:09:19.976 2024.09.21 05:08:32.532 2024.09.21 05:08:33.045
50 4.0.6.3151 2024.09.09 1b77f P P 736 445 2024.09.17 06:06:35.938 2024.09.17 06:06:36.674 2024.09.17 05:06:55.119 2024.09.17 05:06:55.564
51 4.0.6.3149 2024.09.04 32ce9 P P 747 458 2024.09.08 04:07:32.687 2024.09.08 04:07:33.434 2024.09.08 03:06:53.363 2024.09.08 03:06:53.821
52 4.0.6.3148 2024.09.02 4be5c P P 742 480 2024.09.04 06:10:11.960 2024.09.04 06:10:12.702 2024.09.04 05:09:08.475 2024.09.04 05:09:08.955
53 4.0.6.3147 2024.08.30 5ffd7 P P 738 447 2024.09.02 05:59:35.732 2024.09.02 05:59:36.470 2024.09.02 04:58:49.366 2024.09.02 04:58:49.813
54 4.0.6.3146 2024.08.27 38582 P P 734 473 2024.08.30 05:54:29.182 2024.08.30 05:54:29.916 2024.08.30 04:53:42.951 2024.08.30 04:53:43.424
55 4.0.6.3145 2024.08.21 87240 P P 743 441 2024.08.27 05:49:35.343 2024.08.27 05:49:36.086 2024.08.27 04:48:57.381 2024.08.27 04:48:57.822
56 4.0.6.3144 2024.08.20 5a3b7 P P 734 450 2024.08.21 05:47:29.622 2024.08.21 05:47:30.356 2024.08.21 04:46:31.414 2024.08.21 04:46:31.864
57 4.0.6.3142 2024.08.11 b9f39 P P 800 477 2024.08.19 05:57:41.485 2024.08.19 05:57:42.285 2024.08.19 04:54:52.045 2024.08.19 04:54:52.522

Elapsed time, ms. Chart for last 57 runs:

Last commits information (all timestamps in UTC):