blob: 8aaeb506512f54aef830e437c789c09e0499b2c1 [file] [log] [blame]
#!/usr/bin/env vpython
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import shutil
import sys
import tempfile
import json
import contextlib
import unittest
from core import path_util
sys.path.insert(1, path_util.GetTelemetryDir())
sys.path.insert(
1, os.path.join(path_util.GetTelemetryDir(), 'third_party', 'mock'))
import mock
import process_perf_results as ppr_module
class _FakeLogdogStream(object):
def write(self, data):
pass
def close(self):
pass
def get_viewer_url(self):
return 'http://foobar.not.exit'
class ProcessPerfResultsIntegrationTest(unittest.TestCase):
def setUp(self):
self.test_dir = tempfile.mkdtemp()
self.output_json = os.path.join(self.test_dir, 'output.json')
self.service_account_file = os.path.join(
self.test_dir, 'fake_service_account.json')
with open(self.service_account_file, 'w') as f:
json.dump([1,2,3,4], f)
self.task_output_dir = os.path.join(
os.path.dirname(__file__), 'testdata', 'task_output_dir')
@contextlib.contextmanager
def mocked_with_access_token(service_account_json, append):
del service_account_json # unused
test_token_file = os.path.join(self.test_dir, 'token-%s' % append)
with open(test_token_file, 'w') as f:
f.write('1234')
yield test_token_file
m1 = mock.patch('process_perf_results.oauth_api.with_access_token',
side_effect=mocked_with_access_token)
m1.start()
self.addCleanup(m1.stop)
m2 = mock.patch(
'process_perf_results.logdog_helper.text',
return_value = 'http://foo.link')
m2.start()
self.addCleanup(m2.stop)
m3 = mock.patch(
'process_perf_results.logdog_helper.open_text',
return_value=_FakeLogdogStream())
m3.start()
self.addCleanup(m3.stop)
m4 = mock.patch('core.results_dashboard.SendResults')
m4.start()
self.addCleanup(m4.stop)
def tearDown(self):
shutil.rmtree(self.test_dir)
def testIntegration(self):
build_properties = json.dumps({
'perf_dashboard_machine_group': 'test-builder',
'buildername': 'test-builder',
'buildnumber': 777,
'got_v8_revision': 'beef1234',
'got_revision_cp': 'refs/heads/master@{#1234}',
'got_webrtc_revision': 'fee123',
'git_revision': 'deadbeef'
})
ppr_module.process_perf_results(
self.output_json, configuration_name='test-builder',
service_account_file = self.service_account_file,
build_properties=build_properties,
task_output_dir=self.task_output_dir,
smoke_test_mode=False)
if __name__ == '__main__':
unittest.main()