Beispiel #1
0
 def test_fetch_web_test_results_with_no_results_fetched(self):
     buildbot = BuildBot()
     buildbot.web = MockWeb()
     results = buildbot.fetch_web_test_results(buildbot.results_url('B'))
     self.assertIsNone(results)
     self.assertLog([
         'DEBUG: Got 404 response from:\n'
         'https://test-results.appspot.com/data/layout_results/B/results/layout-test-results/failing_results.json\n'
     ])
Beispiel #2
0
    def test_fetch_web_test_results_with_no_results_fetched(self):
        buildbot = BuildBot()

        def fetch_file(url):
            return None if url.endswith('failing_results.json') else 'contents'

        buildbot.fetch_file = fetch_file
        results = buildbot.fetch_web_test_results(buildbot.results_url('B'))
        self.assertIsNone(results)
        self.assertLog([
            'DEBUG: Got 404 response from:\n'
            'https://test-results.appspot.com/data/layout_results/B/results/layout-test-results/failing_results.json\n'
        ])