Skip to content

Reference

NATSD

Source code in src/nats_contrib/test_server/natsd.py
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
class NATSD:
    def __init__(
        self,
        port: int = -1,
        address: str | None = None,
        client_advertise: str | None = None,
        server_name: str | None = None,
        server_tags: dict[str, str] | None = None,
        user: str | None = None,
        password: str | None = None,
        users: list[dict[str, Any]] | None = None,
        token: str | None = None,
        http_port: int | None = None,
        debug: bool | None = None,
        trace: bool | None = None,
        trace_verbose: bool | None = None,
        logtime: bool | None = None,
        pid_file: str | Path | None = None,
        ports_file_dir: str | Path | None = None,
        log_file: str | Path | None = None,
        log_size_limit: int | None = None,
        tls_cert: str | Path | None = None,
        tls_key: str | Path | None = None,
        tls_ca_cert: str | Path | None = None,
        cluster_name: str | None = None,
        cluster_url: str | None = None,
        cluster_listen: str | None = None,
        routes: list[str] | None = None,
        no_advertise: bool | None = None,
        with_jetstream: bool = False,
        jetstream_domain: str | None = None,
        store_directory: str | Path | None = None,
        max_memory_store: int | None = None,
        max_file_store: int | None = None,
        max_outstanding_catchup: int | None = None,
        leafnodes_listen_address: str | None = None,
        leafnodes_listen_port: int | None = None,
        leafnode_remotes: dict[str, Any] | None = None,
        websocket_listen_address: str | None = None,
        websocket_listen_port: int | None = None,
        websocket_advertise_url: str | None = None,
        websocket_tls_cert: str | Path | None = None,
        websocket_tls_key: str | Path | None = None,
        websocket_same_origin: bool | None = None,
        websocket_allowed_origins: list[str] | None = None,
        websocket_compression: bool | None = None,
        jwt_path: str | Path | None = None,
        operator: str | None = None,
        system_account: str | None = None,
        system_account_jwt: str | None = None,
        allow_delete_jwt: bool | None = None,
        resolver_preload: dict[str, str] | None = None,
        config_file: str | Path | None = None,
        max_cpus: float | None = None,
        start_timeout: float = 2,
        output_colorized: bool = True,
        clean_log_file_on_exit: bool = False,
        clean_pid_file_on_exit: bool = False,
    ) -> None:
        """Create a new instance of nats-server daemon.

        Arguments:
            address: host address nats-server should listen to. Default is 127.0.0.1 (localhost).
            port: tcp port nats-server should listen to. Clients can connect to this port. Default is 4222.
            server_name: the server name. Default to auto-generated name.
            user: username required for connections. Omitted by default.
            password: password required for connections. Omitted by default.
            token: authorization token required for connections. Omitted by default.
            http_port: port for http monitoring. Default is 8222.
            debug: enable debugging output. Default is False.
            trace: enable raw traces. Default is False.
            pid_file: file to write process ID to. Omitted by default.
            log_file: file to redirect log output to. Omitted by default.
            tls_cert: server certificate file (TLS is enabled when both cert and key are provided)
            tls_key: server key file (TLS is enabled when both cert and key are provided)
            tls_ca_cert: client certificate for CA verification (mutual TLS is enabled when ca cert is provided)
            cluster_name: the cluster name. Default to auto-generated name when clustering is enabled.
            cluster_url: cluster URL for sollicited routes.
            cluster_listen: cluster URL from which members can solicite routes. Enable cluster mode when set.
            routes: routes to solicit and connect.
            no_advertise: do not advertise known cluster information to clients.
            with_jetstream: enable jetstream engine when True. Disabled by default.
            store_directory: path to jetstream store directory. Default to a temporary directory.
            config_file: path to a configuration file. None by default.
            max_cpus: maximum number of CPU configured using GOMAXPROCS environment variable. By default all CPUs can be used.
            start_timeout: amount of time to wait before raising an error when starting the daemon with wait=True.
            output_colorized: enable colorized output. Default is True.
        """
        self.output_writer = OutputWriter(colorized=output_colorized)
        if config_file is None:
            config_file = Path(tempfile.mkdtemp()).joinpath("nats.conf")
            generator = ConfigGenerator()
            config_str = generator.render(
                address=address,
                port=port,
                client_advertise=client_advertise,
                server_name=server_name,
                server_tags=server_tags,
                user=user,
                password=password,
                users=users,
                token=token,
                http_port=http_port,
                debug=debug,
                trace=trace,
                trace_verbose=trace_verbose,
                log_time=logtime,
                pid_file=pid_file,
                ports_file_dir=ports_file_dir,
                log_file=log_file,
                log_size_limit=log_size_limit,
                tls_cert=tls_cert,
                tls_key=tls_key,
                tls_ca_cert=tls_ca_cert,
                cluster_name=cluster_name,
                cluster_url=cluster_url,
                cluster_listen=cluster_listen,
                routes=routes,
                no_advertise=no_advertise,
                with_jetstream=with_jetstream,
                jetstream_domain=jetstream_domain,
                store_directory=store_directory,
                max_memory_store=max_memory_store,
                max_file_store=max_file_store,
                max_outstanding_catchup=max_outstanding_catchup,
                leafnodes_listen_address=leafnodes_listen_address,
                leafnodes_listen_port=leafnodes_listen_port,
                leafnode_remotes=leafnode_remotes,
                websocket_listen_address=websocket_listen_address,
                websocket_listen_port=websocket_listen_port,
                websocket_advertise_url=websocket_advertise_url,
                websocket_tls_cert=websocket_tls_cert,
                websocket_tls_key=websocket_tls_key,
                websocket_same_origin=websocket_same_origin,
                websocket_allowed_origins=websocket_allowed_origins,
                websocket_compression=websocket_compression,
                jwt_path=jwt_path,
                operator=operator,
                system_account=system_account,
                system_account_jwt=system_account_jwt,
                allow_delete_jwt=allow_delete_jwt,
                resolver_preload=resolver_preload,
            )
            config_file.write_text(config_str)
            weakref.finalize(self, shutil.rmtree, config_file.parent, True)
        self.server_name = server_name
        self.address = address
        self.port = port
        self.user = user
        self.password = password
        self.timeout = start_timeout
        self.http_port = http_port
        self.token = token
        self.bin_name = "nats-server"
        self.bin_path: str | None = None
        self.config_file = Path(config_file)
        self.debug = debug or os.environ.get("DEBUG_NATS_TEST", "") in (
            "true",
            "1",
            "y",
            "yes",
            "on",
        )
        self.trace = trace or os.environ.get("DEBUG_NATS_TEST", "") in (
            "true",
            "1",
            "y",
            "yes",
            "on",
        )
        self.pid_file = Path(pid_file).absolute().as_posix() if pid_file else None
        self.log_file = Path(log_file).absolute().as_posix() if log_file else None
        self.max_cpus = max_cpus
        self.clean_log_file_on_exit = clean_log_file_on_exit
        self.clean_pid_file_on_exit = clean_pid_file_on_exit
        self.tls_cert = tls_cert
        self.tls_key = tls_key
        self.tls_ca_cert = tls_ca_cert
        if self.tls_ca_cert and self.tls_cert and self.tls_key:
            self.tls_verify = True
            self.tls = False
        elif self.tls_cert and self.tls_key:
            self.tls_verify = False
            self.tls = True
        elif self.tls_ca_cert:
            raise ValueError(
                "Both certificate and key files must be provided with a CA certificate"
            )
        elif self.tls_cert or self.tls_key:
            raise ValueError("Both certificate and key files must be provided")
        else:
            self.tls = False
            self.tls_verify = False

        self.cluster_name = cluster_name
        self.cluster_url = cluster_url
        self.cluster_listen = cluster_listen
        self.routes = routes
        self.no_advertise = no_advertise

        self.jetstream_enabled = with_jetstream
        if store_directory:
            self.store_dir = Path(store_directory)
            self._store_dir_is_temporary = False
        else:
            self.store_dir = Path(tempfile.mkdtemp()).resolve(True)
            self._store_dir_is_temporary = True
            weakref.finalize(self, shutil.rmtree, self.store_dir.as_posix(), True)

        self.proc: subprocess.Popen[bytes] | None = None

    def is_alive(self) -> bool:
        """Check if the server is still running."""
        if self.proc is None:
            return False
        return self.proc.poll() is None

    def _cleanup_on_exit(self) -> None:
        if self.proc and self.proc.poll() is None:
            self.output_writer.warning(
                "Stopping server listening on port %d." % self.port
            )
            self.kill()
        if self.clean_log_file_on_exit and self.log_file:
            if Path(self.log_file).exists():
                self.output_writer.warning(
                    "Removing log file {log_file}.".format(log_file=self.log_file)
                )
                Path(self.log_file).unlink()
        if self.clean_pid_file_on_exit and self.pid_file:
            if Path(self.pid_file).exists():
                self.output_writer.warning(
                    "Removing pid file {pid_file}.".format(pid_file=self.pid_file)
                )
                Path(self.pid_file).unlink()

    def start(self, wait: bool = False) -> "NATSD":
        """Start the server listening on the given port.

        By default this method will not wait for the server to be up and running.
        If you want to wait for the server to be up and running, set the `wait` parameter to `True`.
        """
        # Check if there is an nats-server binary in the current working directory
        if Path(self.bin_name).is_file():
            self.bin_path = Path(self.bin_name).resolve(True).as_posix()
        # Path in `../scripts/install_nats.sh`
        elif DEFAULT_BIN_DIR.joinpath(self.bin_name).is_file():
            self.bin_path = DEFAULT_BIN_DIR.joinpath(self.bin_name).as_posix()
        # This directory contains binary
        else:
            self.bin_path = shutil.which(self.bin_name)
            if self.bin_path is None:
                raise FileNotFoundError("nats-server executable not found")
        if self.debug:
            self.output_writer.debug(f"Using nats-server executable at {self.bin_path}")
        cmd = [
            self.bin_path,
        ]

        if not self.config_file.exists():
            raise FileNotFoundError(self.config_file)
        else:
            config_file = self.config_file.absolute().as_posix()
        cmd.append("--config")
        cmd.append(config_file)

        env = os.environ.copy()

        if self.max_cpus:
            env["GOMAXPROCS"] = format(self.max_cpus, ".2f")

        if self.debug:
            self.proc = subprocess.Popen(cmd, env=env)
        else:
            self.proc = subprocess.Popen(
                cmd,
                stdout=subprocess.DEVNULL,
                stderr=subprocess.DEVNULL,
                env=env,
            )

        if self.debug:
            self.output_writer.debug("Server listening on port %d started." % self.port)
        if wait:
            deadline = time.time() + self.timeout or float("inf")
            while True:
                status = self.proc.poll()
                if status is not None:
                    if self.debug:
                        self.output_writer.warning(
                            "Server listening on port {port} already finished running with exit {ret}".format(
                                port=self.port, ret=self.proc.returncode
                            )
                        )
                    raise subprocess.CalledProcessError(
                        returncode=self.proc.returncode, cmd=self.proc.args
                    )
                if time.time() > deadline:
                    self.stop()
                    raise TimeoutError(
                        f"nats-server failed to start before timeout ({self.timeout:.3f}s)"
                    )
                try:
                    if try_open_port(self.address or "localhost", self.port):
                        self.output_writer.debug(
                            f"Server listening on port {self.port} is up."
                        )
                        break
                    else:
                        self.output_writer.debug(
                            f"Waiting for server listening on port {self.port} to be up."
                        )
                except Exception as exc:
                    self.output_writer.debug(
                        f"Waiting for server listening on port {self.port} to be up. Last error: {type(exc).__name__} - {repr(exc)}."
                    )
                time.sleep(0.1)
                continue

        weakref.finalize(self, self._cleanup_on_exit)
        return self

    def stop(self, timeout: float | None = 10) -> None:
        """Stop the server listening on the given port.

        This will first send a `SIGINT` signal to the process and wait for it to finish.
        If the process does not finish within the given timeout, a `SIGKILL` signal will be sent.
        """
        if self.debug:
            self.output_writer.debug(f"Server listening on port {self.port} will stop.")

        if self.proc is None:
            if self.debug:
                self.output_writer.warning(
                    "Failed terminating server listening on port %d" % self.port
                )

        elif self.proc.returncode is not None and self.proc.returncode != 0:
            if self.debug:
                self.output_writer.warning(
                    "Server listening on port {port} already finished running with exit {ret}".format(
                        port=self.port, ret=self.proc.returncode
                    )
                )
        else:
            try:
                self.cancel(timeout=timeout)
            except TimeoutError:
                self.kill()
            if self.debug:
                self.output_writer.debug(
                    "Server listening on %d was stopped." % self.port
                )
        if self.proc and self.proc.returncode != 0:
            raise subprocess.CalledProcessError(
                returncode=self.proc.returncode, cmd=self.proc.args
            )

    def wait(self, timeout: float | None = None) -> int:
        """Wait for process to finish and return status code.

        Possible status codes (non-exhaustive):

        - -1: process is not started yet.
        - 0: process has been stopped after entering lame duck mode or SIGINT signal.
        - 15: process has been stopped due to TERM signal.
        - 2: process has been stopped due to QUIT signal.
        - -9: process has been stopped due to KILL signal.
        """
        if self.proc is None:
            return 0
        status = self.proc.poll()
        if status is not None:
            return status
        return self.proc.wait(timeout=timeout)

    def quit(self, timeout: float | None = None) -> None:
        """Send a `SIGQUIT` signal and wait for process to finish.

        Note:
            This method is only supported on Unix platforms.
        """
        if not self.proc:
            raise ProcessLookupError("Process is not started yet")
        self.proc.send_signal(signal.SIGQUIT)
        self.wait(timeout=timeout)

    def kill(self, timeout: float | None = None) -> None:
        """Send a `SIGKILL` signal and wait for process to finish."""
        if not self.proc:
            raise ProcessLookupError("Process is not started yet")
        self.proc.send_signal(signal.SIGKILL)
        self.wait(timeout=timeout)

    def cancel(self, timeout: float | None = 10) -> None:
        """Send a `SIGINT` signal and wait for process to finish."""
        if not self.proc:
            raise ProcessLookupError("Process is not started yet")
        self.proc.send_signal(signal.SIGINT)
        self.wait(timeout=timeout)

    def reopen_log_file(self) -> None:
        """Send a `SIGUSR1` signal to reopen log file.

        Note:
            This method is only supported on Unix platforms.
        """
        if not self.proc:
            raise ProcessLookupError("Process is not started yet")
        self.proc.send_signal(signal.SIGUSR1)

    def enter_lame_duck_mode(self) -> None:
        """Send a `SIGUSR2` signal to enter lame duck mode.

        Note:
            This method is only supported on Unix platforms.
        """
        if not self.proc:
            raise ProcessLookupError("Process is not started yet")
        self.proc.send_signal(signal.SIGUSR2)

    def reload_config(self) -> None:
        """Send a `SIGHUP` signal to reload configuration file.

        Note:
            This method is only supported on Unix platforms.
        """
        if not self.proc:
            raise ProcessLookupError("Process is not started yet")
        self.proc.send_signal(signal.SIGHUP)

    def __enter__(self) -> "NATSD":
        return self.start(wait=True)

    def __exit__(
        self,
        error_type: type[BaseException] | None = None,
        error: BaseException | None = None,
        traceback: types.TracebackType | None = None,
    ) -> None:
        self.stop()

