-
Notifications
You must be signed in to change notification settings - Fork 697
/
Copy pathtest_log_record.py
109 lines (91 loc) · 3.61 KB
/
test_log_record.py
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Copyright The OpenTelemetry 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.
import json
import unittest
from opentelemetry.attributes import BoundedAttributes
from opentelemetry.sdk._logs import LogLimits, LogRecord
class TestLogRecord(unittest.TestCase):
def test_log_record_to_json(self):
expected = json.dumps(
{
"body": "a log line",
"severity_number": "None",
"severity_text": None,
"attributes": None,
"dropped_attributes": 0,
"timestamp": "1970-01-01T00:00:00.000000Z",
"observed_timestamp": "1970-01-01T00:00:00.000000Z",
"trace_id": "",
"span_id": "",
"trace_flags": None,
"resource": "",
},
indent=4,
)
actual = LogRecord(
timestamp=0,
observed_timestamp=0,
body="a log line",
).to_json()
self.assertEqual(expected, actual)
def test_log_record_bounded_attributes(self):
attr = {"key": "value"}
result = LogRecord(timestamp=0, body="a log line", attributes=attr)
self.assertTrue(isinstance(result.attributes, BoundedAttributes))
def test_log_record_dropped_attributes_empty_limits(self):
attr = {"key": "value"}
result = LogRecord(timestamp=0, body="a log line", attributes=attr)
self.assertTrue(result.dropped_attributes == 0)
def test_log_record_dropped_attributes_set_limits_max_attribute(self):
attr = {"key": "value", "key2": "value2"}
limits = LogLimits(
max_attributes=1,
)
result = LogRecord(
timestamp=0, body="a log line", attributes=attr, limits=limits
)
self.assertTrue(result.dropped_attributes == 1)
def test_log_record_dropped_attributes_set_limits_max_attribute_length(
self,
):
attr = {"key": "value", "key2": "value2"}
expected = {"key": "v", "key2": "v"}
limits = LogLimits(
max_attribute_length=1,
)
result = LogRecord(
timestamp=0, body="a log line", attributes=attr, limits=limits
)
self.assertTrue(result.dropped_attributes == 0)
self.assertEqual(expected, result.attributes)
def test_log_record_dropped_attributes_set_limits(self):
attr = {"key": "value", "key2": "value2"}
expected = {"key2": "v"}
limits = LogLimits(
max_attributes=1,
max_attribute_length=1,
)
result = LogRecord(
timestamp=0, body="a log line", attributes=attr, limits=limits
)
self.assertTrue(result.dropped_attributes == 1)
self.assertEqual(expected, result.attributes)
def test_log_record_dropped_attributes_unset_limits(self):
attr = {"key": "value", "key2": "value2"}
limits = LogLimits()
result = LogRecord(
timestamp=0, body="a log line", attributes=attr, limits=limits
)
self.assertTrue(result.dropped_attributes == 0)
self.assertEqual(attr, result.attributes)