-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathopentelemetry_phoenix_test.exs
263 lines (218 loc) · 7.45 KB
/
opentelemetry_phoenix_test.exs
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
defmodule NnnnnWeb.Router do
use Phoenix.Router, helpers: false
import Phoenix.LiveView.Router
scope "/", NnnnnWeb do
scope "/resources/", ResourceLive do
live "/:resource_id", Show, :show
end
end
end
defmodule NnnnnWeb.ResourceLive.Show do
use Phoenix.LiveView, log: false
end
defmodule OpentelemetryPhoenixTest do
use ExUnit.Case, async: false
doctest OpentelemetryPhoenix
require OpenTelemetry.Tracer
require OpenTelemetry.Span
require Record
alias OpenTelemetry.SemConv.ExceptionAttributes
@socket Phoenix.LiveView.Utils.configure_socket(
%Phoenix.LiveView.Socket{
endpoint: NnnnWeb.Endpoint,
router: NnnnnWeb.Router,
view: NnnnnWeb.ResourceLive.Show
},
%{
connect_params: %{},
connect_info: %{},
root_view: NnnnnWeb.ResourceLive.Show,
live_temp: %{}
},
:show,
%{},
URI.parse("https://localhost:4000/resources/123?foo=bar")
)
@telemetry_meta_base %{
socket: @socket,
params: %{"foo" => "bar"},
uri: "https://localhost:4000/resources/123?foo=bar",
session: %{},
telemetry_span_context: :dummy_ref
}
@telemetry_meta_handle_params Map.put(@telemetry_meta_base, :event, "hello")
@exception_meta %{
reason: %RuntimeError{message: "stop"},
stacktrace: [
{NnnnnWeb.ResourceLive.Show, :handle_params, 3,
[
file: ~c"lib/nnnnn_web/live/resources_live/show.ex",
line: 28,
error_info: %{module: Exception}
]}
],
kind: :error
}
@telemetry_meta %{
mount: %{
start: @telemetry_meta_base,
stop: @telemetry_meta_base,
exception: @telemetry_meta_base
},
handle_params: %{
start: @telemetry_meta_base,
stop: @telemetry_meta_base,
exception: Map.merge(@telemetry_meta_base, @exception_meta)
},
handle_event: %{
start: @telemetry_meta_handle_params,
stop: @telemetry_meta_handle_params,
exception: Map.merge(@telemetry_meta_handle_params, @exception_meta)
}
}
for {name, spec} <- Record.extract_all(from_lib: "opentelemetry/include/otel_span.hrl") do
Record.defrecord(name, spec)
end
for {name, spec} <- Record.extract_all(from_lib: "opentelemetry_api/include/opentelemetry.hrl") do
Record.defrecord(name, spec)
end
setup do
:otel_simple_processor.set_exporter(:otel_exporter_pid, self())
OpentelemetryPhoenix.setup(adapter: :cowboy2)
on_exit(fn ->
Enum.each(:telemetry.list_handlers([]), &:telemetry.detach(&1.id))
end)
:ok
end
test "records spans for Phoenix LiveView mount" do
:telemetry.execute(
[:phoenix, :live_view, :mount, :start],
%{system_time: System.system_time()},
@telemetry_meta.mount.start
)
:telemetry.execute(
[:phoenix, :live_view, :mount, :stop],
%{system_time: System.system_time(), duration: 10},
@telemetry_meta.mount.stop
)
assert_receive {:span,
span(
name: "NnnnnWeb.ResourceLive.Show.mount",
attributes: attributes
)}
assert :otel_attributes.map(attributes) == %{:"url.template" => "/resources/:resource_id"}
end
test "records spans for Phoenix LiveView handle_params" do
:telemetry.execute(
[:phoenix, :live_view, :handle_params, :start],
%{system_time: System.system_time()},
@telemetry_meta.handle_params.start
)
:telemetry.execute(
[:phoenix, :live_view, :handle_params, :stop],
%{system_time: System.system_time(), duration: 10},
@telemetry_meta.handle_params.stop
)
assert_receive {:span,
span(
name: "NnnnnWeb.ResourceLive.Show.handle_params",
attributes: attributes
)}
assert :otel_attributes.map(attributes) == %{:"url.template" => "/resources/:resource_id"}
end
test "records spans for Phoenix LiveView handle_event" do
:telemetry.execute(
[:phoenix, :live_view, :handle_event, :start],
%{system_time: System.system_time()},
@telemetry_meta.handle_event.start
)
:telemetry.execute(
[:phoenix, :live_view, :handle_event, :stop],
%{system_time: System.system_time(), duration: 10},
@telemetry_meta.handle_event.stop
)
assert_receive {:span,
span(
name: "NnnnnWeb.ResourceLive.Show.handle_event#hello",
attributes: attributes
)}
assert :otel_attributes.map(attributes) == %{:"url.template" => "/resources/:resource_id"}
end
test "handles exception during Phoenix LiveView handle_params" do
:telemetry.execute(
[:phoenix, :live_view, :mount, :start],
%{system_time: System.system_time()},
@telemetry_meta.mount.start
)
:telemetry.execute(
[:phoenix, :live_view, :mount, :stop],
%{system_time: System.system_time()},
@telemetry_meta.mount.stop
)
:telemetry.execute(
[:phoenix, :live_view, :handle_params, :start],
%{system_time: System.system_time()},
@telemetry_meta.handle_params.start
)
:telemetry.execute(
[:phoenix, :live_view, :handle_params, :exception],
%{system_time: System.system_time()},
@telemetry_meta.handle_params.exception
)
assert_receive {:span,
span(
name: "NnnnnWeb.ResourceLive.Show.mount",
attributes: attributes
)}
assert :otel_attributes.map(attributes) == %{:"url.template" => "/resources/:resource_id"}
assert_receive {:span,
span(
name: "NnnnnWeb.ResourceLive.Show.handle_params",
attributes: attributes,
events: events
)}
assert :otel_attributes.map(attributes) == %{:"url.template" => "/resources/:resource_id"}
[
event(
name: :exception,
attributes: event_attributes
)
] = :otel_events.list(events)
assert [
ExceptionAttributes.exception_message(),
ExceptionAttributes.exception_stacktrace(),
ExceptionAttributes.exception_type()
] ==
Enum.sort(Map.keys(:otel_attributes.map(event_attributes)))
end
test "handles exceptions during Phoenix LiveView handle_event" do
:telemetry.execute(
[:phoenix, :live_view, :handle_event, :start],
%{system_time: System.system_time()},
@telemetry_meta.handle_event.start
)
:telemetry.execute(
[:phoenix, :live_view, :handle_event, :exception],
%{system_time: System.system_time()},
@telemetry_meta.handle_event.exception
)
assert_receive {:span,
span(
name: "NnnnnWeb.ResourceLive.Show.handle_event#hello",
attributes: attributes,
events: events
)}
assert :otel_attributes.map(attributes) == %{:"url.template" => "/resources/:resource_id"}
[
event(
name: :exception,
attributes: event_attributes
)
] = :otel_events.list(events)
assert [
ExceptionAttributes.exception_message(),
ExceptionAttributes.exception_stacktrace(),
ExceptionAttributes.exception_type()
] == Enum.sort(Map.keys(:otel_attributes.map(event_attributes)))
end
end