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
1 @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-03-25 12:59:40.572
2025-03-25 12:59:40.572 act = <firebird.qa.plugin.Action object at [hex]>
2025-03-25 12:59:40.572
2025-03-25 12:59:40.572     @pytest.mark.version('>=3,<6')
2025-03-25 12:59:40.572     def test_1(act: Action):
2025-03-25 12:59:40.572         script = f"""
2025-03-25 12:59:40.572         create database '{act.db.dsn}' user '{act.db.user}'
2025-03-25 12:59:40.572           password '{act.db.password}' LENGTH 300
2025-03-25 12:59:40.572           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_08.F00')}' LENGTH 300
2025-03-25 12:59:40.572         ;
2025-03-25 12:59:40.572         set list on ;
2025-03-25 12:59:40.573         select
2025-03-25 12:59:40.573             cast(rdb$file_name as varchar(100)) db_file
2025-03-25 12:59:40.573             ,rdb$file_sequence
2025-03-25 12:59:40.573             ,rdb$file_start
2025-03-25 12:59:40.573             ,rdb$file_length
2025-03-25 12:59:40.573         from rdb$files ;
2025-03-25 12:59:40.573         """
2025-03-25 12:59:40.573         act.expected_stdout = expected_stdout
2025-03-25 12:59:40.573         act.isql(switches = ['-q'], input=script, connect_db=False, combine_output = True)
2025-03-25 12:59:40.573 >       assert act.clean_stdout == act.clean_expected_stdout
2025-03-25 12:59:40.573 E       assert
2025-03-25 12:59:40.573 E         + Statement	failed,	SQLSTATE	=	08006
2025-03-25 12:59:40.573 E         + Unable	to	complete	network	request	to	host	"localhost".
2025-03-25 12:59:40.573 E         + -Failed	to	establish	a	connection.
2025-03-25 12:59:40.573 E         - TMP_CREATE_DB_08.F00
2025-03-25 12:59:40.573 E         - RDB$FILE_SEQUENCE	1
2025-03-25 12:59:40.573 E         - RDB$FILE_START	301
2025-03-25 12:59:40.573 E         - RDB$FILE_LENGTH	300
2025-03-25 12:59:40.573
2025-03-25 12:59:40.573 tests\functional\database\create\test_08.py:46: AssertionError
2 #text
request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11495')
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_hq30'

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

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 3.0.13.33809 2025.05.14 6638e P P 424 291 2025.06.28 14:51:32.397 2025.06.28 14:51:32.821 2025.06.28 14:13:08.190 2025.06.28 14:13:08.481
2 3.0.13.33809 2025.05.06 28ad0 P P 396 278 2025.05.14 08:29:46.053 2025.05.14 08:29:46.449 2025.05.14 07:49:52.524 2025.05.14 07:49:52.802
3 3.0.13.33808 2025.04.25 28426 P P 419 273 2025.05.06 13:40:28.779 2025.05.06 13:40:29.198 2025.05.06 13:02:31.416 2025.05.06 13:02:31.689
4 3.0.13.33803 2025.04.23 307b8 P P 419 268 2025.04.25 13:49:06.153 2025.04.25 13:49:06.572 2025.04.25 13:10:58.271 2025.04.25 13:10:58.539
5 3.0.13.33803 2025.03.25 ea22a P E 406 4411 2025.04.20 08:20:26.013 2025.04.20 08:20:26.419 2025.04.20 07:25:27.986 2025.04.20 07:25:32.397
6 3.0.13.33803 2025.02.25 08ebd P E 426 4408 2025.03.25 10:36:32.890 2025.03.25 10:36:33.316 2025.03.25 09:40:02.891 2025.03.25 09:40:07.299
7 3.0.13.33796 2025.01.29 0ab85 P P 419 276 2025.02.25 12:26:52.248 2025.02.25 12:26:52.667 2025.02.25 11:48:15.193 2025.02.25 11:48:15.469
8 3.0.13.33796 2025.01.14 99b3b P P 401 262 2025.01.24 11:31:14.179 2025.01.24 11:31:14.580 2025.01.24 10:53:04.141 2025.01.24 10:53:04.403
9 3.0.13.33795 2024.12.13 fbbd9 P P 402 265 2025.01.01 12:42:22.419 2025.01.01 12:42:22.821 2025.01.01 12:03:37.183 2025.01.01 12:03:37.448
10 3.0.13.33795 2024.11.24 b8847 P P 411 276 2024.12.11 12:40:07.841 2024.12.11 12:40:08.252 2024.12.11 12:01:35.225 2024.12.11 12:01:35.501
11 3.0.13.33794 2024.10.15 abe09 P P 399 277 2024.11.22 12:16:35.984 2024.11.22 12:16:36.383 2024.11.22 11:37:51.474 2024.11.22 11:37:51.751
12 3.0.13.33793 2024.10.14 f831a P P 417 260 2024.10.15 12:44:02.366 2024.10.15 12:44:02.783 2024.10.15 12:05:14.087 2024.10.15 12:05:14.347
13 3.0.13.33793 2024.10.04 82ccc P P 403 263 2024.10.12 12:43:03.025 2024.10.12 12:43:03.428 2024.10.12 12:04:31.239 2024.10.12 12:04:31.502
14 3.0.13.33792 2024.08.31 d8791 P P 406 261 2024.10.03 12:51:25.206 2024.10.03 12:51:25.612 2024.10.03 12:11:48.364 2024.10.03 12:11:48.625
15 3.0.13.33787 2024.08.23 8ee81 P P 443 313 2024.09.01 13:01:50.830 2024.09.01 13:01:51.273 2024.09.01 12:19:16.233 2024.09.01 12:19:16.546
16 3.0.13.33787 2024.08.09 df740 P P 466 351 2024.08.23 12:58:29.741 2024.08.23 12:58:30.207 2024.08.23 12:15:51.596 2024.08.23 12:15:51.947
17 3.0.12.33746 2024.07.15 11dd4 P P 465 357 2024.08.09 12:18:45.717 2024.08.09 12:18:46.182 2024.08.09 11:36:19.700 2024.08.09 11:36:20.057
18 3.0.12.33746 2024.06.11 8a5eb P P 515 356 2024.07.15 11:11:07.711 2024.07.15 11:11:08.226 2024.07.15 10:33:42.308 2024.07.15 10:33:42.664
19 3.0.12.33745 2024.05.21 301a7 P P 438 266 2024.05.25 08:08:15.023 2024.05.25 08:08:15.461 2024.05.25 07:32:46.335 2024.05.25 07:32:46.601
20 3.0.12.33745 2024.05.09 9cf37 P P 438 265 2024.05.21 08:08:39.276 2024.05.21 08:08:39.714 2024.05.21 07:33:06.061 2024.05.21 07:33:06.326
21 3.0.12.33744 2024.04.20 af6b2 P P 438 266 2024.05.11 08:04:47.399 2024.05.11 08:04:47.837 2024.05.11 07:30:01.235 2024.05.11 07:30:01.501
22 3.0.12.33740 2024.04.06 c6cdd P P 438 281 2024.04.21 02:19:01.826 2024.04.21 02:19:02.264 2024.04.21 01:44:33.556 2024.04.21 01:44:33.837
23 3.0.12.33726 2024.03.29 1fac6 P P 390 234 2024.04.05 07:14:21.052 2024.04.05 07:14:21.442 2024.04.05 06:40:36.672 2024.04.05 06:40:36.906
24 3.0.12.33726 2024.03.11 456ca P P 374 218 2024.03.29 12:54:10.379 2024.03.29 12:54:10.753 2024.03.29 12:22:53.249 2024.03.29 12:22:53.467

Elapsed time, ms. Chart for last 24 runs:

Last commits information (all timestamps in UTC):