2020-04-20 14:03:57 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
require "rails_helper"
|
2014-11-14 11:45:30 -08:00
|
|
|
|
2020-04-20 14:03:57 -07:00
|
|
|
RSpec.describe User, type: :model do
|
|
|
|
let!(:me) { FactoryBot.create :user }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
describe "basic assigns" do
|
2020-04-20 14:03:57 -07:00
|
|
|
before :each do
|
|
|
|
@user = User.new(
|
2022-01-17 10:23:39 -08:00
|
|
|
screen_name: "FunnyMeme2004",
|
|
|
|
password: "y_u_no_secure_password?",
|
|
|
|
email: "nice.meme@nsa.gov"
|
2020-04-20 14:03:57 -07:00
|
|
|
)
|
2021-12-28 06:09:22 -08:00
|
|
|
Profile.new(user: @user)
|
2020-04-20 14:03:57 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
subject { @user }
|
2014-12-07 02:33:26 -08:00
|
|
|
|
2020-04-20 14:03:57 -07:00
|
|
|
it { should respond_to(:email) }
|
2014-12-07 02:33:26 -08:00
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "#email returns a string" do
|
|
|
|
expect(@user.email).to match "nice.meme@nsa.gov"
|
2020-04-20 14:03:57 -07:00
|
|
|
end
|
2014-12-07 02:33:26 -08:00
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "#motivation_header has a default value" do
|
|
|
|
expect(@user.profile.motivation_header).to match ""
|
2020-04-20 14:03:57 -07:00
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "does not save an invalid screen name" do
|
|
|
|
@user.screen_name = "$Funny-Meme-%&2004"
|
2020-04-20 14:03:57 -07:00
|
|
|
expect { @user.save! }.to raise_error(ActiveRecord::RecordInvalid)
|
|
|
|
end
|
2014-12-07 02:33:26 -08:00
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
describe "email validation" do
|
2022-01-11 09:37:07 -08:00
|
|
|
subject do
|
|
|
|
FactoryBot.build(:user, email: email).tap(&:validate).errors[:email]
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
shared_examples_for "valid email" do |example_email|
|
2022-01-11 09:37:07 -08:00
|
|
|
context "when email is #{example_email}" do
|
|
|
|
let(:email) { example_email }
|
|
|
|
|
|
|
|
it "does not have validation errors" do
|
|
|
|
expect(subject).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
shared_examples_for "invalid email" do |example_email|
|
2022-01-11 09:37:07 -08:00
|
|
|
context "when email is #{example_email}" do
|
|
|
|
let(:email) { example_email }
|
|
|
|
|
|
|
|
it "has validation errors" do
|
|
|
|
expect(subject).not_to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "valid email", "ifyouusethismailyouarebanned@nilsding.org"
|
|
|
|
include_examples "valid email", "fritz.fantom@gmail.com"
|
|
|
|
include_examples "valid email", "fritz.fantom@columbiamail.co"
|
|
|
|
include_examples "valid email", "fritz.fantom@protonmail.com"
|
2022-03-03 21:13:38 -08:00
|
|
|
include_examples "valid email", "fritz.fantom@example.email"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "valid email", "fritz.fantom@enterprise.k8s.420stripes.k8s.needs.more.k8s.jira.atlassian.k8s.eu-central-1.s3.amazonaws.com"
|
2022-10-13 12:23:12 -07:00
|
|
|
include_examples "valid email", "fritz.fantom@emacs.horse"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "@jack"
|
2022-01-11 09:37:07 -08:00
|
|
|
|
|
|
|
# examples from the real world:
|
|
|
|
|
2022-10-12 22:59:54 -07:00
|
|
|
# .carrd is not a valid TLD
|
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.carrd"
|
|
|
|
# neither is .con
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.con"
|
|
|
|
include_examples "invalid email", "fritz.fantom@protonmail.con"
|
2022-10-12 22:59:54 -07:00
|
|
|
# nor .coom
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.coom"
|
2022-06-21 10:33:51 -07:00
|
|
|
# nor .cmo
|
|
|
|
include_examples "invalid email", "gustav.geldsack@gmail.cmo"
|
2022-03-03 21:13:38 -08:00
|
|
|
# nor .mail (.email is, however)
|
|
|
|
include_examples "invalid email", "fritz.fantom@proton.mail"
|
2022-01-11 09:37:07 -08:00
|
|
|
# common typos:
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@fmail.com"
|
2022-06-21 10:33:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@gamil.com"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gemail.com"
|
2022-08-25 11:28:29 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmaik.com"
|
2022-06-21 10:33:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.cm"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.co"
|
2022-10-11 11:43:01 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.co.uk"
|
2023-01-06 01:26:32 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail.om"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmailcom"
|
|
|
|
include_examples "invalid email", "fritz.fantom@gmaile.com"
|
|
|
|
include_examples "invalid email", "fritz.fantom@gmaill.com"
|
2022-01-17 10:22:34 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmali.com"
|
2022-08-14 11:49:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@gnail.com"
|
2022-06-21 10:33:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@hotamil.com"
|
2022-07-24 12:43:28 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@hotmai.com"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@hotmailcom"
|
2022-03-03 21:13:38 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@hotmaill.com"
|
2022-06-21 10:33:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@iclooud.com"
|
2022-04-10 00:55:05 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@iclould.com"
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@icluod.com"
|
2022-10-02 13:13:34 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@protonail.com"
|
2022-08-14 11:49:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@xn--gmail-xk1c.com"
|
2022-07-24 12:43:28 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@yahooo.com"
|
2022-08-14 11:49:51 -07:00
|
|
|
include_examples "invalid email", "fritz.fantom@☺gmail.com"
|
2022-06-21 10:33:51 -07:00
|
|
|
# gail.com would be a valid email address, but enough people typo it
|
|
|
|
#
|
|
|
|
# if you're the owner of that TLD and would like to use your email on
|
|
|
|
# retrospring, feel free to open a PR that removes this ;-)
|
|
|
|
include_examples "invalid email", "fritz.fantom@gail.com"
|
2022-01-11 09:37:07 -08:00
|
|
|
# no TLD
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "invalid email", "fritz.fantom@gmail"
|
|
|
|
include_examples "invalid email", "fritz.fantom@protonmail"
|
2022-01-11 09:37:07 -08:00
|
|
|
end
|
|
|
|
|
2022-07-23 03:29:17 -07:00
|
|
|
describe "#to_param" do
|
|
|
|
subject { me.to_param }
|
|
|
|
|
|
|
|
it { is_expected.to eq me.screen_name }
|
|
|
|
end
|
|
|
|
|
2020-04-20 14:03:57 -07:00
|
|
|
# -- User::TimelineMethods --
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
shared_examples_for "result is blank" do
|
|
|
|
it "result is blank" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to be_blank
|
|
|
|
end
|
2014-12-07 02:33:26 -08:00
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
describe "#timeline" do
|
2020-04-20 14:03:57 -07:00
|
|
|
subject { me.timeline }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "user answered nothing and is not following anyone" do
|
|
|
|
include_examples "result is blank"
|
2020-04-20 14:03:57 -07:00
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "user answered something and is not following anyone" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:answer) { FactoryBot.create(:answer, user: me) }
|
|
|
|
|
|
|
|
let(:expected) { [answer] }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "includes the answer" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to eq(expected)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "user answered something and follows users with answers" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:user1) { FactoryBot.create(:user) }
|
|
|
|
let(:user2) { FactoryBot.create(:user) }
|
|
|
|
let(:answer1) { FactoryBot.create(:answer, user: user1, created_at: 12.hours.ago) }
|
|
|
|
let(:answer2) { FactoryBot.create(:answer, user: me, created_at: 1.day.ago) }
|
|
|
|
let(:answer3) { FactoryBot.create(:answer, user: user2, created_at: 10.minutes.ago) }
|
|
|
|
let(:answer4) { FactoryBot.create(:answer, user: user1, created_at: Time.now.utc) }
|
|
|
|
|
|
|
|
let!(:expected) do
|
|
|
|
[answer4, answer3, answer1, answer2]
|
|
|
|
end
|
|
|
|
|
|
|
|
before(:each) do
|
|
|
|
me.follow(user1)
|
|
|
|
me.follow(user2)
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "includes all answers" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to include(answer1)
|
|
|
|
expect(subject).to include(answer2)
|
|
|
|
expect(subject).to include(answer3)
|
|
|
|
expect(subject).to include(answer4)
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "result is ordered by created_at in reverse order" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to eq(expected)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
describe "#cursored_timeline" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:last_id) { nil }
|
|
|
|
|
|
|
|
subject { me.cursored_timeline(last_id: last_id, size: 3) }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "user answered nothing and is not following anyone" do
|
|
|
|
include_examples "result is blank"
|
2020-04-20 14:03:57 -07:00
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "user answered something and is not following anyone" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:answer) { FactoryBot.create(:answer, user: me) }
|
|
|
|
|
|
|
|
let(:expected) { [answer] }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "includes the answer" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to eq(expected)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "user answered something and follows users with answers" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:user1) { FactoryBot.create(:user) }
|
|
|
|
let(:user2) { FactoryBot.create(:user) }
|
|
|
|
let!(:answer1) { FactoryBot.create(:answer, user: me, created_at: 1.day.ago) }
|
|
|
|
let!(:answer2) { FactoryBot.create(:answer, user: user1, created_at: 12.hours.ago) }
|
|
|
|
let!(:answer3) { FactoryBot.create(:answer, user: user2, created_at: 10.minutes.ago) }
|
|
|
|
let!(:answer4) { FactoryBot.create(:answer, user: user1, created_at: Time.now.utc) }
|
|
|
|
|
|
|
|
before(:each) do
|
|
|
|
me.follow(user1)
|
|
|
|
me.follow(user2)
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "last_id is nil" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:last_id) { nil }
|
|
|
|
let(:expected) do
|
|
|
|
[answer4, answer3, answer2]
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "includes three answers" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).not_to include(answer1)
|
|
|
|
expect(subject).to include(answer2)
|
|
|
|
expect(subject).to include(answer3)
|
|
|
|
expect(subject).to include(answer4)
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "result is ordered by created_at in reverse order" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to eq(expected)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "last_id is answer2.id" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:last_id) { answer2.id }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
it "includes answer1" do
|
2020-04-20 14:03:57 -07:00
|
|
|
expect(subject).to include(answer1)
|
|
|
|
expect(subject).not_to include(answer2)
|
|
|
|
expect(subject).not_to include(answer3)
|
|
|
|
expect(subject).not_to include(answer4)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
context "last_id is answer1.id" do
|
2020-04-20 14:03:57 -07:00
|
|
|
let(:last_id) { answer1.id }
|
|
|
|
|
2022-01-17 10:23:39 -08:00
|
|
|
include_examples "result is blank"
|
2020-04-20 14:03:57 -07:00
|
|
|
end
|
|
|
|
end
|
2014-12-07 02:33:26 -08:00
|
|
|
end
|
2014-11-14 11:45:30 -08:00
|
|
|
end
|