__init__(port=-1, address=None, client_advertise=None, server_name=None, server_tags=None, user=None, password=None, users=None, token=None, http_port=None, debug=None, trace=None, trace_verbose=None, logtime=None, pid_file=None, ports_file_dir=None, log_file=None, log_size_limit=None, tls_cert=None, tls_key=None, tls_ca_cert=None, cluster_name=None, cluster_url=None, cluster_listen=None, routes=None, no_advertise=None, with_jetstream=False, jetstream_domain=None, store_directory=None, max_memory_store=None, max_file_store=None, max_outstanding_catchup=None, leafnodes_listen_address=None, leafnodes_listen_port=None, leafnode_remotes=None, websocket_listen_address=None, websocket_listen_port=None, websocket_advertise_url=None, websocket_tls_cert=None, websocket_tls_key=None, websocket_same_origin=None, websocket_allowed_origins=None, websocket_compression=None, jwt_path=None, operator=None, system_account=None, system_account_jwt=None, allow_delete_jwt=None, resolver_preload=None, config_file=None, max_cpus=None, start_timeout=2, output_colorized=True, clean_log_file_on_exit=False, clean_pid_file_on_exit=False)

Create a new instance of nats-server daemon.

Parameters:

Name Type Description Default
address str | None

host address nats-server should listen to. Default is 127.0.0.1 (localhost).

