
This commit breaks up the tests into 2 subdirectories, unit and functional. Functional tests use the network in some way and may require either a queries file or a functional config. Unit tests do not have these requirements. In addition the default tox job is changed to only run the unit tests. The functional tests are give a separate tox job. Change-Id: I4bdc7f1098bfb7fa16dd869b2e54b3154848c3e1
43 lines
1.7 KiB
Python
43 lines
1.7 KiB
Python
# 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.
|
|
|
|
import testtools
|
|
|
|
from elastic_recheck import elasticRecheck
|
|
|
|
|
|
class TestClassifier(testtools.TestCase):
|
|
|
|
def setUp(self):
|
|
super(TestClassifier, self).setUp()
|
|
self.classifier = elasticRecheck.Classifier('queries.yaml')
|
|
|
|
def test_read_qeuries_file(self):
|
|
self.assertNotEqual(self.classifier.queries, None)
|
|
|
|
def test_elasticSearch(self):
|
|
query = self.classifier._apply_template(self.classifier.targeted_template,
|
|
('@tags:"console.html" AND @message:"Finished: FAILURE"', '34825', '3'))
|
|
results = self.classifier.es.search(query, size='10')
|
|
self.assertTrue(int(results['hits']['total']) > 0, ("unable to find hit"))
|
|
|
|
def test_ready(self):
|
|
self.assertTrue(self.classifier._is_ready('49282', '3',
|
|
'BLAH http://logs.openstack.org/82/49282/3/gate/gate-tempest-devstack-vm-postgres-full/ffc0540'))
|
|
|
|
def test_classify(self):
|
|
bug_numbers = self.classifier.classify('47463', '3',
|
|
' blah http://logs.openstack.org/63/47463/3/gate/gate-tempest-devstack-vm-postgres-full/99bb8f6')
|
|
self.assertEqual(bug_numbers, [1218391])
|