pleroma/test/pleroma/safe_jsonb_set_test.exs

17 lines
569 B
Elixir
Raw Normal View History

2020-10-12 19:00:50 +02:00
# Pleroma: A lightweight social networking server
2022-02-26 07:11:42 +01:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2020-10-12 19:00:50 +02:00
# SPDX-License-Identifier: AGPL-3.0-only
2019-10-18 13:33:51 +02:00
defmodule Pleroma.SafeJsonbSetTest do
use Pleroma.DataCase, async: true
2019-10-18 13:33:51 +02:00
test "it doesn't wipe the object when asked to set the value to NULL" do
assert %{rows: [[%{"key" => "value", "test" => nil}]]} =
Ecto.Adapters.SQL.query!(
Pleroma.Repo,
"select safe_jsonb_set('{\"key\": \"value\"}'::jsonb, '{test}', NULL);",
[]
)
end
end