46 lines
1.4 KiB
Elixir
46 lines
1.4 KiB
Elixir
defmodule Blogex.Post.VisibilityTest do
|
|
use ExUnit.Case
|
|
|
|
import Blogex.Test.PostBuilder
|
|
|
|
describe "visibility/1" do
|
|
test "returns :draft when post is not published" do
|
|
post = build(published: false, date: ~D[2026-01-01])
|
|
assert Blogex.Post.visibility(post) == :draft
|
|
end
|
|
|
|
test "returns :scheduled when post is published with future date" do
|
|
post = build(published: true, date: ~D[2099-01-01])
|
|
assert Blogex.Post.visibility(post) == :scheduled
|
|
end
|
|
|
|
test "returns :live when post is published with past date" do
|
|
post = build(published: true, date: ~D[2020-01-01])
|
|
assert Blogex.Post.visibility(post) == :live
|
|
end
|
|
|
|
test "returns :live when post is published with today's date" do
|
|
post = build(published: true, date: Date.utc_today())
|
|
assert Blogex.Post.visibility(post) == :live
|
|
end
|
|
end
|
|
|
|
describe "days_until_live/1" do
|
|
test "returns positive integer for scheduled post" do
|
|
future = Date.add(Date.utc_today(), 10)
|
|
post = build(published: true, date: future)
|
|
assert Blogex.Post.days_until_live(post) == 10
|
|
end
|
|
|
|
test "returns nil for draft post" do
|
|
post = build(published: false, date: ~D[2099-01-01])
|
|
assert Blogex.Post.days_until_live(post) == nil
|
|
end
|
|
|
|
test "returns nil for live post" do
|
|
post = build(published: true, date: ~D[2020-01-01])
|
|
assert Blogex.Post.days_until_live(post) == nil
|
|
end
|
|
end
|
|
end
|