mirror of
https://github.com/Nuitka/Nuitka.git
synced 2026-02-01 11:33:19 +01:00
* Also enhanced reporting error exit reporting through the scons logger to provide the exception in the compilation report. * More error exits in scons should do this.
121 lines
3.7 KiB
Python
Executable File
121 lines
3.7 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2025, Kay Hayen, mailto:kay.hayen@gmail.com find license text at end of file
|
|
|
|
|
|
"""Runner for plugins tests of Nuitka.
|
|
|
|
Plugin tests are typically aiming at covering plugin interfaces and their
|
|
correctness, not concrete standard plugins.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Find nuitka package relative to us.
|
|
sys.path.insert(
|
|
0,
|
|
os.path.normpath(
|
|
os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "..")
|
|
),
|
|
)
|
|
|
|
# isort:start
|
|
|
|
from nuitka.containers.OrderedDicts import OrderedDict
|
|
from nuitka.tools.testing.Common import (
|
|
checkTestRequirements,
|
|
compareWithCPython,
|
|
createSearchMode,
|
|
getMainProgramFilename,
|
|
my_print,
|
|
reportSkip,
|
|
scanDirectoryForTestCases,
|
|
setup,
|
|
withPythonPathChange,
|
|
)
|
|
from nuitka.utils.Utils import isWin32Windows
|
|
|
|
|
|
def main():
|
|
# Complex stuff, even more should become common code though.
|
|
setup(suite="plugins", needs_io_encoding=True)
|
|
|
|
search_mode = createSearchMode()
|
|
|
|
# TODO: Add a directory test case scanner instead of duplicating this kind of code.
|
|
for filename in scanDirectoryForTestCases(dirname=".", cases_are_directories=True):
|
|
filename = os.path.relpath(filename)
|
|
|
|
extra_flags = ["expect_success"]
|
|
|
|
# We annotate some tests, use that to lower warnings.
|
|
extra_flags.append("remove_output")
|
|
|
|
active = search_mode.consider(dirname=None, filename=filename)
|
|
|
|
if not active:
|
|
continue
|
|
|
|
# skip each test if their respective requirements are not met
|
|
requirements_met, error_message = checkTestRequirements(filename)
|
|
if not requirements_met:
|
|
reportSkip(error_message, ".", filename)
|
|
continue
|
|
|
|
my_print("Consider output of recursively compiled program:", filename)
|
|
|
|
if filename in ("code_signing_commercial",):
|
|
if not isWin32Windows():
|
|
reportSkip("Plugin only works on Windows", ".", filename)
|
|
continue
|
|
|
|
filename_main = getMainProgramFilename(filename)
|
|
|
|
# TODO: Push this into extra_flags at some point.
|
|
extra_python_path = [
|
|
os.path.abspath(os.path.join(filename, entry))
|
|
for entry in os.listdir(filename)
|
|
if entry.startswith("path")
|
|
]
|
|
|
|
if filename == "output_encryption_commercial":
|
|
extra_flags = OrderedDict(
|
|
(
|
|
("", extra_flags),
|
|
("stderr", extra_flags),
|
|
("stdout", extra_flags),
|
|
("stdout+stderr", extra_flags),
|
|
)
|
|
)
|
|
|
|
with withPythonPathChange(extra_python_path):
|
|
compareWithCPython(
|
|
dirname=filename,
|
|
filename=filename_main,
|
|
extra_flags=extra_flags,
|
|
search_mode=search_mode,
|
|
)
|
|
|
|
search_mode.finish()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|
|
# Python test originally created or extracted from other peoples work. The
|
|
# parts from me are licensed as below. It is at least Free Software where
|
|
# it's copied from other people. In these cases, that will normally be
|
|
# indicated.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|