aboutsummaryrefslogtreecommitdiff
path: root/test/misc_constants.py
diff options
context:
space:
mode:
authorjahoti <jahoti@tilde.team>2021-09-04 00:00:00 +0000
committerjahoti <jahoti@tilde.team>2021-09-04 00:00:00 +0000
commit591c48a6903bbf324361610f81c628302cae7049 (patch)
tree174fee77253b147603966d2e6c40c5ffbb5e3e5a /test/misc_constants.py
parent6c69435cef6a9cf5fc6bedfcf853d8ab10dc99ec (diff)
downloadbrowser-extension-591c48a6903bbf324361610f81c628302cae7049.tar.gz
browser-extension-591c48a6903bbf324361610f81c628302cae7049.zip
Make test suite mildly usable
Allow test/server.py to be run as a command and add some "webpages" for it.
Diffstat (limited to 'test/misc_constants.py')
-rw-r--r--test/misc_constants.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/misc_constants.py b/test/misc_constants.py
new file mode 100644
index 0000000..c6c134f
--- /dev/null
+++ b/test/misc_constants.py
@@ -0,0 +1,34 @@
+# Copyright (C) 2021 jahoti <jahoti@tilde.team>
+# Licensing information is collated in the `copyright` file
+
+"""
+Miscellaneous data that were found useful
+"""
+
+mime_types = {
+ "7z": "application/x-7z-compressed", "oga": "audio/ogg",
+ "abw": "application/x-abiword", "ogv": "video/ogg",
+ "arc": "application/x-freearc", "ogx": "application/ogg",
+ "bin": "application/octet-stream", "opus": "audio/opus",
+ "bz": "application/x-bzip", "otf": "font/otf",
+ "bz2": "application/x-bzip2", "pdf": "application/pdf",
+ "css": "text/css", "png": "image/png",
+ "csv": "text/csv", "sh": "application/x-sh",
+ "gif": "image/gif", "svg": "image/svg+xml",
+ "gz": "application/gzip", "tar": "application/x-tar",
+ "htm": "text/html", "ts": "video/mp2t",
+ "html": "text/html", "ttf": "font/ttf",
+ "ico": "image/vnd.microsoft.icon", "txt": "text/plain",
+ "js": "text/javascript", "wav": "audio/wav",
+ "jpeg": "image/jpeg", "weba": "audio/webm",
+ "jpg": "image/jpeg", "webm": "video/webm",
+ "json": "application/json", "woff": "font/woff",
+ "mjs": "text/javascript", "woff2": "font/woff2",
+ "mp3": "audio/mpeg", "xhtml": "application/xhtml+xml",
+ "mp4": "video/mp4", "zip": "application/zip",
+ "mpeg": "video/mpeg",
+ "odp": "application/vnd.oasis.opendocument.presentation",
+ "ods": "application/vnd.oasis.opendocument.spreadsheet",
+ "odt": "application/vnd.oasis.opendocument.text",
+ "xml": "application/xml" # text/xml if readable from casual users
+}