None
port int

tcp port nats-server should listen to. Clients can connect to this port. Default is 4222.

-1
server_name str | None

the server name. Default to auto-generated name.

None
user str | None

username required for connections. Omitted by default.

None
password str | None

password required for connections. Omitted by default.

None
token str | None

authorization token required for connections. Omitted by default.

None
http_port int | None

port for http monitoring. Default is 8222.

None
debug bool | None

enable debugging output. Default is False.

None
trace bool | None

enable raw traces. Default is False.

None
pid_file str | Path | None

file to write process ID to. Omitted by default.

None
log_file str | Path | None

file to redirect log output to. Omitted by default.

None
tls_cert str | Path | None

server certificate file (TLS is enabled when both cert and key are provided)

None
tls_key str | Path | None

server key file (TLS is enabled when both cert and key are provided)

None
tls_ca_cert str | Path | None

client certificate for CA verification (mutual TLS is enabled when ca cert is provided)

None
cluster_name str | None

the cluster name. Default to auto-generated name when clustering is enabled.

None
cluster_url str | None

cluster URL for sollicited routes.

None
cluster_listen str | None

cluster URL from which members can solicite routes. Enable cluster mode when set.

None
routes list[str] | None

routes to solicit and connect.

None
no_advertise bool | None

do not advertise known cluster information to clients.

