| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import copy |
| 6 |
| 7 from google.appengine.api import users |
| 8 |
| 9 from common.findit_testcase import FinditTestCase |
| 10 from model.crash.crash_config import CrashConfig |
| 11 |
| 12 |
| 13 DEFAULT_CONFIG_DATA = { |
| 14 'fracas': { |
| 15 'crash_data_push_token': 'secret_token', |
| 16 'analysis_result_pubsub_topic': 'projects/project-name/topics/name', |
| 17 'supported_platform_list_by_channel': { |
| 18 'canary': ['win', 'mac'], |
| 19 'supported_channel': ['supported_platform'], |
| 20 }, |
| 21 } |
| 22 } |
| 23 |
| 24 class CrashTestCase(FinditTestCase): # pragma: no cover. |
| 25 |
| 26 def setUp(self): |
| 27 super(CrashTestCase, self).setUp() |
| 28 CrashConfig.Get().Update( |
| 29 users.User(email='admin@chromium.org'), True, **DEFAULT_CONFIG_DATA) |
| 30 |
| 31 |
| OLD | NEW |