zuul/tests/test_reporter.py

65 lines
2.0 KiB
Python

# Copyright 2014 Rackspace Australia
#
# 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 fixtures
import logging
import testtools
import zuul.reporter.gerrit
import zuul.reporter.smtp
import zuul.reporter.sql
class TestSMTPReporter(testtools.TestCase):
log = logging.getLogger("zuul.test_reporter")
def test_reporter_abc(self):
# We only need to instantiate a class for this
reporter = zuul.reporter.smtp.SMTPReporter({}) # noqa
def test_reporter_name(self):
self.assertEqual('smtp', zuul.reporter.smtp.SMTPReporter.name)
class TestGerritReporter(testtools.TestCase):
log = logging.getLogger("zuul.test_reporter")
def test_reporter_abc(self):
# We only need to instantiate a class for this
reporter = zuul.reporter.gerrit.GerritReporter(None) # noqa
def test_reporter_name(self):
self.assertEqual('gerrit', zuul.reporter.gerrit.GerritReporter.name)
class TestSQLReporter(testtools.TestCase):
log = logging.getLogger("zuul.test_reporter")
def test_reporter_abc(self):
# We only need to instantiate a class for this
# First mock out _setup_tables
def _fake_setup_tables(self):
pass
self.useFixture(fixtures.MonkeyPatch(
'zuul.reporter.sql.SQLReporter._setup_tables',
_fake_setup_tables
))
reporter = zuul.reporter.sql.SQLReporter() # noqa
def test_reporter_name(self):
self.assertEqual(
'sql', zuul.reporter.sql.SQLReporter.name)