None
with_jetstream bool

enable jetstream engine when True. Disabled by default.

False
store_directory str | Path | None

path to jetstream store directory. Default to a temporary directory.

None
config_file str | Path | None

path to a configuration file. None by default.

None
max_cpus float | None

maximum number of CPU configured using GOMAXPROCS environment variable. By default all CPUs can be used.

None
start_timeout float

amount of time to wait before raising an error when starting the daemon with wait=True.

2
output_colorized bool

enable colorized output. Default is True.

True
Source code in src/nats_contrib/test_server/natsd.py
def __init__(
    self,
    port: int = -1,
    address: str | None = None,
    client_advertise: str | None = None,
    server_name: str | None = None,
    server_tags: dict[str, str] | None = None,
    user: str | None = None,
    password: str | None = None,
    users: list[dict[str, Any]] | None = None,
    token: str | None = None,
    http_port: int | None = None,
    debug: bool | None = None,
    trace: bool | None = None,
    trace_verbose: bool | None = None,
    logtime: bool | None = None,
    pid_file: str | Path | None = None,
    ports_file_dir: str | Path | None = None,
    log_file: str | Path | None = None,
    log_size_limit: int | None = None,
    tls_cert: str | Path | None = None,
    tls_key: str | Path | None = None,
    tls_ca_cert: str | Path | None = None,
    cluster_name: str | None = None,
    cluster_url: str | None = None,
    cluster_listen: str | None = None,
    routes: list[str] | None = None,
    no_advertise: bool | None = None,
    with_jetstream: bool = False,
    jetstream_domain: str | None = None,
    store_directory: str | Path | None = None,
    max_memory_store: int | None = None,
    max_file_store: int | None = None,
    max_outstanding_catchup: int | None = None,
    leafnodes_listen_address: str | None = None,
    leafnodes_listen_port: int | None = None,
    leafnode_remotes: dict[str, Any] | None = None,
    websocket_listen_address: str | None = None,
    websocket_listen_port: int | None = None,
    websocket_advertise_url: str | None = None,
    websocket_tls_cert: str | Path | None = None,
    websocket_tls_key: str | Path | None = None,
    websocket_same_origin: bool | None = None,
    websocket_allowed_origins: list[str] | None = None,
    websocket_compression: bool | None = None,
    jwt_path: str | Path | None = None,
    operator: str | None = None,
    system_account: str | None = None,
    system_account_jwt: str | None = None,
    allow_delete_jwt: bool | None = None,
    resolver_preload: dict[str, str] | None = None,
    config_file: str | Path | None = None,
    max_cpus: float | None = None,
    start_timeout: float = 2,
    output_colorized: bool = True,
    clean_log_file_on_exit: bool = False,
    clean_pid_file_on_exit: bool = False,
) -> None:
    """Create a new instance of nats-server daemon.

    Arguments:
        address: host address nats-server should listen to. Default is 127.0.0.1 (localhost).
        port: tcp port nats-server should listen to. Clients can connect to this port. Default is 4222.
        server_name: the server name. Default to auto-generated name.
        user: username required for connections. Omitted by default.
        password: password required for connections. Omitted by default.
        token: authorization token required for connections. Omitted by default.
        http_port: port for http monitoring. Default is 8222.
        debug: enable debugging output. Default is False.
        trace: enable raw traces. Default is False.
        pid_file: file to write process ID to. Omitted by default.
        log_file: file to redirect log output to. Omitted by default.
        tls_cert: server certificate file (TLS is enabled when both cert and key are provided)
        tls_key: server key file (TLS is enabled when both cert and key are provided)
        tls_ca_cert: client certificate for CA verification (mutual TLS is enabled when ca cert is provided)
        cluster_name: the cluster name. Default to auto-generated name when clustering is enabled.
        cluster_url: cluster URL for sollicited routes.
        cluster_listen: cluster URL from which members can solicite routes. Enable cluster mode when set.
        routes: routes to solicit and connect.
        no_advertise: do not advertise known cluster information to clients.
        with_jetstream: enable jetstream engine when True. Disabled by default.
        store_directory: path to jetstream store directory. Default to a temporary directory.
        config_file: path to a configuration file. None by default.
        max_cpus: maximum number of CPU configured using GOMAXPROCS environment variable. By default all CPUs can be used.
        start_timeout: amount of time to wait before raising an error when starting the daemon with wait=True.
        output_colorized: enable colorized output. Default is True.
    """
    self.output_writer = OutputWriter(colorized=output_colorized)
    if config_file is None:
        config_file = Path(tempfile.mkdtemp()).joinpath("nats.conf")
        generator = ConfigGenerator()
        config_str = generator.render(
            address=address,
            port=port,
            client_advertise=client_advertise,
            server_name=server_name,
            server_tags=server_tags,
            user=user,
            password=password,
            users=users,
            token=token,
            http_port=http_port,
            debug=debug,
            trace=trace,
            trace_verbose=trace_verbose,
            log_time=logtime,
            pid_file=pid_file,
            ports_file_dir=ports_file_dir,
            log_file=log_file,
            log_size_limit=log_size_limit,
            tls_cert=tls_cert,
            tls_key=tls_key,
            tls_ca_cert=tls_ca_cert,
            cluster_name=cluster_name,
            cluster_url=cluster_url,
            cluster_listen=cluster_listen,
            routes=routes,
            no_advertise=no_advertise,
            with_jetstream=with_jetstream,
            jetstream_domain=jetstream_domain,
            store_directory=store_directory,
            max_memory_store=max_memory_store,
            max_file_store=max_file_store,
            max_outstanding_catchup=max_outstanding_catchup,
            leafnodes_listen_address=leafnodes_listen_address,
            leafnodes_listen_port=leafnodes_listen_port,
            leafnode_remotes=leafnode_remotes,
            websocket_listen_address=websocket_listen_address,
            websocket_listen_port=websocket_listen_port,
            websocket_advertise_url=websocket_advertise_url,
            websocket_tls_cert=websocket_tls_cert,
            websocket_tls_key=websocket_tls_key,
            websocket_same_origin=websocket_same_origin,
            websocket_allowed_origins=websocket_allowed_origins,
            websocket_compression=websocket_compression,
            jwt_path=jwt_path,
            operator=operator,
            system_account=system_account,
            system_account_jwt=system_account_jwt,
            allow_delete_jwt=allow_delete_jwt,
            resolver_preload=resolver_preload,
        )
        config_file.write_text(config_str)
        weakref.finalize(self, shutil.rmtree, config_file.parent, True)
    self.server_name = server_name
    self.address = address
    self.port = port
    self.user = user
    self.password = password
    self.timeout = start_timeout
    self.http_port = http_port
    self.token = token
    self.bin_name = "nats-server"
    self.bin_path: str | None = None
    self.config_file = Path(config_file)
    self.debug = debug or os.environ.get("DEBUG_NATS_TEST", "") in (
        "true",
        "1",
        "y",
        "yes",
        "on",
    )
    self.trace = trace or os.environ.get("DEBUG_NATS_TEST", "") in (
        "true",
        "1",
        "y",
        "yes",
        "on",
    )
    self.pid_file = Path(pid_file).absolute().as_posix() if pid_file else None
    self.log_file = Path(log_file).absolute().as_posix() if log_file else None
    self.max_cpus = max_cpus
    self.clean_log_file_on_exit = clean_log_file_on_exit
    self.clean_pid_file_on_exit = clean_pid_file_on_exit
    self.tls_cert = tls_cert
    self.tls_key = tls_key
    self.tls_ca_cert = tls_ca_cert
    if self.tls_ca_cert and self.tls_cert and self.tls_key:
        self.tls_verify = True
        self.tls = False
    elif self.tls_cert and self.tls_key:
        self.tls_verify = False
        self.tls = True
    elif self.tls_ca_cert:
        raise ValueError(
            "Both certificate and key files must be provided with a CA certificate"
        )
    elif self.tls_cert or self.tls_key:
        raise ValueError("Both certificate and key files must be provided")
    else:
        self.tls = False
        self.tls_verify = False

    self.cluster_name = cluster_name
    self.cluster_url = cluster_url
    self.cluster_listen = cluster_listen
    self.routes = routes
    self.no_advertise = no_advertise

    self.jetstream_enabled = with_jetstream
    if store_directory:
        self.store_dir = Path(store_directory)
        self._store_dir_is_temporary = False
    else:
        self.store_dir = Path(tempfile.mkdtemp()).resolve(True)
        self._store_dir_is_temporary = True
        weakref.finalize(self, shutil.rmtree, self.store_dir.as_posix(), True)

    self.proc: subprocess.Popen[bytes] | None = None

