File: TestStackFrame.py

package info (click to toggle)
python-applicationinsights 0.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 608 kB
  • ctags: 801
  • sloc: python: 4,572; makefile: 3
file content (85 lines) | stat: -rw-r--r-- 2,742 bytes parent folder | download | duplicates (4)
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
84
85
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 TestStackFrame(unittest.TestCase):
    def test_construct(self):
        item = StackFrame()
        self.assertNotEqual(item, None)
    
    def test_level_property_works_as_expected(self):
        expected = 42
        item = StackFrame()
        item.level = expected
        actual = item.level
        self.assertEqual(expected, actual)
        expected = 13
        item.level = expected
        actual = item.level
        self.assertEqual(expected, actual)
    
    def test_method_property_works_as_expected(self):
        expected = 'Test string'
        item = StackFrame()
        item.method = expected
        actual = item.method
        self.assertEqual(expected, actual)
        expected = 'Other string'
        item.method = expected
        actual = item.method
        self.assertEqual(expected, actual)
    
    def test_assembly_property_works_as_expected(self):
        expected = 'Test string'
        item = StackFrame()
        item.assembly = expected
        actual = item.assembly
        self.assertEqual(expected, actual)
        expected = 'Other string'
        item.assembly = expected
        actual = item.assembly
        self.assertEqual(expected, actual)
    
    def test_file_name_property_works_as_expected(self):
        expected = 'Test string'
        item = StackFrame()
        item.file_name = expected
        actual = item.file_name
        self.assertEqual(expected, actual)
        expected = 'Other string'
        item.file_name = expected
        actual = item.file_name
        self.assertEqual(expected, actual)
    
    def test_line_property_works_as_expected(self):
        expected = 42
        item = StackFrame()
        item.line = expected
        actual = item.line
        self.assertEqual(expected, actual)
        expected = 13
        item.line = expected
        actual = item.line
        self.assertEqual(expected, actual)
    
    def test_serialize_works_as_expected(self):
        item = StackFrame()
        item.level = 42
        item.method = 'Test string'
        item.assembly = 'Test string'
        item.file_name = 'Test string'
        item.line = 42
        actual = json.dumps(item.write(), separators=(',', ':'), cls=TestJsonEncoder)
        expected = '{"level":42,"method":"Test string","assembly":"Test string","fileName":"Test string","line":42}'
        self.assertEqual(expected, actual)