Fix tests

develop
Roman Chvanikov 2019-04-19 23:26:41 +07:00
parent 8add119444
commit bc7862106d
4 changed files with 4 additions and 30 deletions

View File

@ -55,7 +55,6 @@ defmodule Pleroma.User do
field(:tags, {:array, :string}, default: [])
field(:bookmarks, {:array, :string}, default: [])
field(:last_refreshed_at, :naive_datetime_usec)
field(:current_sign_in_at, :naive_datetime)
field(:last_digest_emailed_at, :naive_datetime)
has_many(:notifications, Notification)
has_many(:registrations, Registration)

View File

@ -6,7 +6,6 @@ defmodule Pleroma.NotificationTest do
use Pleroma.DataCase
import Pleroma.Factory
import Mock
alias Pleroma.Notification
alias Pleroma.User
@ -303,32 +302,6 @@ defmodule Pleroma.NotificationTest do
assert n2.seen == true
assert n3.seen == false
end
test "Updates `updated_at` field" do
user1 = insert(:user)
user2 = insert(:user)
Enum.each(0..10, fn i ->
{:ok, _activity} =
TwitterAPI.create_status(user1, %{
"status" => "#{i} hi @#{user2.nickname}"
})
end)
[notification | _] = Notification.for_user(user2)
utc_now = NaiveDateTime.utc_now()
future = NaiveDateTime.add(utc_now, 5, :second)
with_mock NaiveDateTime, utc_now: fn -> future end do
Notification.set_read_up_to(user2, notification.id)
Notification.for_user(user2)
|> Enum.each(fn notification ->
assert notification.updated_at > notification.inserted_at
end)
end
end
end
describe "for_user_since/2" do

View File

@ -9,7 +9,8 @@ defmodule Pleroma.Builders.UserBuilder do
nickname: "testname",
password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
bio: "A tester.",
ap_id: "some id"
ap_id: "some id",
last_digest_emailed_at: NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second)
}
Map.merge(user, data)

View File

@ -12,7 +12,8 @@ defmodule Pleroma.Factory do
nickname: sequence(:nickname, &"nick#{&1}"),
password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
bio: sequence(:bio, &"Tester Number #{&1}"),
info: %{}
info: %{},
last_digest_emailed_at: NaiveDateTime.utc_now()
}
%{