cancel(timeout=10)

Send a SIGINT signal and wait for process to finish.

Source code in src/nats_contrib/test_server/natsd.py
def cancel(self, timeout: float | None = 10) -> None:
    """Send a `SIGINT` signal and wait for process to finish."""
    if not self.proc:
        raise ProcessLookupError("Process is not started yet")
    self.proc.send_signal(signal.SIGINT)
    self.wait(timeout=timeout)

enter_lame_duck_mode()

Send a SIGUSR2 signal to enter lame duck mode.

Note

This method is only supported on Unix platforms.

Source code in src/nats_contrib/test_server/natsd.py
def enter_lame_duck_mode(self) -> None:
    """Send a `SIGUSR2` signal to enter lame duck mode.

    Note:
        This method is only supported on Unix platforms.
    """
    if not self.proc:
        raise ProcessLookupError("Process is not started yet")
    self.proc.send_signal(signal.SIGUSR2)

is_alive()

Check if the server is still running.

Source code in src/nats_contrib/test_server/natsd.py
def is_alive(self) -> bool:
    """Check if the server is still running."""
    if self.proc is None:
        return False
    return self.proc.poll() is None

kill(timeout=None)

Send a SIGKILL signal and wait for process to finish.

Source code in src/nats_contrib/test_server/natsd.py
def kill(self, timeout: float | None = None) -> None:
    """Send a `SIGKILL` signal and wait for process to finish."""
    if not self.proc:
        raise ProcessLookupError("Process is not started yet")
    self.proc.send_signal(signal.SIGKILL)
    self.wait(timeout=timeout)

