Files
elastic-recheck/elastic_recheck/tests/unit/test_load_queries.py
Matt Riedemann e456a7afca Add allow-nonvoting key
By default we add 'voting:1' to all queries so they are filtered
from the graph.

There are cases where we want to track bugs for non-voting jobs
in the graph, so add an 'allow-nonvoting' key for special bugs
that we want to track while we're trying to stabilize a job.

Updates the docs, adds a test query and unit test for the query
loader, fixes a bad query that was setting voting:1 already, and
removes the TODO in the query for bug 1539271.

Change-Id: I61b1d4b0faaa3f20fc5b04aa3392c68c61990866
2016-02-01 07:55:30 -08:00

48 lines
1.8 KiB
Python

# Copyright 2014 Samsung Electronics. All Rights Reserved.
#
# 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.
from elastic_recheck import loader
from elastic_recheck import tests
class TestLoadQueries(tests.TestCase):
"""Test that all the production queries can be loaded.
This ensures that we don't completely explode on some badly formed
yaml that's provided to us.
"""
def test_load_queries(self):
queries = loader.load("queries")
self.assertGreater(len(queries), 0)
for q in queries:
self.assertIsNotNone(q['bug'])
self.assertIsNotNone(q['query'])
# check for the allow-nonvoting flag
if q['bug'] == '1539271':
self.assertNotIn('voting:1', q['query'])
else:
self.assertIn('voting:1', q['query'])
def test_grenade_compat(self):
# grenade logs are in logs/new/ and logs/old, while devstack is in
# logs/. To make sure queries will work with both, one should use
# filename:logs*screen... (no quotes)
queries = loader.load("queries")
for q in queries:
# Use assertTrue because you can specify a custom message
self.assertTrue("filename:\"logs/screen-" not in q['query'],
msg=("for bug %s" % q['bug']))