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

Unified Diff: appengine/findit/waterfall/test/waterfall_config_test.py

Issue 1999653003: [Findit] Bailing out if build data is too old and moving relevant settings to config (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Addressing comments Created 4 years, 7 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
Index: appengine/findit/waterfall/test/waterfall_config_test.py
diff --git a/appengine/findit/waterfall/test/waterfall_config_test.py b/appengine/findit/waterfall/test/waterfall_config_test.py
index 3f6c2ee70631ca57575769ba91b01fc962c9c25e..15d9ec61b5332c995f0779ec90ccec047ae0546d 100644
--- a/appengine/findit/waterfall/test/waterfall_config_test.py
+++ b/appengine/findit/waterfall/test/waterfall_config_test.py
@@ -101,6 +101,15 @@ class MastersTest(wf_testcase.WaterfallTestCase):
},
waterfall_config.GetSwarmingSettings())
+ def testGetDownloadBuildDataSettings(self):
+ self.assertEqual(
+ {
+ 'download_interval_seconds': 10,
+ 'memcache_master_download_expiration_seconds': 3600,
+ 'use_chrome_build_extract': True
+ },
+ waterfall_config.GetDownloadBuildDataSettings())
+
def testEnableStrictRegexForCompileLinkFailures(self):
self.assertFalse(
waterfall_config.EnableStrictRegexForCompileLinkFailures('m', 'b'))
« no previous file with comments | « appengine/findit/waterfall/test/try_job_util_test.py ('k') | appengine/findit/waterfall/test/wf_testcase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698