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_12080')
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:2232: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

create = True
dsn = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_12080\\test.fdb'
utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey0\x07WIN1250D\x07WIN1250D\x07WIN1250'
sql_dialect = 3, charset = 'WIN1250', 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:2052: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_12080\\test.fdb'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey0\x07WIN1250D\x07WIN1250D\x07WIN1250'
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:1300: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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.3189 2025.02.25 1a1a5 P P 608 408 2025.06.27 13:24:16.561 2025.06.27 13:24:17.169 2025.06.27 12:23:18.979 2025.06.27 12:23:19.387
2 4.0.6.3184 2025.02.24 9388c P E 611 2238 2025.02.25 11:05:32.929 2025.02.25 11:05:33.540 2025.02.25 10:02:40.797 2025.02.25 10:02:43.035
3 4.0.6.3183 2025.02.17 e4762 P P 647 405 2025.02.24 11:37:36.288 2025.02.24 11:37:36.935 2025.02.24 10:36:43.032 2025.02.24 10:36:43.437
4 4.0.6.3169 2024.12.13 42cc1 P P 614 410 2025.02.14 08:25:20.653 2025.02.14 08:25:21.267 2025.02.14 07:24:23.443 2025.02.14 07:24:23.853
5 4.0.6.3169 2024.12.08 50eb6 P P 648 409 2024.12.11 11:21:56.433 2024.12.11 11:21:57.081 2024.12.11 10:21:17.480 2024.12.11 10:21:17.889
6 4.0.6.3168 2024.12.07 98d69 P P 641 416 2024.12.08 04:05:34.066 2024.12.08 04:05:34.707 2024.12.08 03:03:03.843 2024.12.08 03:03:04.259
7 4.0.6.3168 2024.12.05 cee43 P P 652 410 2024.12.06 04:08:50.175 2024.12.06 04:08:50.827 2024.12.06 03:07:35.742 2024.12.06 03:07:36.152
8 4.0.6.3168 2024.11.28 48149 P P 614 438 2024.12.03 11:01:56.300 2024.12.03 11:01:56.914 2024.12.03 10:01:59.439 2024.12.03 10:01:59.877
9 4.0.6.3163 2024.10.30 832db P P 622 410 2024.11.28 11:00:36.437 2024.11.28 11:00:37.059 2024.11.28 10:00:49.336 2024.11.28 10:00:49.746
10 4.0.6.3163 2024.10.16 2bb10 P P 650 409 2024.10.30 11:09:38.304 2024.10.30 11:09:38.954 2024.10.30 10:09:44.601 2024.10.30 10:09:45.010
11 4.0.6.3147 2024.09.10 a4d11 P E 623 2435 2024.10.16 04:17:11.327 2024.10.16 04:17:11.950 2024.10.16 03:14:38.679 2024.10.16 03:14:41.114
12 4.0.6.3147 2024.08.31 4655b P P 618 420 2024.09.10 11:15:27.594 2024.09.10 11:15:28.212 2024.09.10 10:11:03.141 2024.09.10 10:11:03.561
13 4.0.6.3140 2024.08.16 1dd8b P E 676 2422 2024.09.01 11:37:53.436 2024.09.01 11:37:54.112 2024.09.01 10:32:16.799 2024.09.01 10:32:19.221
14 4.0.6.3140 2024.08.09 34747 P P 691 460 2024.08.16 11:18:18.103 2024.08.16 11:18:18.794 2024.08.16 10:14:16.655 2024.08.16 10:14:17.115
15 4.0.5.3110 2024.08.06 f851c P P 684 475 2024.08.09 10:57:03.357 2024.08.09 10:57:04.041 2024.08.09 09:53:52.768 2024.08.09 09:53:53.243
16 4.0.5.3110 2024.07.30 c6527 P P 560 343 2024.08.06 06:32:31.358 2024.08.06 06:32:31.918 2024.08.06 05:35:12.520 2024.08.06 05:35:12.863
17 4.0.5.3109 2024.06.11 6addf P P 494 328 2024.07.30 09:50:04.646 2024.07.30 09:50:05.140 2024.07.30 08:54:51.231 2024.07.30 08:54:51.559
18 4.0.5.3097 2024.05.09 27fa6 P P 453 250 2024.06.11 06:07:15.484 2024.06.11 06:07:15.937 2024.06.11 05:16:02.630 2024.06.11 05:16:02.880
19 4.0.5.3091 2024.04.29 bd0aa P P 475 265 2024.05.09 18:46:12.820 2024.05.09 18:46:13.295 2024.05.09 17:55:33.058 2024.05.09 17:55:33.323
20 4.0.5.3089 2024.04.20 9eb9b P P 454 250 2024.04.29 06:54:41.462 2024.04.29 06:54:41.916 2024.04.29 06:04:20.910 2024.04.29 06:04:21.160
21 4.0.5.3083 2024.04.06 300f9 P P 469 250 2024.04.20 07:18:04.792 2024.04.20 07:18:05.261 2024.04.20 06:27:20.616 2024.04.20 06:27:20.866
22 4.0.5.3052 2024.03.16 0f422 P P 422 235 2024.04.05 03:44:10.909 2024.04.05 03:44:11.331 2024.04.05 02:55:16.914 2024.04.05 02:55:17.149
23 4.0.5.3052 2024.03.16 ce273 P P 405 234 2024.03.29 15:09:27.048 2024.03.29 15:09:27.453 2024.03.29 14:23:18.745 2024.03.29 14:23:18.979
24 4.0.5.3052 2024.02.12 cd058 P P 390 233 2024.03.29 16:37:52.012 2024.03.29 16:37:52.402 2024.03.29 15:51:45.207 2024.03.29 15:51:45.440
25 4.0.5.3052 2024.02.07 be290 P P 405 233 2024.03.29 18:49:23.886 2024.03.29 18:49:24.291 2024.03.29 18:03:13.973 2024.03.29 18:03:14.206
26 4.0.5.3052 2024.02.07 6409b P P 390 234 2024.03.29 20:33:33.262 2024.03.29 20:33:33.652 2024.03.29 19:47:26.175 2024.03.29 19:47:26.409
27 4.0.5.3052 2024.02.02 bbc3f P P 405 233 2024.03.29 22:42:37.618 2024.03.29 22:42:38.023 2024.03.29 21:56:27.169 2024.03.29 21:56:27.402
28 4.0.5.3052 2024.01.26 48b7c P P 390 234 2024.03.30 00:09:52.942 2024.03.30 00:09:53.332 2024.03.29 23:23:39.017 2024.03.29 23:23:39.251
29 4.0.5.3052 2024.01.26 9a7b3 P P 405 233 2024.03.30 07:10:49.514 2024.03.30 07:10:49.919 2024.03.30 06:24:39.061 2024.03.30 06:24:39.294
30 4.0.5.3049 2024.01.25 f6b9d P P 389 234 2024.03.30 09:17:54.648 2024.03.30 09:17:55.037 2024.03.30 08:32:07.869 2024.03.30 08:32:08.103
31 4.0.5.3049 2024.01.08 b67ce P P 546 265 2024.03.30 11:05:53.853 2024.03.30 11:05:54.399 2024.03.30 10:10:41.677 2024.03.30 10:10:41.942
32 4.0.5.3049 2024.01.08 97577 P P 546 265 2024.03.30 16:10:45.580 2024.03.30 16:10:46.126 2024.03.30 15:15:53.994 2024.03.30 15:15:54.259
33 4.0.5.3049 2024.01.05 2d8b0 P P 546 265 2024.03.30 19:28:35.668 2024.03.30 19:28:36.214 2024.03.30 18:33:55.287 2024.03.30 18:33:55.552
34 4.0.5.3049 2024.01.04 431e5 P P 390 234 2024.03.30 21:06:49.131 2024.03.30 21:06:49.521 2024.03.30 20:21:11.736 2024.03.30 20:21:11.970
35 4.0.5.3049 2024.01.04 e33b4 P P 405 234 2024.03.30 23:18:41.945 2024.03.30 23:18:42.350 2024.03.30 22:32:57.561 2024.03.30 22:32:57.795
36 4.0.5.3049 2024.01.04 207ef P P 405 233 2024.03.31 01:02:12.206 2024.03.31 01:02:12.611 2024.03.31 00:16:25.386 2024.03.31 00:16:25.619
37 4.0.5.3034 2023.12.12 c05ff P P 406 233 2024.03.31 06:54:49.314 2024.03.31 06:54:49.720 2024.03.31 06:08:59.344 2024.03.31 06:08:59.577
38 4.0.5.3034 2023.12.12 3a40e P P 405 234 2024.03.31 15:29:32.500 2024.03.31 15:29:32.905 2024.03.31 14:43:41.617 2024.03.31 14:43:41.851
39 4.0.5.3034 2023.12.02 5934b P P 406 234 2024.03.31 10:02:34.000 2024.03.31 10:02:34.406 2024.03.31 09:16:45.054 2024.03.31 09:16:45.288
40 4.0.5.3034 2023.12.02 7ea5a P P 405 234 2024.03.31 17:53:53.900 2024.03.31 17:53:54.305 2024.03.31 17:08:02.721 2024.03.31 17:08:02.955
41 4.0.5.3034 2023.11.30 4fbc9 P P 390 233 2024.03.31 19:54:47.870 2024.03.31 19:54:48.260 2024.03.31 19:08:53.400 2024.03.31 19:08:53.633

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):