OLD | NEW |
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 Loading... |
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) |
OLD | NEW |