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

Side by Side Diff: appengine/findit/waterfall/test/extract_deps_info_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 pipeline_utils.appengine_third_party_pipeline_src_pipeline import handlers 5 from pipeline_utils.appengine_third_party_pipeline_python_src_pipeline \
6 import handlers
6 from testing_utils import testing 7 from testing_utils import testing
7 8
8 from common import chromium_deps 9 from common import chromium_deps
9 from common.dependency import Dependency 10 from common.dependency import Dependency
10 from common.diff import ChangeType 11 from common.diff import ChangeType
11 from waterfall.extract_deps_info_pipeline import ExtractDEPSInfoPipeline 12 from waterfall.extract_deps_info_pipeline import ExtractDEPSInfoPipeline
12 13
13 14
14 class ExtractDEPSInfoPipelineTest(testing.AppengineTestCase): 15 class ExtractDEPSInfoPipelineTest(testing.AppengineTestCase):
15 app_module = handlers._APP 16 app_module = handlers._APP
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 107 }
107 change_logs = {} 108 change_logs = {}
108 expected_deps_info = { 109 expected_deps_info = {
109 'deps': {}, 110 'deps': {},
110 'deps_rolls': {}, 111 'deps_rolls': {},
111 } 112 }
112 113
113 pipeline = ExtractDEPSInfoPipeline() 114 pipeline = ExtractDEPSInfoPipeline()
114 deps_info = pipeline.run(failure_info, change_logs) 115 deps_info = pipeline.run(failure_info, change_logs)
115 self.assertEqual(expected_deps_info, deps_info) 116 self.assertEqual(expected_deps_info, deps_info)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698