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

Side by Side Diff: appengine/findit/waterfall/test/pull_changelog_pipeline_test.py

Issue 1260743006: Update appengine-pipelines before files API turndown. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix typo. Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from datetime import datetime 5 from datetime import datetime
6 6
7 from pipeline_utils.appengine_third_party_pipeline_src_pipeline import handlers 7 from pipeline_utils.appengine_third_party_pipeline_python_src_pipeline \
8 import handlers
8 from testing_utils import testing 9 from testing_utils import testing
9 10
10 from waterfall.pull_changelog_pipeline import PullChangelogPipeline 11 from waterfall.pull_changelog_pipeline import PullChangelogPipeline
11 12
12 13
13 REV1_COMMIT_LOG = """)]}' 14 REV1_COMMIT_LOG = """)]}'
14 { 15 {
15 "commit": "rev1", 16 "commit": "rev1",
16 "tree": "tree_rev", 17 "tree": "tree_rev",
17 "parents": [ 18 "parents": [
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 def testBailOutIfNoValidChromiumRevision(self): 108 def testBailOutIfNoValidChromiumRevision(self):
108 failure_info = { 109 failure_info = {
109 'failed': True, 110 'failed': True,
110 'chromium_revision': None, 111 'chromium_revision': None,
111 } 112 }
112 expected_change_logs = {} 113 expected_change_logs = {}
113 114
114 pipeline = PullChangelogPipeline() 115 pipeline = PullChangelogPipeline()
115 change_logs = pipeline.run(failure_info) 116 change_logs = pipeline.run(failure_info)
116 self.assertEqual(expected_change_logs, change_logs) 117 self.assertEqual(expected_change_logs, change_logs)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698