2016-03-25 23:21:26 +00:00
|
|
|
# Copyright 2013 Intel Corporation
|
2013-11-26 16:01:29 +09:00
|
|
|
# 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.
|
|
|
|
|
2017-03-18 06:12:33 +00:00
|
|
|
import logging
|
|
|
|
|
2013-11-26 16:01:29 +09:00
|
|
|
import testtools
|
|
|
|
from testtools import helpers
|
|
|
|
|
2014-06-27 18:06:02 +09:00
|
|
|
from tackerclient.tacker import v1_0 as tackerV10
|
2013-11-26 16:01:29 +09:00
|
|
|
|
|
|
|
|
|
|
|
class TestCommandMeta(testtools.TestCase):
|
2014-06-27 18:06:02 +09:00
|
|
|
def test_tacker_command_meta_defines_log(self):
|
|
|
|
class FakeCommand(tackerV10.TackerCommand):
|
2013-11-26 16:01:29 +09:00
|
|
|
pass
|
|
|
|
|
|
|
|
self.assertTrue(helpers.safe_hasattr(FakeCommand, 'log'))
|
|
|
|
self.assertIsInstance(FakeCommand.log, logging.getLoggerClass())
|
|
|
|
self.assertEqual(FakeCommand.log.name, __name__ + ".FakeCommand")
|
|
|
|
|
2014-06-27 18:06:02 +09:00
|
|
|
def test_tacker_command_log_defined_explicitly(self):
|
|
|
|
class FakeCommand(tackerV10.TackerCommand):
|
2013-11-26 16:01:29 +09:00
|
|
|
log = None
|
|
|
|
|
|
|
|
self.assertTrue(helpers.safe_hasattr(FakeCommand, 'log'))
|
|
|
|
self.assertIsNone(FakeCommand.log)
|