summaryrefslogtreecommitdiff
path: root/test/polyjuice/client/account_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/polyjuice/client/account_test.exs')
-rw-r--r--test/polyjuice/client/account_test.exs51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/polyjuice/client/account_test.exs b/test/polyjuice/client/account_test.exs
new file mode 100644
index 0000000..6f11d25
--- /dev/null
+++ b/test/polyjuice/client/account_test.exs
@@ -0,0 +1,51 @@
+# Copyright 2020 Multi Prise <multiesunhappydev@gmail.com>
+#
+# 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.
+
+defmodule Polyjuice.Client.AccountTest do
+ use ExUnit.Case
+ doctest Polyjuice.Client.Account
+
+ test "get account data" do
+ with client = %DummyClient{
+ response: {
+ %Polyjuice.Client.Endpoint.GetAccountData{
+ user_id: "toto@kazarma.local",
+ type: "name"
+ },
+ {:ok, %{name: "toto"}}
+ }
+ } do
+ {:ok, %{name: name}} =
+ Polyjuice.Client.Account.get_data(client, "toto@kazarma.local", "name")
+
+ assert name == "toto"
+ end
+ end
+
+ test "put account data" do
+ with client = %DummyClient{
+ response: {
+ %Polyjuice.Client.Endpoint.PutAccountData{
+ user_id: "toto@kazarma.local",
+ type: "name",
+ account_data: %{name: "marc"}
+ },
+ {:ok, %{}}
+ }
+ } do
+ {:ok, %{}} =
+ Polyjuice.Client.Account.put_data(client, "toto@kazarma.local", "name", %{name: "marc"})
+ end
+ end
+end