So callers have access to stderr, return code and more. This causes some churn in the test, but the changes are mechanical.
28 lines
842 B
Python
28 lines
842 B
Python
#
|
|
# Copyright 2023-present ScyllaDB
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
|
|
from rest_api_mock import expected_request
|
|
|
|
|
|
def test_disablebinary(nodetool):
|
|
nodetool("disablebinary", expected_requests=[
|
|
expected_request("DELETE", "/storage_service/native_transport")])
|
|
|
|
|
|
def test_enablebinary(nodetool):
|
|
nodetool("enablebinary", expected_requests=[
|
|
expected_request("POST", "/storage_service/native_transport")])
|
|
|
|
|
|
def test_statusbinary(nodetool):
|
|
res = nodetool("statusbinary", expected_requests=[
|
|
expected_request("GET", "/storage_service/native_transport", response=False)])
|
|
assert res.stdout == "not running\n"
|
|
|
|
res = nodetool("statusbinary", expected_requests=[
|
|
expected_request("GET", "/storage_service/native_transport", response=True)])
|
|
assert res.stdout == "running\n"
|