From 9a0e26bf5172567a25a74b3787eca05dc85770c0 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 23 Jan 2014 15:09:43 -0500 Subject: [PATCH] add tests for loading the queries this ensures that we don't have an unexpected explode when processing this data. Change-Id: Ib65bd2516a7b594ed34dc35ac95659325b97e6df --- .../tests/unit/test_load_queries.py | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 elastic_recheck/tests/unit/test_load_queries.py diff --git a/elastic_recheck/tests/unit/test_load_queries.py b/elastic_recheck/tests/unit/test_load_queries.py new file mode 100644 index 00000000..cba66235 --- /dev/null +++ b/elastic_recheck/tests/unit/test_load_queries.py @@ -0,0 +1,41 @@ +# 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']) + + def test_load_queries_all(self): + queries = loader.load("queries", skip_resolved=False) + + # Note(sdague): the current number of queries, if you delete a file + # you will need to change this + self.assertGreater(len(queries), 59) + for q in queries: + self.assertIsNotNone(q['bug']) + self.assertIsNotNone(q['query'])