2020-05-21 13:25:43 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
describe UserController, type: :controller do
|
2020-11-15 01:21:06 -08:00
|
|
|
let(:user) { FactoryBot.create :user,
|
|
|
|
otp_module: :disabled,
|
|
|
|
otp_secret_key: 'EJFNIJPYXXTCQSRTQY6AG7XQLAT2IDG5H7NGLJE3'}
|
2020-05-21 13:25:43 -07:00
|
|
|
|
2021-12-31 04:59:08 -08:00
|
|
|
describe "#show" do
|
|
|
|
subject { get :show, params: { username: user.screen_name } }
|
|
|
|
|
|
|
|
context "user signed in" do
|
|
|
|
before(:each) { sign_in user }
|
|
|
|
|
|
|
|
it "renders the user/show template" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:user)).to eq(user)
|
|
|
|
expect(response).to render_template("user/show")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-31 06:35:29 -08:00
|
|
|
describe "#followers" do
|
|
|
|
subject { get :followers, params: { username: user.screen_name } }
|
|
|
|
|
|
|
|
context "user signed in" do
|
|
|
|
before(:each) { sign_in user }
|
|
|
|
|
|
|
|
it "renders the user/show_follow template" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:user)).to eq(user)
|
|
|
|
expect(response).to render_template("user/show_follow")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-08 12:40:57 -08:00
|
|
|
describe "#followings" do
|
|
|
|
subject { get :followings, params: { username: user.screen_name } }
|
2021-12-31 06:35:29 -08:00
|
|
|
|
|
|
|
context "user signed in" do
|
|
|
|
before(:each) { sign_in user }
|
|
|
|
|
|
|
|
it "renders the user/show_follow template" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:user)).to eq(user)
|
|
|
|
expect(response).to render_template("user/show_follow")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-31 06:56:15 -08:00
|
|
|
describe "#questions" do
|
2022-08-20 08:07:37 -07:00
|
|
|
let!(:question) { FactoryBot.create(:question, user: user, direct: true, author_is_anonymous: false) }
|
2021-12-31 06:56:15 -08:00
|
|
|
subject { get :questions, params: { username: user.screen_name } }
|
|
|
|
|
2022-08-20 08:07:37 -07:00
|
|
|
it "renders the user/questions template" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:user)).to eq(user)
|
|
|
|
expect(response).to render_template("user/questions")
|
|
|
|
end
|
|
|
|
|
|
|
|
context "current user signed in" do
|
|
|
|
before do
|
|
|
|
sign_in user
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders all questions" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:questions).size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-31 06:56:15 -08:00
|
|
|
context "user signed in" do
|
2022-08-20 08:07:37 -07:00
|
|
|
let(:another_user) { FactoryBot.create :user }
|
2021-12-31 06:56:15 -08:00
|
|
|
|
2022-08-20 08:07:37 -07:00
|
|
|
before do
|
|
|
|
sign_in another_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders no questions" do
|
2021-12-31 06:56:15 -08:00
|
|
|
subject
|
2022-08-20 08:07:37 -07:00
|
|
|
expect(assigns(:questions).size).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "moderator unmasked" do
|
|
|
|
let(:another_user) { FactoryBot.create :user, roles: ["moderator"] }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in another_user
|
|
|
|
allow_any_instance_of(UserHelper).to receive(:moderation_view?) { true }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "contains all questions" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:questions).size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "user not signed in" do
|
|
|
|
it "contains no questions" do
|
|
|
|
subject
|
|
|
|
expect(assigns(:questions).size).to eq(0)
|
2021-12-31 06:56:15 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-05-21 13:25:43 -07:00
|
|
|
end
|