2014-11-03 20:20:00 +03:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-04-12 02:56:55 +04:00
|
|
|
import json
|
|
|
|
import os
|
2013-11-14 05:24:24 +04:00
|
|
|
from django.conf import settings
|
2013-04-12 02:56:55 +04:00
|
|
|
|
2013-08-20 00:45:44 +04:00
|
|
|
|
2013-04-12 02:56:55 +04:00
|
|
|
class SampleData(object):
|
|
|
|
|
2014-01-31 23:35:46 +04:00
|
|
|
@classmethod
|
|
|
|
def get_credentials(cls):
|
|
|
|
|
|
|
|
credentials = {
|
|
|
|
'test_treeherder': {
|
2015-02-15 17:52:31 +03:00
|
|
|
'consumer_key': '8de17836-4a9b-45f5-824c-5ada76713334',
|
|
|
|
'consumer_secret': '0f71d011-d773-4831-9f1c-17b237207467'
|
2014-01-31 23:35:46 +04:00
|
|
|
}
|
2015-02-15 17:52:31 +03:00
|
|
|
}
|
2014-01-31 23:35:46 +04:00
|
|
|
|
|
|
|
return credentials
|
|
|
|
|
2014-05-31 01:49:41 +04:00
|
|
|
@classmethod
|
|
|
|
def get_talos_perf_data(cls):
|
|
|
|
with open("{0}/sample_data/artifacts/performance/talos_perf.json".format(
|
2015-02-15 17:52:31 +03:00
|
|
|
os.path.dirname(__file__))) as f:
|
2015-03-03 04:59:49 +03:00
|
|
|
return json.loads(f.read())
|
2014-05-31 01:49:41 +04:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_b2g_perf_data(cls):
|
|
|
|
with open("{0}/sample_data/artifacts/performance/b2g_perf.json".format(
|
2015-02-15 17:52:31 +03:00
|
|
|
os.path.dirname(__file__))) as f:
|
2015-03-03 04:59:49 +03:00
|
|
|
return json.loads(f.read())
|
2014-05-31 01:49:41 +04:00
|
|
|
|
2013-04-12 02:56:55 +04:00
|
|
|
def __init__(self):
|
|
|
|
self.job_data_file = "{0}/sample_data/job_data.txt".format(
|
|
|
|
os.path.dirname(__file__)
|
2013-08-20 00:45:44 +04:00
|
|
|
)
|
2013-04-12 02:56:55 +04:00
|
|
|
|
2013-11-14 05:24:24 +04:00
|
|
|
self.resultset_data_file = "{0}/sample_data/resultset_data.json".format(
|
|
|
|
os.path.dirname(__file__)
|
|
|
|
)
|
|
|
|
|
2013-06-05 02:51:52 +04:00
|
|
|
self.logs_dir = "{0}/sample_data/logs".format(
|
|
|
|
os.path.dirname(__file__)
|
2013-08-20 00:45:44 +04:00
|
|
|
)
|
2014-10-14 03:45:10 +04:00
|
|
|
self.performance_logs_dir = "{0}/sample_data/artifacts/performance/perf_logs".format(
|
|
|
|
os.path.dirname(__file__)
|
|
|
|
)
|
2013-08-20 00:45:44 +04:00
|
|
|
|
|
|
|
with open("{0}/sample_data/artifacts/structured_log_artifact.json".format(
|
|
|
|
os.path.dirname(__file__))) as f:
|
|
|
|
self.structured_log_artifact = f.readlines()
|
|
|
|
|
|
|
|
with open("{0}/sample_data/artifacts/job_artifact.json".format(
|
|
|
|
os.path.dirname(__file__))) as f:
|
|
|
|
self.job_artifact = f.readlines()
|
2013-04-12 02:56:55 +04:00
|
|
|
|
|
|
|
self.job_data = []
|
2013-11-14 05:24:24 +04:00
|
|
|
self.resultset_data = []
|
2013-04-12 02:56:55 +04:00
|
|
|
|
|
|
|
self.initialize_data()
|
|
|
|
|
|
|
|
def initialize_data(self):
|
|
|
|
with open(self.job_data_file) as f:
|
|
|
|
for line in f.readlines():
|
2013-08-20 00:45:44 +04:00
|
|
|
self.job_data.append(json.loads(line.strip()))
|
2013-04-12 02:56:55 +04:00
|
|
|
|
2013-11-14 05:24:24 +04:00
|
|
|
with open(self.resultset_data_file) as f:
|
|
|
|
self.resultset_data = json.loads(f.read())
|
2013-11-14 09:31:59 +04:00
|
|
|
|
|
|
|
# ensure that the repository values for all the revisions have the
|
|
|
|
# same name as the db test name in settings. If this is not
|
|
|
|
# the same, the tests will not pass.
|
2013-11-14 05:24:24 +04:00
|
|
|
for rs in self.resultset_data:
|
|
|
|
for rev in rs["revisions"]:
|
|
|
|
rev["repository"] = settings.DATABASES["default"]["TEST_NAME"]
|
|
|
|
|
2013-06-05 02:51:52 +04:00
|
|
|
def get_log_path(self, name):
|
|
|
|
"""Returns the full path to a log file"""
|
2014-01-31 23:35:46 +04:00
|
|
|
return "{0}/{1}".format(self.logs_dir, name)
|
|
|
|
|
2014-10-14 03:45:10 +04:00
|
|
|
def get_performance_logs(self):
|
|
|
|
"""Returns a list of full paths to performance log files"""
|
|
|
|
files = os.listdir(self.performance_logs_dir)
|
|
|
|
for i, f in enumerate(files):
|
|
|
|
files[i] = 'file://{0}/{1}'.format(self.performance_logs_dir, f)
|
|
|
|
return files
|