-
-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow the usage of JSON for Elixir 1.18+ #845
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4454612
Allow the usage of JSON for Elixir 1.18+
altjohndev 217cbdf
Revert "Allow the usage of JSON for Elixir 1.18+"
altjohndev cf6285d
Fixes
whatyouhide 96948e6
FIXUP
whatyouhide 2bb4928
FIXUP
whatyouhide 02c1dc2
Dialyzer
whatyouhide ca3102f
Update README.md
whatyouhide File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[ | ||
{"test/support/example_plug_application.ex"} | ||
{"test/support/example_plug_application.ex"}, | ||
{"test/support/test_helpers.ex"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
defmodule Sentry.JSON do | ||
@moduledoc false | ||
|
||
@spec encode(term(), module()) :: {:ok, String.t()} | {:error, term()} | ||
def encode(data, json_library) | ||
|
||
if Code.ensure_loaded?(JSON) do | ||
def encode(data, JSON) do | ||
{:ok, JSON.encode!(data)} | ||
rescue | ||
error -> {:error, error} | ||
end | ||
end | ||
|
||
def encode(data, json_library) do | ||
json_library.encode(data) | ||
end | ||
|
||
@spec decode(binary(), module()) :: {:ok, term()} | {:error, term()} | ||
def decode(binary, json_library) | ||
|
||
if Code.ensure_loaded?(JSON) do | ||
def decode(binary, JSON) do | ||
{:ok, JSON.decode!(binary)} | ||
rescue | ||
error -> {:error, error} | ||
end | ||
end | ||
|
||
def decode(binary, json_library) do | ||
json_library.decode(binary) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
defmodule Sentry.JSONTest do | ||
use ExUnit.Case, async: true | ||
|
||
json_modules = | ||
if Code.ensure_loaded?(JSON) do | ||
[JSON, Jason] | ||
else | ||
[Jason] | ||
end | ||
|
||
for json_mod <- json_modules do | ||
describe "decode/2 with #{inspect(json_mod)}" do | ||
test "decodes empty object to empty map" do | ||
assert Sentry.JSON.decode("{}", unquote(json_mod)) == {:ok, %{}} | ||
end | ||
|
||
test "returns {:error, reason} if binary is not a JSON" do | ||
assert {:error, _reason} = Sentry.JSON.decode("not JSON", unquote(json_mod)) | ||
end | ||
end | ||
|
||
describe "encode/2 with #{inspect(json_mod)}" do | ||
test "encodes empty map to empty object" do | ||
assert Sentry.JSON.encode(%{}, unquote(json_mod)) == {:ok, "{}"} | ||
end | ||
|
||
test "returns {:error, reason} if data cannot be parsed to JSON" do | ||
assert {:error, _reason} = Sentry.JSON.encode({:ok, "will fail"}, unquote(json_mod)) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that we're introducing a shim under
Sentry.JSON
shouldn't we also raiseSentry.JSON.DecodeError
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're not introducing
Sentry.JSON
for users, it's just for us during this transition time.