2012-02-01 11:59:23 +01:00
|
|
|
#!/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 a handler for adding coverage data."""
|
|
|
|
|
|
|
|
__author__ = 'phoglund@webrtc.org (Patrik Höglund)'
|
|
|
|
|
|
|
|
import datetime
|
2012-02-27 16:42:25 +01:00
|
|
|
import logging
|
2012-02-01 11:59:23 +01:00
|
|
|
|
|
|
|
from google.appengine.ext import db
|
|
|
|
|
|
|
|
import oauth_post_request_handler
|
|
|
|
|
|
|
|
class CoverageData(db.Model):
|
|
|
|
"""This represents one coverage report from the build bot."""
|
|
|
|
date = db.DateTimeProperty(required=True)
|
|
|
|
line_coverage = db.FloatProperty(required=True)
|
|
|
|
function_coverage = db.FloatProperty(required=True)
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_percentage(string_value):
|
|
|
|
percentage = float(string_value)
|
|
|
|
if percentage < 0.0 or percentage > 100.0:
|
|
|
|
raise ValueError('%s is not a valid percentage.' % string_value)
|
|
|
|
return percentage
|
|
|
|
|
|
|
|
|
|
|
|
class AddCoverageData(oauth_post_request_handler.OAuthPostRequestHandler):
|
|
|
|
"""Used to report coverage data.
|
|
|
|
|
|
|
|
Coverage data is reported as a POST request and should contain, aside from
|
|
|
|
the regular oauth_* parameters, these values:
|
|
|
|
|
|
|
|
date: The POSIX timestamp for when the coverage observation was made.
|
|
|
|
line_coverage: A float percentage in the interval 0-100.0.
|
|
|
|
function_coverage: A float percentage in the interval 0-100.0.
|
|
|
|
"""
|
|
|
|
|
2012-02-06 11:55:12 +01:00
|
|
|
def _parse_and_store_data(self):
|
2012-02-01 11:59:23 +01:00
|
|
|
try:
|
|
|
|
posix_time = int(self.request.get('date'))
|
|
|
|
parsed_date = datetime.datetime.fromtimestamp(posix_time)
|
|
|
|
|
|
|
|
line_coverage_string = self.request.get('line_coverage')
|
|
|
|
line_coverage = _parse_percentage(line_coverage_string)
|
|
|
|
function_coverage_string = self.request.get('function_coverage')
|
|
|
|
function_coverage = _parse_percentage(function_coverage_string)
|
|
|
|
|
2012-02-27 16:42:25 +01:00
|
|
|
except ValueError as error:
|
|
|
|
logger.warn('Invalid parameter in request: %s.' % error)
|
|
|
|
self.response.set_status(400)
|
2012-02-01 11:59:23 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
item = CoverageData(date=parsed_date,
|
|
|
|
line_coverage=line_coverage,
|
|
|
|
function_coverage=function_coverage)
|
|
|
|
item.put()
|
|
|
|
|