Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: tools/mb/mb_unittest.py

Issue 1803293002: Only enforce the 'chromium' check in MB for the default config file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweak exception clauses Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/mb/mb.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mb/mb_unittest.py
diff --git a/tools/mb/mb_unittest.py b/tools/mb/mb_unittest.py
index 6a0218c664194673e522059b2b010891a8807176..f3d42b23bf3ad9fe08e1641c38a821ca42ff969e 100755
--- a/tools/mb/mb_unittest.py
+++ b/tools/mb/mb_unittest.py
@@ -198,17 +198,11 @@ class UnitTest(unittest.TestCase):
mbw.files[path] = contents
return mbw
- def check(self, args, mbw=None, files=None, out=None, err=None, ret=None,
- exception=None):
+ def check(self, args, mbw=None, files=None, out=None, err=None, ret=None):
if not mbw:
mbw = self.fake_mbw(files)
- mbw.ParseArgs(args)
- actual_ret = None
- if exception is not None:
- self.assertRaisesRegexp(Exception, exception, mbw.args.func)
- else:
- actual_ret = mbw.args.func()
+ actual_ret = mbw.Main(args)
self.assertEqual(actual_ret, ret)
if out is not None:
@@ -446,12 +440,14 @@ class UnitTest(unittest.TestCase):
sys.stdout = orig_stdout
def test_validate(self):
- self.check(['validate'], ret=0)
+ mbw = self.fake_mbw()
+ mbw.files[mbw.default_config] = TEST_CONFIG
+ self.check(['validate'], mbw=mbw, ret=0)
def test_bad_validate(self):
mbw = self.fake_mbw()
mbw.files[mbw.default_config] = TEST_BAD_CONFIG
- self.check(['validate'], mbw=mbw, exception=TEST_BAD_CONFIG_ERR)
+ self.check(['validate'], mbw=mbw, ret=1)
if __name__ == '__main__':
« no previous file with comments | « tools/mb/mb.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698