quit(timeout=None)

Send a SIGQUIT signal and wait for process to finish.

Note

This method is only supported on Unix platforms.

Source code in src/nats_contrib/test_server/natsd.py
def quit(self, timeout: float | None = None) -> None:
    """Send a `SIGQUIT` signal and wait for process to finish.

    Note:
        This method is only supported on Unix platforms.
    """
    if not self.proc:
        raise ProcessLookupError("Process is not started yet")
    self.proc.send_signal(signal.SIGQUIT)
    self.wait(timeout=timeout)

reload_config()

Send a SIGHUP signal to reload configuration file.

Note

This method is only supported on Unix platforms.

Source code in src/nats_contrib/test_server/natsd.py
def reload_config(self) -> None:
    """Send a `SIGHUP` signal to reload configuration file.

    Note:
        This method is only supported on Unix platforms.
    """
    if not self.proc:
        raise ProcessLookupError("Process is not started yet")
    self.proc.send_signal(signal.SIGHUP)

reopen_log_file()

Send a SIGUSR1 signal to reopen log file.

Note

This method is only supported on Unix platforms.

Source code in src/nats_contrib/test_server/natsd.py
def reopen_log_file(self) -> None:
    """Send a `SIGUSR1` signal to reopen log file.

    Note:
        This method is only supported on Unix platforms.
    """
    if not self.proc:
        raise ProcessLookupError("Process is not started yet")
    self.proc.send_signal(signal.SIGUSR1)

