summaryrefslogtreecommitdiff
path: root/test/misc_constants.py
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-02-16 22:01:38 +0100
committerWojtek Kosior <koszko@koszko.org>2022-02-16 22:01:38 +0100
commitfd9f2fc4783cc606734e61116185c032a63d54a0 (patch)
treeddc162b1df608c3ae51d74f19fbffc92e5cfc3e3 /test/misc_constants.py
parent7965f1b455144220c137bcb25c4967283a6b7ff3 (diff)
downloadbrowser-extension-fd9f2fc4783cc606734e61116185c032a63d54a0.tar.gz
browser-extension-fd9f2fc4783cc606734e61116185c032a63d54a0.zip
fix out-of-source builds
Diffstat (limited to 'test/misc_constants.py')
-rw-r--r--test/misc_constants.py82
1 files changed, 0 insertions, 82 deletions
diff --git a/test/misc_constants.py b/test/misc_constants.py
deleted file mode 100644
index 96bc9e0..0000000
--- a/test/misc_constants.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# SPDX-License-Identifier: AGPL-3.0-or-later
-
-"""
-Miscellaneous data that were found useful
-"""
-
-# This file is part of Haketilo.
-#
-# Copyright (C) 2021 jahoti <jahoti@tilde.team>
-# Copyright (C) 2021 Wojtek Kosior <koszko@koszko.org>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
-#
-# I, Wojtek Kosior, thereby promise not to sue for violation of this
-# file's license. Although I request that you do not make use of this code
-# in a proprietary program, I am not going to enforce this in court.
-
-import re
-from pathlib import Path
-
-here = Path(__file__).resolve().parent
-script_root = here.parent
-awk_script_name = 'compute_scripts.awk'
-
-unit_test_defines = ['-D', 'MOZILLA', '-D', 'MV2', '-D', 'TEST',
- '-D', 'UNIT_TEST', '-D', 'DEBUG']
-
-conf_line_regex = re.compile(r'^([^=]+) = (.*)$')
-conf_settings = {}
-with open(here.parent / 'record.conf', 'rt') as conf:
- for line in conf.readlines():
- match = conf_line_regex.match(line)
- if match:
- conf_settings[match.group(1).strip()] = match.group(2)
-
-default_proxy_host = '127.0.0.1'
-default_proxy_port = 1337
-
-default_cert_dir = here / 'certs'
-
-default_extension_uuid = 'a1291446-be95-48ad-a4c6-a475e389399b'
-default_haketilo_id = '{6fe13369-88e9-440f-b837-5012fb3bedec}'
-
-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
-}