diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /dom/bindings/mach_commands.py | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/bindings/mach_commands.py')
-rw-r--r-- | dom/bindings/mach_commands.py | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/dom/bindings/mach_commands.py b/dom/bindings/mach_commands.py new file mode 100644 index 0000000000..28d2780156 --- /dev/null +++ b/dom/bindings/mach_commands.py @@ -0,0 +1,71 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, # You can obtain one at http://mozilla.org/MPL/2.0/. + +from __future__ import absolute_import, unicode_literals + +import os +import sys + +from mach.decorators import ( + CommandArgument, + CommandProvider, + Command, +) + +from mozbuild.base import MachCommandBase +from mozbuild.util import mkdir + + +def get_test_parser(): + import runtests + + return runtests.get_parser + + +@CommandProvider +class WebIDLProvider(MachCommandBase): + @Command( + "webidl-example", + category="misc", + description="Generate example files for a WebIDL interface.", + ) + @CommandArgument( + "interface", nargs="+", help="Interface(s) whose examples to generate." + ) + def webidl_example(self, interface): + from mozwebidlcodegen import BuildSystemWebIDL + + manager = self._spawn(BuildSystemWebIDL).manager + for i in interface: + manager.generate_example_files(i) + + @Command( + "webidl-parser-test", + category="testing", + parser=get_test_parser, + description="Run WebIDL tests (Interface Browser parser).", + ) + def webidl_test(self, **kwargs): + sys.path.insert(0, os.path.join(self.topsrcdir, "other-licenses", "ply")) + + # Ensure the topobjdir exists. On a Taskcluster test run there won't be + # an objdir yet. + mkdir(self.topobjdir) + + # Make sure we drop our cached grammar bits in the objdir, not + # wherever we happen to be running from. + os.chdir(self.topobjdir) + + if kwargs["verbose"] is None: + kwargs["verbose"] = False + + # Now we're going to create the cached grammar file in the + # objdir. But we're going to try loading it as a python + # module, so we need to make sure the objdir is in our search + # path. + sys.path.insert(0, self.topobjdir) + + import runtests + + return runtests.run_tests(kwargs["tests"], verbose=kwargs["verbose"]) |