start(wait=False)

Start the server listening on the given port.

By default this method will not wait for the server to be up and running. If you want to wait for the server to be up and running, set the wait parameter to True.

Source code in src/nats_contrib/test_server/natsd.py
def start(self, wait: bool = False) -> "NATSD":
    """Start the server listening on the given port.

    By default this method will not wait for the server to be up and running.
    If you want to wait for the server to be up and running, set the `wait` parameter to `True`.
    """
    # Check if there is an nats-server binary in the current working directory
    if Path(self.bin_name).is_file():
        self.bin_path = Path(self.bin_name).resolve(True).as_posix()
    # Path in `../scripts/install_nats.sh`
    elif DEFAULT_BIN_DIR.joinpath(self.bin_name).is_file():
        self.bin_path = DEFAULT_BIN_DIR.joinpath(self.bin_name).as_posix()
    # This directory contains binary
    else:
        self.bin_path = shutil.which(self.bin_name)
        if self.bin_path is None:
            raise FileNotFoundError("nats-server executable not found")
    if self.debug:
        self.output_writer.debug(f"Using nats-server executable at {self.bin_path}")
    cmd = [
        self.bin_path,
    ]

    if not self.config_file.exists():
        raise FileNotFoundError(self.config_file)
    else:
        config_file = self.config_file.absolute().as_posix()
    cmd.append("--config")
    cmd.append(config_file)

    env = os.environ.copy()

    if self.max_cpus:
        env["GOMAXPROCS"] = format(self.max_cpus, ".2f")

    if self.debug:
        self.proc = subprocess.Popen(cmd, env=env)
    else:
        self.proc = subprocess.Popen(
            cmd,
            stdout=subprocess.DEVNULL,
            stderr=subprocess.DEVNULL,
            env=env,
        )

    if self.debug:
        self.output_writer.debug("Server listening on port %d started." % self.port)
    if wait:
        deadline = time.time() + self.timeout or float("inf")
        while True:
            status = self.proc.poll()
            if status is not None:
                if self.debug:
                    self.output_writer.warning(
                        "Server listening on port {port} already finished running with exit {ret}".format(
                            port=self.port, ret=self.proc.returncode
                        )
                    )
                raise subprocess.CalledProcessError(
                    returncode=self.proc.returncode, cmd=self.proc.args
                )
            if time.time() > deadline:
                self.stop()
                raise TimeoutError(
                    f"nats-server failed to start before timeout ({self.timeout:.3f}s)"
                )
            try:
                if try_open_port(self.address or "localhost", self.port):
                    self.output_writer.debug(
                        f"Server listening on port {self.port} is up."
                    )
                    break
                else:
                    self.output_writer.debug(
                        f"Waiting for server listening on port {self.port} to be up."
                    )
            except Exception as exc:
                self.output_writer.debug(
                    f"Waiting for server listening on port {self.port} to be up. Last error: {type(exc).__name__} - {repr(exc)}."
                )
            time.sleep(0.1)
            continue

    weakref.finalize(self, self._cleanup_on_exit)
    return self

