mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-23 08:31:05 +00:00
52c2aa474f
* Rebrand project to PiSCSI - rascsi ->piscsi - rasctl -> scsictl - rasdump -> scsidump - ras* -> piscsi* (rasutil -> piscsi_util, etc.) * Refined the formatting and wording of the app startup banner * Kept some references to rascsi and rasctl where backwards compatibility is concerned * Point to the new github repo URL Co-authored-by: nucleogenic <nr@nucleogenic.com> Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
from conftest import STATUS_SUCCESS, STATUS_ERROR
|
|
|
|
|
|
# route("/login", methods=["POST"])
|
|
def test_login_with_valid_credentials(pytestconfig, http_client_unauthenticated):
|
|
# Note: This test depends on the piscsi group existing and 'username' a member the group
|
|
response = http_client_unauthenticated.post(
|
|
"/login",
|
|
data={
|
|
"username": pytestconfig.getoption("piscsi_username"),
|
|
"password": pytestconfig.getoption("piscsi_password"),
|
|
},
|
|
)
|
|
|
|
response_data = response.json()
|
|
|
|
assert response.status_code == 200
|
|
assert response_data["status"] == STATUS_SUCCESS
|
|
assert "env" in response_data["data"]
|
|
|
|
|
|
# route("/login", methods=["POST"])
|
|
def test_login_with_invalid_credentials(http_client_unauthenticated):
|
|
response = http_client_unauthenticated.post(
|
|
"/login",
|
|
data={
|
|
"username": "__INVALID_USER__",
|
|
"password": "__INVALID_PASS__",
|
|
},
|
|
)
|
|
|
|
response_data = response.json()
|
|
|
|
assert response.status_code == 401
|
|
assert response_data["status"] == STATUS_ERROR
|
|
assert response_data["messages"][0]["message"] == (
|
|
"You must log in with valid credentials for a user in the 'piscsi' group"
|
|
)
|
|
|
|
|
|
# route("/logout")
|
|
def test_logout(http_client):
|
|
response = http_client.get("/logout")
|
|
assert response.status_code == 200
|