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
|
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 TestSession(unittest.TestCase):
def test_construct(self):
item = Session()
self.assertNotEqual(item, None)
def test_id_property_works_as_expected(self):
expected = 'Test string'
item = Session()
item.id = expected
actual = item.id
self.assertEqual(expected, actual)
expected = 'Other string'
item.id = expected
actual = item.id
self.assertEqual(expected, actual)
def test_is_first_property_works_as_expected(self):
expected = 'Test string'
item = Session()
item.is_first = expected
actual = item.is_first
self.assertEqual(expected, actual)
expected = 'Other string'
item.is_first = expected
actual = item.is_first
self.assertEqual(expected, actual)
def test_is_new_property_works_as_expected(self):
expected = 'Test string'
item = Session()
item.is_new = expected
actual = item.is_new
self.assertEqual(expected, actual)
expected = 'Other string'
item.is_new = expected
actual = item.is_new
self.assertEqual(expected, actual)
def test_serialize_works_as_expected(self):
item = Session()
item.id = 'Test string'
item.is_first = 'Test string'
item.is_new = 'Test string'
actual = json.dumps(item.write(), separators=(',', ':'), cls=TestJsonEncoder)
expected = '{"ai.session.id":"Test string","ai.session.isFirst":"Test string","ai.session.isNew":"Test string"}'
self.assertEqual(expected, actual)
|