stop(timeout=10)

Stop the server listening on the given port.

This will first send a SIGINT signal to the process and wait for it to finish. If the process does not finish within the given timeout, a SIGKILL signal will be sent.

Source code in src/nats_contrib/test_server/natsd.py
def stop(self, timeout: float | None = 10) -> None:
    """Stop the server listening on the given port.

    This will first send a `SIGINT` signal to the process and wait for it to finish.
    If the process does not finish within the given timeout, a `SIGKILL` signal will be sent.
    """
    if self.debug:
        self.output_writer.debug(f"Server listening on port {self.port} will stop.")

    if self.proc is None:
        if self.debug:
            self.output_writer.warning(
                "Failed terminating server listening on port %d" % self.port
            )

    elif self.proc.returncode is not None and self.proc.returncode != 0:
        if self.debug:
            self.output_writer.warning(
                "Server listening on port {port} already finished running with exit {ret}".format(
                    port=self.port, ret=self.proc.returncode
                )
            )
    else:
        try:
            self.cancel(timeout=timeout)
        except TimeoutError:
            self.kill()
        if self.debug:
            self.output_writer.debug(
                "Server listening on %d was stopped." % self.port
            )
    if self.proc and self.proc.returncode != 0:
        raise subprocess.CalledProcessError(
            returncode=self.proc.returncode, cmd=self.proc.args
        )

wait(timeout=None)

Wait for process to finish and return status code.

Possible status codes (non-exhaustive):

  • -1: process is not started yet.
  • 0: process has been stopped after entering lame duck mode or SIGINT signal.
  • 15: process has been stopped due to TERM signal.
  • 2: process has been stopped due to QUIT signal.
  • -9: process has been stopped due to KILL signal.
Source code in src/nats_contrib/test_server/natsd.py
def wait(self, timeout: float | None = None) -> int:
    """Wait for process to finish and return status code.

    Possible status codes (non-exhaustive):

    - -1: process is not started yet.
    - 0: process has been stopped after entering lame duck mode or SIGINT signal.
    - 15: process has been stopped due to TERM signal.
    - 2: process has been stopped due to QUIT signal.
    - -9: process has been stopped due to KILL signal.
    """
    if self.proc is None:
        return 0
    status = self.proc.poll()
    if status is not None:
        return status
    return self.proc.wait(timeout=timeout)