chromium-dashboard/api/metricsdata_test.py

142 строки
4.6 KiB
Python
Исходник Обычный вид История

2020-12-23 20:38:06 +03:00
# Copyright 2020 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License")
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import testing_config # Must be imported first
2020-12-23 20:38:06 +03:00
import datetime
import mock
import flask
# from google.appengine.api import users
from framework import users
2020-12-23 20:38:06 +03:00
from api import metricsdata
from internals import models
2020-12-23 20:38:06 +03:00
test_app = flask.Flask(__name__)
2020-12-23 20:38:06 +03:00
20210618 gae ndb to cloud ndb (#1365) * Added Cloud NDB to requirements * google-cloud-core 1.7.0 requires google-auth<2.0dev,>=1.24.0, but you'll have google-auth 1.20.1 which is incompatible. * Running DataStore Emulator on port 15606 and setting environment variable for the same * Replaced GAE NDB imports with Cloud NDB imports * Solved Error: No Context for Ramcache * Solved No NDB Context Error for Cloud NDB * Fixed Error No object QueryOptions * Removed clear_datstore flag * Fixed to_dict() method * Added explicit call to method for stashing values while editing a feature * Using Cloud NDB in testbed * Updated README with JRE instructions and setting the DJANGO_SETTTINGS_MODULE environment variable for django.setup * Added Env Variable for datastore emulator * Migrated accounts_api_test.py * Migrated approvals_api_test.py * Migrated Comments.py and Cues_api_test.py * Migrated Features.py * Migrated metricsdata_test.py * Migrated stars_api_test.py * Fixed Deprecation warning for query options * Migrated token_refresh_api_test.py * Migrated basehandlers_test.py * Migrated permissions_test.py * Migrated ramcache_test.py * Migrated secrets_test.py * Migrated xsrf_test.py * Migrated fetchmetrics_test.py * Migrated models_test.py * Migrated notifier_test.py * Migrated processes_test.py * Migrated featuredetail_test.py * Migrated featurelist_test.py * Migrated guide_test.py * Migrated intentpreview_test.py * Migrated samples_test.py * Removed some unused stubs * Set the consistency of datastore emulator to be 1 * Resetting the database emulator before running the tests * Added npm targets for starting and stopping emulator * Updated README and Developer Docs * Removed unused imports * Made NDB calls DRY
2021-06-29 05:05:04 +03:00
class MetricsFunctionTests(testing_config.CustomTestCase):
2020-12-23 20:38:06 +03:00
def setUp(self):
self.datapoint = models.StableInstance(
day_percentage=0.0123456789, date=datetime.date.today(),
bucket_id=1, property_name='prop')
def test_truncate_day_percentage(self):
updated_datapoint = metricsdata._truncate_day_percentage(self.datapoint)
2020-12-23 20:38:06 +03:00
self.assertEqual(0.01234568, updated_datapoint.day_percentage)
def test_is_googler__anon(self):
testing_config.sign_out()
user = users.get_current_user()
self.assertFalse(metricsdata._is_googler(user))
2020-12-23 20:38:06 +03:00
def test_is_googler__nongoogler(self):
testing_config.sign_in('test@example.com', 111)
user = users.get_current_user()
self.assertFalse(metricsdata._is_googler(user))
2020-12-23 20:38:06 +03:00
def test_is_googler__googler(self):
testing_config.sign_in('test@google.com', 111)
user = users.get_current_user()
self.assertTrue(metricsdata._is_googler(user))
2020-12-23 20:38:06 +03:00
def test_clean_data__no_op(self):
testing_config.sign_in('test@google.com', 111)
datapoints = [self.datapoint]
updated_datapoints = metricsdata._clean_data(datapoints)
self.assertEqual(0.0123456789, list(updated_datapoints)[0].day_percentage)
2020-12-23 20:38:06 +03:00
def test_clean_data__clean_datapoints(self):
testing_config.sign_out()
datapoints = [self.datapoint]
updated_datapoints = metricsdata._clean_data(datapoints)
self.assertEqual(0.01234568, list(updated_datapoints)[0].day_percentage)
2020-12-23 20:38:06 +03:00
20210618 gae ndb to cloud ndb (#1365) * Added Cloud NDB to requirements * google-cloud-core 1.7.0 requires google-auth<2.0dev,>=1.24.0, but you'll have google-auth 1.20.1 which is incompatible. * Running DataStore Emulator on port 15606 and setting environment variable for the same * Replaced GAE NDB imports with Cloud NDB imports * Solved Error: No Context for Ramcache * Solved No NDB Context Error for Cloud NDB * Fixed Error No object QueryOptions * Removed clear_datstore flag * Fixed to_dict() method * Added explicit call to method for stashing values while editing a feature * Using Cloud NDB in testbed * Updated README with JRE instructions and setting the DJANGO_SETTTINGS_MODULE environment variable for django.setup * Added Env Variable for datastore emulator * Migrated accounts_api_test.py * Migrated approvals_api_test.py * Migrated Comments.py and Cues_api_test.py * Migrated Features.py * Migrated metricsdata_test.py * Migrated stars_api_test.py * Fixed Deprecation warning for query options * Migrated token_refresh_api_test.py * Migrated basehandlers_test.py * Migrated permissions_test.py * Migrated ramcache_test.py * Migrated secrets_test.py * Migrated xsrf_test.py * Migrated fetchmetrics_test.py * Migrated models_test.py * Migrated notifier_test.py * Migrated processes_test.py * Migrated featuredetail_test.py * Migrated featurelist_test.py * Migrated guide_test.py * Migrated intentpreview_test.py * Migrated samples_test.py * Removed some unused stubs * Set the consistency of datastore emulator to be 1 * Resetting the database emulator before running the tests * Added npm targets for starting and stopping emulator * Updated README and Developer Docs * Removed unused imports * Made NDB calls DRY
2021-06-29 05:05:04 +03:00
class PopularityTimelineHandlerTests(testing_config.CustomTestCase):
2020-12-23 20:38:06 +03:00
def setUp(self):
self.handler = metricsdata.PopularityTimelineHandler()
2020-12-23 20:38:06 +03:00
self.datapoint = models.StableInstance(
day_percentage=0.0123456789, date=datetime.date.today(),
bucket_id=1, property_name='prop')
self.datapoint.put()
def tearDown(self):
self.datapoint.key.delete()
2020-12-23 20:38:06 +03:00
def test_make_query(self):
actual_query = self.handler.make_query(1)
self.assertEqual(actual_query.kind, models.StableInstance._get_kind())
2020-12-23 20:38:06 +03:00
def test_get_template_data__bad_bucket(self):
url = '/data/timeline/csspopularity?bucket_id=not-a-number'
with test_app.test_request_context(url):
2020-12-23 20:38:06 +03:00
actual = self.handler.get_template_data()
self.assertEqual([], actual)
def test_get_template_data__normal(self):
testing_config.sign_out()
url = '/data/timeline/csspopularity?bucket_id=1'
with test_app.test_request_context(url):
2020-12-23 20:38:06 +03:00
actual_datapoints = self.handler.get_template_data()
self.assertEqual(1, len(actual_datapoints))
self.assertEqual(0.01234568, actual_datapoints[0]['day_percentage'])
# TODO(jrobbins): Test for metricsdata.FeatureHandler.
2020-12-23 20:38:06 +03:00
20210618 gae ndb to cloud ndb (#1365) * Added Cloud NDB to requirements * google-cloud-core 1.7.0 requires google-auth<2.0dev,>=1.24.0, but you'll have google-auth 1.20.1 which is incompatible. * Running DataStore Emulator on port 15606 and setting environment variable for the same * Replaced GAE NDB imports with Cloud NDB imports * Solved Error: No Context for Ramcache * Solved No NDB Context Error for Cloud NDB * Fixed Error No object QueryOptions * Removed clear_datstore flag * Fixed to_dict() method * Added explicit call to method for stashing values while editing a feature * Using Cloud NDB in testbed * Updated README with JRE instructions and setting the DJANGO_SETTTINGS_MODULE environment variable for django.setup * Added Env Variable for datastore emulator * Migrated accounts_api_test.py * Migrated approvals_api_test.py * Migrated Comments.py and Cues_api_test.py * Migrated Features.py * Migrated metricsdata_test.py * Migrated stars_api_test.py * Fixed Deprecation warning for query options * Migrated token_refresh_api_test.py * Migrated basehandlers_test.py * Migrated permissions_test.py * Migrated ramcache_test.py * Migrated secrets_test.py * Migrated xsrf_test.py * Migrated fetchmetrics_test.py * Migrated models_test.py * Migrated notifier_test.py * Migrated processes_test.py * Migrated featuredetail_test.py * Migrated featurelist_test.py * Migrated guide_test.py * Migrated intentpreview_test.py * Migrated samples_test.py * Removed some unused stubs * Set the consistency of datastore emulator to be 1 * Resetting the database emulator before running the tests * Added npm targets for starting and stopping emulator * Updated README and Developer Docs * Removed unused imports * Made NDB calls DRY
2021-06-29 05:05:04 +03:00
class FeatureBucketsHandlerTest(testing_config.CustomTestCase):
2020-12-23 20:38:06 +03:00
def setUp(self):
self.handler = metricsdata.FeatureBucketsHandler()
2020-12-23 20:38:06 +03:00
self.prop_1 = models.CssPropertyHistogram(
bucket_id=1, property_name='b prop')
self.prop_1.put()
self.prop_2 = models.CssPropertyHistogram(
bucket_id=2, property_name='a prop')
self.prop_2.put()
self.prop_3 = models.FeatureObserverHistogram(
bucket_id=3, property_name='b feat')
self.prop_3.put()
self.prop_4 = models.FeatureObserverHistogram(
bucket_id=4, property_name='a feat')
self.prop_4.put()
def tearDown(self):
self.prop_1.key.delete()
self.prop_2.key.delete()
self.prop_3.key.delete()
self.prop_4.key.delete()
2020-12-23 20:38:06 +03:00
def test_get_template_data__css(self):
with test_app.test_request_context('/data/blink/cssprops'):
2020-12-23 20:38:06 +03:00
actual_buckets = self.handler.get_template_data('cssprops')
self.assertEqual(
[(2, 'a prop'), (1, 'b prop')],
actual_buckets)
def test_get_template_data__js(self):
with test_app.test_request_context('/data/blink/features'):
2020-12-23 20:38:06 +03:00
actual_buckets = self.handler.get_template_data('features')
self.assertEqual(
[(4, 'a feat'), (3, 'b feat')],
actual_buckets)