Skip to content

Commit 78c75f0

Browse files
committed
wip - add options validation for send_transaction
1 parent 7632cd9 commit 78c75f0

File tree

3 files changed

+45
-27
lines changed

3 files changed

+45
-27
lines changed

lib/sentry/client.ex

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ defmodule Sentry.Client do
1515
Event,
1616
Interfaces,
1717
LoggerUtils,
18-
Transport,
1918
Options,
20-
Transaction
19+
Transaction,
20+
Transport
2121
}
2222

2323
require Logger
@@ -109,7 +109,7 @@ defmodule Sentry.Client do
109109
end
110110

111111
def send_transaction(%Transaction{} = transaction, opts \\ []) do
112-
# opts = validate_options!(opts)
112+
opts = NimbleOptions.validate!(opts, Options.send_transaction_schema())
113113

114114
result_type = Keyword.get_lazy(opts, :result, &Config.send_result/0)
115115
client = Keyword.get_lazy(opts, :client, &Config.client/0)

lib/sentry/options.ex

+36-24
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Sentry.Options do
22
@moduledoc false
33

4-
@send_event_opts_schema_as_keyword [
4+
@common_opts_schema_as_keyword [
55
result: [
66
type: {:in, [:sync, :none]},
77
doc: """
@@ -15,29 +15,6 @@ defmodule Sentry.Options do
1515
call ends up being successful or not.
1616
"""
1717
],
18-
sample_rate: [
19-
type: :float,
20-
doc: """
21-
Same as the global `:sample_rate` configuration, but applied only to
22-
this call. See the module documentation. *Available since v10.0.0*.
23-
"""
24-
],
25-
before_send: [
26-
type: {:or, [{:fun, 1}, {:tuple, [:atom, :atom]}]},
27-
type_doc: "`t:before_send_event_callback/0`",
28-
doc: """
29-
Same as the global `:before_send` configuration, but
30-
applied only to this call. See the module documentation. *Available since v10.0.0*.
31-
"""
32-
],
33-
after_send_event: [
34-
type: {:or, [{:fun, 2}, {:tuple, [:atom, :atom]}]},
35-
type_doc: "`t:after_send_event_callback/0`",
36-
doc: """
37-
Same as the global `:after_send_event` configuration, but
38-
applied only to this call. See the module documentation. *Available since v10.0.0*.
39-
"""
40-
],
4118
client: [
4219
type: :atom,
4320
type_doc: "`t:module/0`",
@@ -54,6 +31,32 @@ defmodule Sentry.Options do
5431
]
5532
]
5633

34+
@send_event_opts_schema_as_keyword Keyword.merge(@common_opts_schema_as_keyword,
35+
sample_rate: [
36+
type: :float,
37+
doc: """
38+
Same as the global `:sample_rate` configuration, but applied only to
39+
this call. See the module documentation. *Available since v10.0.0*.
40+
"""
41+
],
42+
before_send: [
43+
type: {:or, [{:fun, 1}, {:tuple, [:atom, :atom]}]},
44+
type_doc: "`t:before_send_event_callback/0`",
45+
doc: """
46+
Same as the global `:before_send` configuration, but
47+
applied only to this call. See the module documentation. *Available since v10.0.0*.
48+
"""
49+
],
50+
after_send_event: [
51+
type: {:or, [{:fun, 2}, {:tuple, [:atom, :atom]}]},
52+
type_doc: "`t:after_send_event_callback/0`",
53+
doc: """
54+
Same as the global `:after_send_event` configuration, but
55+
applied only to this call. See the module documentation. *Available since v10.0.0*.
56+
"""
57+
]
58+
)
59+
5760
@create_event_opts_schema_as_keyword [
5861
exception: [
5962
type: {:custom, Sentry.Event, :__validate_exception__, [:exception]},
@@ -191,6 +194,10 @@ defmodule Sentry.Options do
191194

192195
@create_event_opts_schema NimbleOptions.new!(@create_event_opts_schema_as_keyword)
193196

197+
@send_transaction_opts_schema_as_keyword Keyword.merge(@common_opts_schema_as_keyword, [])
198+
199+
@send_transaction_opts_schema NimbleOptions.new!(@send_transaction_opts_schema_as_keyword)
200+
194201
@spec send_event_schema() :: NimbleOptions.t()
195202
def send_event_schema do
196203
@send_event_opts_schema
@@ -206,6 +213,11 @@ defmodule Sentry.Options do
206213
@create_event_opts_schema
207214
end
208215

216+
@spec send_transaction_schema() :: NimbleOptions.t()
217+
def send_transaction_schema do
218+
@send_transaction_opts_schema
219+
end
220+
209221
@spec docs_for(atom()) :: String.t()
210222
def docs_for(type)
211223

test/sentry_test.exs

+6
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,12 @@ defmodule SentryTest do
273273
assert {:ok, "340"} = Sentry.send_transaction(transaction)
274274
end
275275

276+
test "validates options", %{transaction: transaction} do
277+
assert_raise NimbleOptions.ValidationError, fn ->
278+
Sentry.send_transaction(transaction, client: "oops")
279+
end
280+
end
281+
276282
test "ignores transaction when dsn is not configured", %{transaction: transaction} do
277283
put_test_config(dsn: nil, test_mode: false)
278284

0 commit comments

Comments
 (0)