mirror of
https://github.com/akuker/RASCSI.git
synced 2024-10-31 13:07:50 +00:00
88ff542aeb
- Fixed ignore patterns in .dockerignore - Added healthchecks to backend and web containers - Reduced Docker image sizes - Removed RaSCSI references in various areas (e.g. rascsi -> backend) - Added compilation-only step to easyinstall.sh - Moved apt package lists to variables - Revert to triggering GitHub Actions runs on push - Updated web/frontend_checks workflow to run black and flake8 against all Python sources - Capture log files from backend/web containers - Fix None to float conversion bug when user agent is absent or unrecognised
90 lines
2.5 KiB
Python
90 lines
2.5 KiB
Python
import pytest
|
|
import uuid
|
|
import warnings
|
|
import datetime
|
|
|
|
SCSI_ID = 6
|
|
FILE_SIZE_1_MIB = 1048576
|
|
STATUS_SUCCESS = "success"
|
|
STATUS_ERROR = "error"
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def create_test_image(request, http_client):
|
|
images = []
|
|
|
|
def create(image_type="hds", size=1, auto_delete=True):
|
|
file_prefix = f"{request.function.__name__}___{uuid.uuid4()}"
|
|
file_name = f"{file_prefix}.{image_type}"
|
|
|
|
response = http_client.post(
|
|
"/files/create",
|
|
data={
|
|
"file_name": file_prefix,
|
|
"type": image_type,
|
|
"size": size,
|
|
},
|
|
)
|
|
|
|
if response.json()["status"] != STATUS_SUCCESS:
|
|
raise Exception("Failed to create temporary image")
|
|
|
|
if auto_delete:
|
|
images.append(
|
|
{
|
|
"file_name": file_name,
|
|
"function": request.function,
|
|
"created": str(datetime.datetime.now()),
|
|
}
|
|
)
|
|
|
|
return file_name
|
|
|
|
def delete():
|
|
for image in images:
|
|
response = http_client.post("/files/delete", data={"file_name": image["file_name"]})
|
|
if response.status_code != 200 or response.json()["status"] != STATUS_SUCCESS:
|
|
warnings.warn(
|
|
f"Failed to auto-delete file created with create_test_image fixture: {image}"
|
|
)
|
|
|
|
request.addfinalizer(delete)
|
|
return create
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def list_files(http_client):
|
|
def files():
|
|
return [f["name"] for f in http_client.get("/").json()["data"]["files"]]
|
|
|
|
return files
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def list_attached_images(http_client):
|
|
def files():
|
|
return http_client.get("/").json()["data"]["attached_images"]
|
|
|
|
return files
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def delete_file(http_client):
|
|
def delete(file_name):
|
|
response = http_client.post("/files/delete", data={"file_name": file_name})
|
|
if response.status_code != 200 or response.json()["status"] != STATUS_SUCCESS:
|
|
warnings.warn(f"Failed to delete file via delete_file fixture: {file_name}")
|
|
|
|
return delete
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def detach_devices(http_client):
|
|
def detach():
|
|
response = http_client.post("/scsi/detach_all")
|
|
if response.json()["status"] == STATUS_SUCCESS:
|
|
return True
|
|
raise Exception("Failed to detach SCSI devices")
|
|
|
|
return detach
|