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-04-20 10:45:05.339
2025-04-20 10:45:05.339 act = <firebird.qa.plugin.Action object at [hex]>
2025-04-20 10:45:05.339
2025-04-20 10:45:05.339     @pytest.mark.version('>=3.0,<6')
2025-04-20 10:45:05.339     def test_1(act: Action):
2025-04-20 10:45:05.339         script = f"""
2025-04-20 10:45:05.339         create database '{act.db.dsn}' user '{act.db.user}'
2025-04-20 10:45:05.339           password '{act.db.password}'
2025-04-20 10:45:05.340           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_10.F00')}' STARTING AT PAGE 301
2025-04-20 10:45:05.340           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_10.F01')}' STARTING AT PAGE 601
2025-04-20 10:45:05.340           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_10.F02')}' STARTING AT PAGE 1001
2025-04-20 10:45:05.340         ;
2025-04-20 10:45:05.340         set list on ;
2025-04-20 10:45:05.340         select
2025-04-20 10:45:05.340             cast(rdb$file_name as varchar(100)) db_file
2025-04-20 10:45:05.340             ,rdb$file_sequence
2025-04-20 10:45:05.340             ,rdb$file_start
2025-04-20 10:45:05.340             ,rdb$file_length
2025-04-20 10:45:05.340         from rdb$files ;
2025-04-20 10:45:05.340         """
2025-04-20 10:45:05.340         act.expected_stdout = expected_stdout
2025-04-20 10:45:05.340         act.isql(switches = ['-q'], input=script, connect_db=False, combine_output = True)
2025-04-20 10:45:05.340 >       assert act.clean_stdout == act.clean_expected_stdout
2025-04-20 10:45:05.340 E       assert
2025-04-20 10:45:05.340 E         + Statement	failed,	SQLSTATE	=	08006
2025-04-20 10:45:05.340 E         + Unable	to	complete	network	request	to	host	"localhost".
2025-04-20 10:45:05.340 E         + -Failed	to	establish	a	connection.
2025-04-20 10:45:05.340 E         - TMP_CREATE_DB_10.F00
2025-04-20 10:45:05.341 E         - RDB$FILE_SEQUENCE	1
2025-04-20 10:45:05.341 E         - RDB$FILE_START	301
2025-04-20 10:45:05.341 E         - RDB$FILE_LENGTH	300
2025-04-20 10:45:05.341 E         - TMP_CREATE_DB_10.F01
2025-04-20 10:45:05.341 E         - RDB$FILE_SEQUENCE	2
2025-04-20 10:45:05.341 E         - RDB$FILE_START	601
2025-04-20 10:45:05.341 E         - RDB$FILE_LENGTH	400
2025-04-20 10:45:05.341 E         - TMP_CREATE_DB_10.F02
2025-04-20 10:45:05.341 E         - RDB$FILE_SEQUENCE	3
2025-04-20 10:45:05.341 E         - RDB$FILE_START	1001
2025-04-20 10:45:05.341 E         - RDB$FILE_LENGTH	0
2025-04-20 10:45:05.341
2025-04-20 10:45:05.341 tests\functional\database\create\test_10.py:55: AssertionError
2 #text
request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11500')
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: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 3.0.13.33809 2025.05.14 6638e P P 404 269 2025.06.30 14:50:06.426 2025.06.30 14:50:06.830 2025.06.30 14:11:42.423 2025.06.30 14:11:42.692
2 3.0.13.33809 2025.05.06 28ad0 P P 412 287 2025.05.14 08:29:46.859 2025.05.14 08:29:47.271 2025.05.14 07:49:53.078 2025.05.14 07:49:53.365
3 3.0.13.33808 2025.04.25 28426 P P 445 269 2025.05.06 13:40:29.627 2025.05.06 13:40:30.072 2025.05.06 13:02:31.954 2025.05.06 13:02:32.223
4 3.0.13.33803 2025.04.23 307b8 P P 403 263 2025.04.25 13:49:06.985 2025.04.25 13:49:07.388 2025.04.25 13:10:58.811 2025.04.25 13:10:59.074
5 3.0.13.33803 2025.03.25 ea22a P E 405 4395 2025.04.20 08:20:26.821 2025.04.20 08:20:27.226 2025.04.20 07:25:36.652 2025.04.20 07:25:41.047
6 3.0.13.33803 2025.02.25 08ebd P E 416 4239 2025.03.25 10:36:33.746 2025.03.25 10:36:34.162 2025.03.25 09:40:11.725 2025.03.25 09:40:15.964
7 3.0.13.33796 2025.01.29 0ab85 P P 426 292 2025.02.25 12:26:53.108 2025.02.25 12:26:53.534 2025.02.25 11:48:15.736 2025.02.25 11:48:16.028
8 3.0.13.33796 2025.01.14 99b3b P P 413 278 2025.01.24 11:31:15.001 2025.01.24 11:31:15.414 2025.01.24 10:53:04.672 2025.01.24 10:53:04.950
9 3.0.13.33795 2024.12.13 fbbd9 P P 428 280 2025.01.01 12:42:23.232 2025.01.01 12:42:23.660 2025.01.01 12:03:37.717 2025.01.01 12:03:37.997
10 3.0.13.33795 2024.11.24 b8847 P P 446 283 2024.12.11 12:40:08.673 2024.12.11 12:40:09.119 2024.12.11 12:01:35.773 2024.12.11 12:01:36.056
11 3.0.13.33794 2024.10.15 abe09 P P 413 278 2024.11.22 12:16:36.789 2024.11.22 12:16:37.202 2024.11.22 11:37:52.035 2024.11.22 11:37:52.313
12 3.0.13.33793 2024.10.14 f831a P P 411 284 2024.10.15 12:44:03.194 2024.10.15 12:44:03.605 2024.10.15 12:05:14.616 2024.10.15 12:05:14.900
13 3.0.13.33793 2024.10.04 82ccc P P 407 269 2024.10.12 12:43:03.869 2024.10.12 12:43:04.276 2024.10.12 12:04:31.784 2024.10.12 12:04:32.053
14 3.0.13.33792 2024.08.31 d8791 P P 408 279 2024.10.03 12:51:26.025 2024.10.03 12:51:26.433 2024.10.03 12:11:48.899 2024.10.03 12:11:49.178
15 3.0.13.33787 2024.08.23 8ee81 P P 451 314 2024.09.01 13:01:51.744 2024.09.01 13:01:52.195 2024.09.01 12:19:16.853 2024.09.01 12:19:17.167
16 3.0.13.33787 2024.08.09 df740 P P 469 359 2024.08.23 12:58:30.684 2024.08.23 12:58:31.153 2024.08.23 12:15:52.292 2024.08.23 12:15:52.651
17 3.0.12.33746 2024.07.15 11dd4 P P 469 329 2024.08.09 12:18:46.658 2024.08.09 12:18:47.127 2024.08.09 11:36:20.390 2024.08.09 11:36:20.719
18 3.0.12.33746 2024.06.11 8a5eb P P 471 351 2024.07.15 11:11:08.716 2024.07.15 11:11:09.187 2024.07.15 10:33:43.009 2024.07.15 10:33:43.360
19 3.0.12.33745 2024.05.21 301a7 P P 438 281 2024.05.25 08:08:15.898 2024.05.25 08:08:16.336 2024.05.25 07:32:46.882 2024.05.25 07:32:47.163
20 3.0.12.33745 2024.05.09 9cf37 P P 438 281 2024.05.21 08:08:40.151 2024.05.21 08:08:40.589 2024.05.21 07:33:06.592 2024.05.21 07:33:06.873
21 3.0.12.33744 2024.04.20 af6b2 P P 453 265 2024.05.11 08:04:48.290 2024.05.11 08:04:48.743 2024.05.11 07:30:01.767 2024.05.11 07:30:02.032
22 3.0.12.33740 2024.04.06 c6cdd P P 453 281 2024.04.21 02:19:02.733 2024.04.21 02:19:03.186 2024.04.21 01:44:34.103 2024.04.21 01:44:34.384
23 3.0.12.33726 2024.03.29 1fac6 P P 375 234 2024.04.05 07:14:21.849 2024.04.05 07:14:22.224 2024.04.05 06:40:37.141 2024.04.05 06:40:37.375
24 3.0.12.33726 2024.03.11 456ca P P 358 234 2024.03.29 12:54:11.129 2024.03.29 12:54:11.487 2024.03.29 12:22:53.702 2024.03.29 12:22:53.936

Elapsed time, ms. Chart for last 24 runs:

Last commits information (all timestamps in UTC):