mirror of
https://github.com/langgenius/dify.git
synced 2026-06-17 14:51:10 +08:00
Adds TestErrorMatrix (23 parametrized rows) covering every exception class raised or mapped in files.py and app_run.py, asserting the exact wire code each path emits and that every emitted code is an OpenApiErrorCode member. Also adds error_code = "filename_not_exists" to FilenameNotExistsError, which had no explicit code and was falling through to the status-map (bad_request).
55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
from werkzeug.exceptions import HTTPException
|
|
|
|
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class FilenameNotExistsError(HTTPException):
|
|
error_code = "filename_not_exists"
|
|
code = 400
|
|
description = "The specified filename does not exist."
|
|
|
|
|
|
class RemoteFileUploadError(HTTPException):
|
|
code = 400
|
|
description = "Error uploading remote file."
|
|
|
|
|
|
class FileTooLargeError(BaseHTTPException):
|
|
error_code = "file_too_large"
|
|
description = "File size exceeded. {message}"
|
|
code = 413
|
|
|
|
|
|
class UnsupportedFileTypeError(BaseHTTPException):
|
|
error_code = "unsupported_file_type"
|
|
description = "File type not allowed."
|
|
code = 415
|
|
|
|
|
|
class BlockedFileExtensionError(BaseHTTPException):
|
|
error_code = "file_extension_blocked"
|
|
description = "The file extension is blocked for security reasons."
|
|
code = 400
|
|
|
|
|
|
class TooManyFilesError(BaseHTTPException):
|
|
error_code = "too_many_files"
|
|
description = "Only one file is allowed."
|
|
code = 400
|
|
|
|
|
|
class NoFileUploadedError(BaseHTTPException):
|
|
error_code = "no_file_uploaded"
|
|
description = "Please upload your file."
|
|
code = 400
|
|
|
|
|
|
class NotFoundError(BaseHTTPException):
|
|
error_code = "not_found"
|
|
code = 404
|
|
|
|
|
|
class InvalidArgumentError(BaseHTTPException):
|
|
error_code = "invalid_param"
|
|
code = 400
|