mirror of
https://github.com/google/earthengine-api.git
synced 2025-12-08 19:26:12 +00:00
44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
#!/usr/bin/env python
|
|
"""Test for ee._helpers.
|
|
|
|
When the function in question is defined in ee/_helpers.py but exported for
|
|
public use by ee/__init__.py, the test is located here but uses the ee.-prefixed
|
|
name since that is the name we want to ensure works.
|
|
"""
|
|
|
|
import six
|
|
|
|
import unittest
|
|
import ee
|
|
from ee import apitestcase
|
|
from ee.apifunction import ApiFunction
|
|
from ee.computedobject import ComputedObject
|
|
|
|
|
|
class ProfilingTest(apitestcase.ApiTestCase):
|
|
|
|
def MockValue(self, value):
|
|
"""Overridden to check for profiling-related data."""
|
|
hooked = ee.data._thread_locals.profile_hook is not None
|
|
is_get_profiles = (isinstance(value, ComputedObject) and value.func ==
|
|
ApiFunction.lookup('Profile.getProfiles'))
|
|
return 'hooked=%s getProfiles=%s' % (hooked, is_get_profiles)
|
|
|
|
def testProfilePrinting(self):
|
|
ee.data.computeValue = self.MockValue
|
|
out = six.StringIO()
|
|
with ee.profilePrinting(destination=out):
|
|
self.assertEqual('hooked=True getProfiles=False', ee.Number(1).getInfo())
|
|
self.assertEqual('hooked=False getProfiles=True', out.getvalue())
|
|
|
|
def testProfilePrintingDefaultSmoke(self):
|
|
# This will print to sys.stderr, so we can't make any assertions about the
|
|
# output. But we can check that it doesn't fail.
|
|
ee.data.computeValue = self.MockValue
|
|
with ee.profilePrinting():
|
|
self.assertEqual('hooked=True getProfiles=False', ee.Number(1).getInfo())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|