X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fweb%2Fostatus%2Fuser_representer_test.exs;h=e41dfeb3d0f7f898653ceb3162b5d9010979dc9b;hb=aeff2d647483d5348cc1da5c901ce55f1c02b733;hp=02a4b5b141e6beb3e51559835c72efed7533dfc0;hpb=361a8c42197a92f044fc3d0ceadeee5e3590e96f;p=akkoma diff --git a/test/web/ostatus/user_representer_test.exs b/test/web/ostatus/user_representer_test.exs index 02a4b5b14..e41dfeb3d 100644 --- a/test/web/ostatus/user_representer_test.exs +++ b/test/web/ostatus/user_representer_test.exs @@ -3,15 +3,32 @@ defmodule Pleroma.Web.OStatus.UserRepresenterTest do alias Pleroma.Web.OStatus.UserRepresenter import Pleroma.Factory + alias Pleroma.User test "returns a user with id, uri, name and link" do - user = build(:user) - tuple = UserRepresenter.to_tuple(user) - {:author, author} = tuple + user = build(:user, nickname: "レイン") + tuple = UserRepresenter.to_simple_form(user) - [:id, :uri, :name, :link] - |> Enum.each(fn (tag) -> - assert Enum.find(author, fn(e) -> tag == elem(e, 0) end) - end) + res = :xmerl.export_simple_content(tuple, :xmerl_xml) |> to_string + + expected = """ + #{user.ap_id} + http://activitystrea.ms/schema/1.0/person + #{user.ap_id} + #{user.nickname} + #{user.name} + #{user.bio} + #{user.bio} + #{user.nickname} + + + true + """ + + assert clean(res) == clean(expected) + end + + defp clean(string) do + String.replace(string, ~r/\s/, "") end end