test(ssh): remove basic unauthorized tests from rest ssh tests

remove-rest
Houkime 2023-12-18 11:57:21 +00:00
parent ed4f6bfe32
commit 6c0d4ab42a
1 changed files with 0 additions and 15 deletions

View File

@ -92,21 +92,6 @@ def some_users(mocker, datadir):
return datadir
## TEST 401 ######################################################
@pytest.mark.parametrize("endpoint", ["ssh/enable", "ssh/keys/user"])
def test_unauthorized(client, ssh_off, endpoint):
response = client.post(f"/services/{endpoint}")
assert response.status_code == 401
@pytest.mark.parametrize("endpoint", ["ssh", "ssh/key/send"])
def test_unauthorized_put(client, ssh_off, endpoint):
response = client.put(f"/services/{endpoint}")
assert response.status_code == 401
## TEST ENABLE ######################################################