b64dd31c3c
BUG= Review URL: https://webrtc-codereview.appspot.com/709009 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2590 4adac7df-926f-26a2-2b94-8c16560cd09d
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
#!/usr/bin/env python
|
|
#-*- coding: utf-8 -*-
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
"""Implements the quality tracker dashboard and reporting facilities."""
|
|
|
|
__author__ = 'phoglund@webrtc.org (Patrik Höglund)'
|
|
|
|
import math
|
|
|
|
from google.appengine.ext.webapp import template
|
|
import webapp2
|
|
|
|
import load_build_status
|
|
import load_coverage
|
|
|
|
|
|
class ShowDashboard(webapp2.RequestHandler):
|
|
"""Shows the dashboard page.
|
|
|
|
The page is shown by grabbing data we have stored previously
|
|
in the App Engine database using the AddCoverageData handler.
|
|
"""
|
|
|
|
def get(self):
|
|
build_status_loader = load_build_status.BuildStatusLoader()
|
|
|
|
# Split the build status data in two rows to fit them on the page.
|
|
build_status_data = build_status_loader.load_build_status_data()
|
|
split_point = int(math.ceil(len(build_status_data) / 2.0))
|
|
build_status_data_row_1 = build_status_data[:split_point]
|
|
build_status_data_row_2 = build_status_data[split_point:]
|
|
|
|
last_updated_at = build_status_loader.load_last_modified_at()
|
|
if last_updated_at is None:
|
|
self._show_error_page("No data has yet been uploaded to the dashboard.")
|
|
return
|
|
|
|
last_updated_at = last_updated_at.strftime("%Y-%m-%d %H:%M")
|
|
lkgr = build_status_loader.compute_lkgr()
|
|
|
|
coverage_loader = load_coverage.CoverageDataLoader()
|
|
small_medium_coverage_json_data = (
|
|
coverage_loader.load_coverage_json_data('small_medium_tests'))
|
|
large_coverage_json_data = (
|
|
coverage_loader.load_coverage_json_data('large_tests'))
|
|
|
|
page_template_filename = 'templates/dashboard_template.html'
|
|
self.response.write(template.render(page_template_filename, vars()))
|
|
|
|
def _show_error_page(self, error_message):
|
|
self.response.write('<html><body>%s</body></html>' % error_message)
|
|
|