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.337
2025-04-20 10:45:05.337 act = <firebird.qa.plugin.Action object at [hex]>
2025-04-20 10:45:05.337
2025-04-20 10:45:05.337     @pytest.mark.version('>=3,<6')
2025-04-20 10:45:05.337     def test_1(act: Action):
2025-04-20 10:45:05.337         script = f"""
2025-04-20 10:45:05.337         create database '{act.db.dsn}' user '{act.db.user}'
2025-04-20 10:45:05.337           password '{act.db.password}' LENGTH 300
2025-04-20 10:45:05.337           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_09.F00')}' LENGTH 300
2025-04-20 10:45:05.337           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_09.F01')}' LENGTH 300
2025-04-20 10:45:05.337           FILE '{act.db.db_path.with_name('TMP_CREATE_DB_09.F02')}' LENGTH 300
2025-04-20 10:45:05.338         ;
2025-04-20 10:45:05.338         set list on ;
2025-04-20 10:45:05.338         select
2025-04-20 10:45:05.338             cast(rdb$file_name as varchar(100)) db_file
2025-04-20 10:45:05.338             ,rdb$file_sequence
2025-04-20 10:45:05.338             ,rdb$file_start
2025-04-20 10:45:05.338             ,rdb$file_length
2025-04-20 10:45:05.338         from rdb$files ;
2025-04-20 10:45:05.338         """
2025-04-20 10:45:05.338         act.expected_stdout = expected_stdout
2025-04-20 10:45:05.338         act.isql(switches = ['-q'], input=script, connect_db=False, combine_output = True)
2025-04-20 10:45:05.338 >       assert act.clean_stdout == act.clean_expected_stdout
2025-04-20 10:45:05.338 E       assert
2025-04-20 10:45:05.338 E         + Statement	failed,	SQLSTATE	=	08006
2025-04-20 10:45:05.338 E         + Unable	to	complete	network	request	to	host	"localhost".
2025-04-20 10:45:05.338 E         + -Failed	to	establish	a	connection.
2025-04-20 10:45:05.338 E         - TMP_CREATE_DB_09.F00
2025-04-20 10:45:05.338 E         - RDB$FILE_SEQUENCE	1
2025-04-20 10:45:05.338 E         - RDB$FILE_START	301
2025-04-20 10:45:05.338 E         - RDB$FILE_LENGTH	300
2025-04-20 10:45:05.338 E         - TMP_CREATE_DB_09.F01
2025-04-20 10:45:05.339 E         - RDB$FILE_SEQUENCE	2
2025-04-20 10:45:05.339 E         - RDB$FILE_START	601
2025-04-20 10:45:05.339 E         - RDB$FILE_LENGTH	300
2025-04-20 10:45:05.339 E         - TMP_CREATE_DB_09.F02
2025-04-20 10:45:05.339 E         - RDB$FILE_SEQUENCE	3
2025-04-20 10:45:05.339 E         - RDB$FILE_START	901
2025-04-20 10:45:05.339 E         - RDB$FILE_LENGTH	300
2025-04-20 10:45:05.339
2025-04-20 10:45:05.339 tests\functional\database\create\test_09.py:56: AssertionError
2 #text
request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11499')
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 413 269 2025.06.27 14:48:58.771 2025.06.27 14:48:59.184 2025.06.27 14:10:37.489 2025.06.27 14:10:37.758
2 3.0.13.33809 2025.05.06 28ad0 P P 410 276 2025.05.14 08:29:46.449 2025.05.14 08:29:46.859 2025.05.14 07:49:52.802 2025.05.14 07:49:53.078
3 3.0.13.33808 2025.04.25 28426 P P 429 265 2025.05.06 13:40:29.198 2025.05.06 13:40:29.627 2025.05.06 13:02:31.689 2025.05.06 13:02:31.954
4 3.0.13.33803 2025.04.23 307b8 P P 413 272 2025.04.25 13:49:06.572 2025.04.25 13:49:06.985 2025.04.25 13:10:58.539 2025.04.25 13:10:58.811
5 3.0.13.33803 2025.03.25 ea22a P E 402 4255 2025.04.20 08:20:26.419 2025.04.20 08:20:26.821 2025.04.20 07:25:32.397 2025.04.20 07:25:36.652
6 3.0.13.33803 2025.02.25 08ebd P E 430 4426 2025.03.25 10:36:33.316 2025.03.25 10:36:33.746 2025.03.25 09:40:07.299 2025.03.25 09:40:11.725
7 3.0.13.33796 2025.01.29 0ab85 P P 441 267 2025.02.25 12:26:52.667 2025.02.25 12:26:53.108 2025.02.25 11:48:15.469 2025.02.25 11:48:15.736
8 3.0.13.33796 2025.01.14 99b3b P P 421 269 2025.01.24 11:31:14.580 2025.01.24 11:31:15.001 2025.01.24 10:53:04.403 2025.01.24 10:53:04.672
9 3.0.13.33795 2024.12.13 fbbd9 P P 411 269 2025.01.01 12:42:22.821 2025.01.01 12:42:23.232 2025.01.01 12:03:37.448 2025.01.01 12:03:37.717
10 3.0.13.33795 2024.11.24 b8847 P P 421 272 2024.12.11 12:40:08.252 2024.12.11 12:40:08.673 2024.12.11 12:01:35.501 2024.12.11 12:01:35.773
11 3.0.13.33794 2024.10.15 abe09 P P 406 284 2024.11.22 12:16:36.383 2024.11.22 12:16:36.789 2024.11.22 11:37:51.751 2024.11.22 11:37:52.035
12 3.0.13.33793 2024.10.14 f831a P P 411 269 2024.10.15 12:44:02.783 2024.10.15 12:44:03.194 2024.10.15 12:05:14.347 2024.10.15 12:05:14.616
13 3.0.13.33793 2024.10.04 82ccc P P 441 282 2024.10.12 12:43:03.428 2024.10.12 12:43:03.869 2024.10.12 12:04:31.502 2024.10.12 12:04:31.784
14 3.0.13.33792 2024.08.31 d8791 P P 413 274 2024.10.03 12:51:25.612 2024.10.03 12:51:26.025 2024.10.03 12:11:48.625 2024.10.03 12:11:48.899
15 3.0.13.33787 2024.08.23 8ee81 P P 471 307 2024.09.01 13:01:51.273 2024.09.01 13:01:51.744 2024.09.01 12:19:16.546 2024.09.01 12:19:16.853
16 3.0.13.33787 2024.08.09 df740 P P 477 345 2024.08.23 12:58:30.207 2024.08.23 12:58:30.684 2024.08.23 12:15:51.947 2024.08.23 12:15:52.292
17 3.0.12.33746 2024.07.15 11dd4 P P 476 333 2024.08.09 12:18:46.182 2024.08.09 12:18:46.658 2024.08.09 11:36:20.057 2024.08.09 11:36:20.390
18 3.0.12.33746 2024.06.11 8a5eb P P 490 345 2024.07.15 11:11:08.226 2024.07.15 11:11:08.716 2024.07.15 10:33:42.664 2024.07.15 10:33:43.009
19 3.0.12.33745 2024.05.21 301a7 P P 437 281 2024.05.25 08:08:15.461 2024.05.25 08:08:15.898 2024.05.25 07:32:46.601 2024.05.25 07:32:46.882
20 3.0.12.33745 2024.05.09 9cf37 P P 437 266 2024.05.21 08:08:39.714 2024.05.21 08:08:40.151 2024.05.21 07:33:06.326 2024.05.21 07:33:06.592
21 3.0.12.33744 2024.04.20 af6b2 P P 453 266 2024.05.11 08:04:47.837 2024.05.11 08:04:48.290 2024.05.11 07:30:01.501 2024.05.11 07:30:01.767
22 3.0.12.33740 2024.04.06 c6cdd P P 469 266 2024.04.21 02:19:02.264 2024.04.21 02:19:02.733 2024.04.21 01:44:33.837 2024.04.21 01:44:34.103
23 3.0.12.33726 2024.03.29 1fac6 P P 407 235 2024.04.05 07:14:21.442 2024.04.05 07:14:21.849 2024.04.05 06:40:36.906 2024.04.05 06:40:37.141
24 3.0.12.33726 2024.03.11 456ca P P 374 233 2024.03.29 12:54:10.754 2024.03.29 12:54:11.128 2024.03.29 12:22:53.468 2024.03.29 12:22:53.701

Elapsed time, ms. Chart for last 24 runs:

Last commits information (all timestamps in UTC):