2020-04-19 14:27:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-02-20 12:27:24 -08:00
|
|
|
require "rails_helper"
|
2020-04-19 14:27:29 -07:00
|
|
|
|
2020-05-25 09:04:54 -07:00
|
|
|
RSpec.describe(List, type: :model) do
|
2023-02-20 12:27:24 -08:00
|
|
|
let(:user) { FactoryBot.create(:user) }
|
2020-04-19 14:27:29 -07:00
|
|
|
|
2023-02-20 12:27:24 -08:00
|
|
|
describe "name mangling" do
|
2020-04-19 14:27:29 -07:00
|
|
|
subject do
|
2023-02-20 12:27:24 -08:00
|
|
|
List.new(user:, display_name:).tap(&:validate)
|
2020-04-19 14:27:29 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
{
|
2023-02-20 12:27:24 -08:00
|
|
|
"great list" => "great-list",
|
|
|
|
"followers" => "-followers-",
|
|
|
|
" followers " => "-followers-",
|
|
|
|
" the game \t\nyes" => "the-game-yes",
|
2020-04-19 14:27:29 -07:00
|
|
|
|
|
|
|
# not nice, but this is just the way it is:
|
2023-02-20 12:27:24 -08:00
|
|
|
"\u{1f98a} :3" => "3",
|
|
|
|
"\u{1f98a}" => "",
|
2020-04-19 14:27:29 -07:00
|
|
|
}.each do |display_name, expected_name|
|
|
|
|
context "when display name is #{display_name.inspect}" do
|
|
|
|
let(:display_name) { display_name }
|
|
|
|
|
|
|
|
its(:name) { should eq expected_name }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-20 12:27:24 -08:00
|
|
|
describe "validations" do
|
2020-04-19 14:27:29 -07:00
|
|
|
subject do
|
2023-02-20 12:27:24 -08:00
|
|
|
List.new(user:, display_name:).validate
|
2020-04-19 14:27:29 -07:00
|
|
|
end
|
|
|
|
|
2020-05-25 09:04:54 -07:00
|
|
|
context "when display name is 'great list' (valid)" do
|
2023-02-20 12:27:24 -08:00
|
|
|
let(:display_name) { "great list" }
|
2020-04-19 14:27:29 -07:00
|
|
|
|
|
|
|
it { is_expected.to be true }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when display name is '1' (valid)" do
|
2023-02-20 12:27:24 -08:00
|
|
|
let(:display_name) { "1" }
|
2020-04-19 14:27:29 -07:00
|
|
|
|
|
|
|
it { is_expected.to be true }
|
|
|
|
end
|
|
|
|
|
2023-02-20 12:27:24 -08:00
|
|
|
context "when display name is the letter E 621 times (invalid, too long)" do
|
|
|
|
let(:display_name) { "E" * 621 }
|
2020-04-19 14:27:29 -07:00
|
|
|
|
|
|
|
it { is_expected.to be false }
|
|
|
|
end
|
|
|
|
|
2023-02-20 12:27:24 -08:00
|
|
|
context "when display name is an empty string (invalid, as `name` would be empty)" do
|
|
|
|
let(:display_name) { "" }
|
2020-04-19 14:27:29 -07:00
|
|
|
|
|
|
|
it { is_expected.to be false }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when display name is \u{1f98a} (invalid, as `name` would be empty)" do
|
|
|
|
let(:display_name) { "\u{1f98a}" }
|
|
|
|
|
|
|
|
it { is_expected.to be false }
|
|
|
|
end
|
|
|
|
end
|
2023-02-20 12:27:24 -08:00
|
|
|
|
2023-02-20 12:47:46 -08:00
|
|
|
describe "#timeline", timeline_test_data: true do
|
2023-02-20 12:27:24 -08:00
|
|
|
let(:list) { List.create(user:, display_name: "test list") }
|
|
|
|
|
|
|
|
before do
|
|
|
|
list.add_member user1
|
|
|
|
list.add_member user2
|
|
|
|
list.add_member blocked_user
|
|
|
|
list.add_member muted_user
|
|
|
|
|
|
|
|
# block it here already, to test behaviour without a `current_user` passed in
|
|
|
|
user.block blocked_user
|
|
|
|
user.mute muted_user
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { list.timeline }
|
|
|
|
|
|
|
|
it "includes all answers to questions from users in the list" do
|
|
|
|
expect(subject).to include(answer_to_anonymous)
|
|
|
|
expect(subject).to include(answer_to_normal_user)
|
|
|
|
expect(subject).to include(answer_to_normal_user_anonymous)
|
|
|
|
expect(subject).to include(answer_to_blocked_user_anonymous)
|
|
|
|
expect(subject).to include(answer_to_muted_user_anonymous)
|
|
|
|
expect(subject).to include(answer_to_blocked_user)
|
|
|
|
expect(subject).to include(answer_to_muted_user)
|
|
|
|
expect(subject).to include(answer_from_blocked_user)
|
|
|
|
expect(subject).to include(answer_from_muted_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when given a current user who blocks and mutes some users" do
|
|
|
|
subject { list.timeline current_user: user }
|
|
|
|
|
|
|
|
it "only includes answers to questions from users the user doesn't block or mute" do
|
|
|
|
expect(subject).to include(answer_to_anonymous)
|
|
|
|
expect(subject).to include(answer_to_normal_user)
|
|
|
|
expect(subject).to include(answer_to_normal_user_anonymous)
|
|
|
|
expect(subject).to include(answer_to_blocked_user_anonymous)
|
|
|
|
expect(subject).to include(answer_to_muted_user_anonymous)
|
|
|
|
expect(subject).not_to include(answer_to_blocked_user)
|
|
|
|
expect(subject).not_to include(answer_from_blocked_user)
|
|
|
|
expect(subject).not_to include(answer_to_muted_user)
|
|
|
|
expect(subject).not_to include(answer_from_muted_user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-04-19 14:27:29 -07:00
|
|
|
end
|