summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/test/configure/lint.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mozbuild/mozbuild/test/configure/lint.py')
-rw-r--r--python/mozbuild/mozbuild/test/configure/lint.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/test/configure/lint.py b/python/mozbuild/mozbuild/test/configure/lint.py
new file mode 100644
index 0000000000..59d41da264
--- /dev/null
+++ b/python/mozbuild/mozbuild/test/configure/lint.py
@@ -0,0 +1,62 @@
+# 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/.
+
+import os
+import unittest
+
+import six
+from buildconfig import topobjdir, topsrcdir
+from mozunit import main
+
+from mozbuild.configure.lint import LintSandbox
+
+test_path = os.path.abspath(__file__)
+
+
+class LintMeta(type):
+ def __new__(mcs, name, bases, attrs):
+ def create_test(project, func):
+ def test(self):
+ return func(self, project)
+
+ return test
+
+ for project in (
+ "browser",
+ "js",
+ "memory",
+ "mobile/android",
+ ):
+ attrs["test_%s" % project.replace("/", "_")] = create_test(
+ project, attrs["lint"]
+ )
+
+ return type.__new__(mcs, name, bases, attrs)
+
+
+# We don't actually need python2 compat, but this makes flake8 happy.
+@six.add_metaclass(LintMeta)
+class Lint(unittest.TestCase):
+ def setUp(self):
+ self._curdir = os.getcwd()
+ os.chdir(topobjdir)
+
+ def tearDown(self):
+ os.chdir(self._curdir)
+
+ def lint(self, project):
+ sandbox = LintSandbox(
+ {
+ "OLD_CONFIGURE": os.path.join(topsrcdir, "old-configure"),
+ "MOZCONFIG": os.path.join(
+ os.path.dirname(test_path), "data", "empty_mozconfig"
+ ),
+ },
+ ["configure", "--enable-project=%s" % project, "--help"],
+ )
+ sandbox.run(os.path.join(topsrcdir, "moz.configure"))
+
+
+if __name__ == "__main__":
+ main()