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 76 77 78 79 80 81 82 83
|
import unittest
import datetime
import uuid
import sys
import json
import sys, os, os.path
root_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..', '..', '..')
if root_directory not in sys.path:
sys.path.append(root_directory)
from applicationinsights.channel.contracts import *
from .Utils import TestJsonEncoder
class TestExceptionData(unittest.TestCase):
def test_construct(self):
item = ExceptionData()
self.assertNotEqual(item, None)
def test_ver_property_works_as_expected(self):
expected = 42
item = ExceptionData()
item.ver = expected
actual = item.ver
self.assertEqual(expected, actual)
expected = 13
item.ver = expected
actual = item.ver
self.assertEqual(expected, actual)
def test_handled_at_property_works_as_expected(self):
expected = 'Test string'
item = ExceptionData()
item.handled_at = expected
actual = item.handled_at
self.assertEqual(expected, actual)
expected = 'Other string'
item.handled_at = expected
actual = item.handled_at
self.assertEqual(expected, actual)
def test_exceptions_property_works_as_expected(self):
item = ExceptionData()
actual = item.exceptions
self.assertNotEqual(actual, None)
def test_severity_level_property_works_as_expected(self):
expected = object()
item = ExceptionData()
item.severity_level = expected
actual = item.severity_level
self.assertEqual(expected, actual)
expected = object()
item.severity_level = expected
actual = item.severity_level
self.assertEqual(expected, actual)
def test_properties_property_works_as_expected(self):
item = ExceptionData()
actual = item.properties
self.assertNotEqual(actual, None)
def test_measurements_property_works_as_expected(self):
item = ExceptionData()
actual = item.measurements
self.assertNotEqual(actual, None)
def test_serialize_works_as_expected(self):
item = ExceptionData()
item.ver = 42
item.handled_at = 'Test string'
for value in [ object() ]:
item.exceptions.append(value)
item.severity_level = object()
for key, value in { 'key1': 'test value 1' , 'key2': 'test value 2' }.items():
item.properties[key] = value
for key, value in { 'key1': 3.1415 , 'key2': 42.2 }.items():
item.measurements[key] = value
actual = json.dumps(item.write(), separators=(',', ':'), cls=TestJsonEncoder)
expected = '{"ver":42,"handledAt":"Test string","exceptions":[{}],"severityLevel":{},"properties":{"key1":"test value 1","key2":"test value 2"},"measurements":{"key1":3.1415,"key2":42.2}}'
self.assertEqual(expected, actual)
|