Retrospring/spec/lib/use_case/data_export/relationships_spec.rb

79 lines
2.6 KiB
Ruby
Raw Normal View History

2022-12-09 18:28:17 -08:00
# frozen_string_literal: true
require "rails_helper"
describe UseCase::DataExport::Relationships, :data_export do
include ActiveSupport::Testing::TimeHelpers
context "when user doesn't have any relationships" do
it "returns an empty set of relationships" do
expect(json_file("relationships.json")).to eq(
{
relationships: []
}
)
end
end
context "when user has made some relationships" do
let(:other_user) { FactoryBot.create(:user) }
let(:blocked_user) { FactoryBot.create(:user) }
let(:blocking_user) { FactoryBot.create(:user) }
2022-12-31 00:50:46 -08:00
let(:muted_user) { FactoryBot.create(:user) }
let(:muted_by_user) { FactoryBot.create(:user) }
2022-12-09 18:28:17 -08:00
let!(:relationships) do
{
# user <-> other_user follow each other
user_to_other: travel_to(Time.utc(2022, 12, 10, 13, 12, 0)) { user.follow(other_user) },
other_to_user: travel_to(Time.utc(2022, 12, 10, 13, 12, 36)) { other_user.follow(user) },
# user blocked blocked_user
block: travel_to(Time.utc(2022, 12, 10, 13, 37, 42)) { user.block(blocked_user) },
# user is blocked by blocking_user
2022-12-31 00:50:46 -08:00
blocked_by: travel_to(Time.utc(2022, 12, 10, 13, 39, 21)) { blocking_user.block(user) },
# user muted muted_user
mute: travel_to(Time.utc(2022, 12, 10, 13, 40, 0)) { user.mute(muted_user) },
# user is muted by muted_by_user
muted_by: travel_to(Time.utc(2022, 12, 10, 13, 40, 42)) { muted_by_user.mute(user) }
2022-12-09 18:28:17 -08:00
}
end
it "returns the relationships as json" do
expect(json_file("relationships.json")).to eq(
{
relationships: [
{
id: relationships[:user_to_other].id,
source_id: user.id,
target_id: other_user.id,
created_at: "2022-12-10T13:12:00.000Z",
updated_at: "2022-12-10T13:12:00.000Z",
type: "Relationships::Follow"
},
{
id: relationships[:block].id,
source_id: user.id,
target_id: blocked_user.id,
created_at: "2022-12-10T13:37:42.000Z",
updated_at: "2022-12-10T13:37:42.000Z",
type: "Relationships::Block"
2022-12-31 00:50:46 -08:00
},
{
id: relationships[:mute].id,
source_id: user.id,
target_id: muted_user.id,
created_at: "2022-12-10T13:40:00.000Z",
updated_at: "2022-12-10T13:40:00.000Z",
type: "Relationships::Mute"
2022-12-09 18:28:17 -08:00
}
]
}
)
end
end
end