summaryrefslogtreecommitdiffstats
path: root/toolkit/components/telemetry/tests/python/test_histogramtools_strict.py
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/telemetry/tests/python/test_histogramtools_strict.py')
-rw-r--r--toolkit/components/telemetry/tests/python/test_histogramtools_strict.py47
1 files changed, 0 insertions, 47 deletions
diff --git a/toolkit/components/telemetry/tests/python/test_histogramtools_strict.py b/toolkit/components/telemetry/tests/python/test_histogramtools_strict.py
index 2109cd7d35..28d4646dfd 100644
--- a/toolkit/components/telemetry/tests/python/test_histogramtools_strict.py
+++ b/toolkit/components/telemetry/tests/python/test_histogramtools_strict.py
@@ -485,53 +485,6 @@ class TestParser(unittest.TestCase):
)
self.assertRaises(SystemExit, ParserError.exit_func)
- def test_gv_streaming_unsupported_kind(self):
- SAMPLE_HISTOGRAM = {
- "TEST_HISTOGRAM_GV_STREAMING": {
- "record_in_processes": ["main", "content"],
- "alert_emails": ["team@mozilla.xyz"],
- "bug_numbers": [1383793],
- "expires_in_version": "never",
- "kind": "boolean",
- "description": "Test histogram",
- "products": ["geckoview_streaming"],
- }
- }
- histograms = load_histogram(SAMPLE_HISTOGRAM)
- parse_histograms.load_allowlist()
- parse_histograms.Histogram(
- "TEST_HISTOGRAM_GV_STREAMING",
- histograms["TEST_HISTOGRAM_GV_STREAMING"],
- strict_type_checks=True,
- )
- self.assertRaises(SystemExit, ParserError.exit_func)
-
- def test_gv_streaming_keyed(self):
- SAMPLE_HISTOGRAM = {
- "TEST_HISTOGRAM_GV_STREAMING": {
- "record_in_processes": ["main", "content"],
- "alert_emails": ["team@mozilla.xyz"],
- "bug_numbers": [1383793],
- "expires_in_version": "never",
- "kind": "exponential",
- "low": 1024,
- "high": 2**64,
- "n_buckets": 100,
- "keyed": "true",
- "description": "Test histogram",
- "products": ["geckoview_streaming"],
- }
- }
- histograms = load_histogram(SAMPLE_HISTOGRAM)
- parse_histograms.load_allowlist()
- parse_histograms.Histogram(
- "TEST_HISTOGRAM_GV_STREAMING",
- histograms["TEST_HISTOGRAM_GV_STREAMING"],
- strict_type_checks=True,
- )
-
- self.assertRaises(SystemExit, ParserError.exit_func)
-
def test_enumerated_histogram_with_100_buckets(self):
SAMPLE_HISTOGRAM = {
"TEST_100_BUCKETS_HISTOGRAM": {