1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
# Copyright The OpenTracing Authors
#
# 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 __future__ import absolute_import
import unittest
from opentracing import Tracer
from opentracing.harness.api_check import APICompatibilityCheckMixin
class VerifyAPICompatibilityCheck(unittest.TestCase):
def test_tracer_exception(self):
api_check = APICompatibilityCheckMixin()
with self.assertRaises(NotImplementedError):
api_check.tracer()
def test_default_baggage_check_mode(self):
api_check = APICompatibilityCheckMixin()
assert api_check.check_baggage_values() is True
def test_default_scope_manager_check_mode(self):
api_check = APICompatibilityCheckMixin()
assert api_check.check_scope_manager() is True
def test_baggage_check_works(self):
api_check = APICompatibilityCheckMixin()
setattr(api_check, 'tracer', lambda: Tracer())
# no-op tracer does not store baggage, so the test with default
# value of `check_baggage_values()` should fail.
with self.assertRaises(AssertionError):
api_check.test_span_baggage()
# second check that assert on empty baggage will fail too
with self.assertRaises(AssertionError):
api_check.test_context_baggage()
def test_scope_manager_check_works(self):
api_check = APICompatibilityCheckMixin()
setattr(api_check, 'tracer', lambda: Tracer())
# these tests are expected to succeed
api_check.test_start_active_span_ignore_active_span()
api_check.test_start_span_propagation_ignore_active_span()
# no-op tracer has a no-op ScopeManager implementation,
# which means no *actual* propagation is done,
# so these tests are expected to work, but asserts to fail
with self.assertRaises(AssertionError):
api_check.test_start_active_span()
with self.assertRaises(AssertionError):
api_check.test_start_active_span_parent()
with self.assertRaises(AssertionError):
api_check.test_start_span_propagation()
with self.assertRaises(AssertionError):
api_check.test_tracer_start_active_span_scope()
with self.assertRaises(AssertionError):
api_check.test_tracer_start_span_scope()
with self.assertRaises(AssertionError):
api_check.test_start_active_span_finish_on_close()
|