277 lines
8.8 KiB
Ruby
277 lines
8.8 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe EmailController do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:topic) { Fabricate(:topic) }
|
|
let(:private_topic) { Fabricate(:private_message_topic) }
|
|
|
|
context '.perform unsubscribe' do
|
|
it 'raises not found on invalid key' do
|
|
post "/email/unsubscribe/123.json"
|
|
expect(response.status).to eq(404)
|
|
end
|
|
|
|
it 'can fully unsubscribe' do
|
|
user = Fabricate(:user)
|
|
key = UnsubscribeKey.create_key_for(user, "all")
|
|
|
|
user.user_option.update_columns(email_always: true,
|
|
email_digests: true,
|
|
email_direct: true,
|
|
email_private_messages: true)
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { unsubscribe_all: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
get response.redirect_url
|
|
|
|
# cause it worked ... yay
|
|
expect(body).to include(user.email)
|
|
|
|
user.user_option.reload
|
|
|
|
expect(user.user_option.email_always).to eq(false)
|
|
expect(user.user_option.email_digests).to eq(false)
|
|
expect(user.user_option.email_direct).to eq(false)
|
|
expect(user.user_option.email_private_messages).to eq(false)
|
|
|
|
end
|
|
|
|
it 'can disable mailing list' do
|
|
user = Fabricate(:user)
|
|
key = UnsubscribeKey.create_key_for(user, "all")
|
|
|
|
user.user_option.update_columns(mailing_list_mode: true)
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { disable_mailing_list: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
user.user_option.reload
|
|
|
|
expect(user.user_option.mailing_list_mode).to eq(false)
|
|
end
|
|
|
|
it 'can disable digest' do
|
|
user = Fabricate(:user)
|
|
key = UnsubscribeKey.create_key_for(user, "all")
|
|
|
|
user.user_option.update_columns(email_digests: true)
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { disable_digest_emails: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
user.user_option.reload
|
|
|
|
expect(user.user_option.email_digests).to eq(false)
|
|
end
|
|
|
|
it 'can unwatch topic' do
|
|
p = Fabricate(:post)
|
|
key = UnsubscribeKey.create_key_for(p.user, p)
|
|
|
|
TopicUser.change(p.user_id, p.topic_id, notification_level: TopicUser.notification_levels[:watching])
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { unwatch_topic: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(TopicUser.get(p.topic, p.user).notification_level).to eq(TopicUser.notification_levels[:tracking])
|
|
end
|
|
|
|
it 'can mute topic' do
|
|
p = Fabricate(:post)
|
|
key = UnsubscribeKey.create_key_for(p.user, p)
|
|
|
|
TopicUser.change(p.user_id, p.topic_id, notification_level: TopicUser.notification_levels[:watching])
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { mute_topic: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(TopicUser.get(p.topic, p.user).notification_level).to eq(TopicUser.notification_levels[:muted])
|
|
end
|
|
|
|
it 'can unwatch category' do
|
|
p = Fabricate(:post)
|
|
key = UnsubscribeKey.create_key_for(p.user, p)
|
|
|
|
cu = CategoryUser.create!(user_id: p.user.id,
|
|
category_id: p.topic.category_id,
|
|
notification_level: CategoryUser.notification_levels[:watching])
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { unwatch_category: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(CategoryUser.find_by(id: cu.id)).to eq(nil)
|
|
end
|
|
|
|
it 'can unwatch first post from category' do
|
|
p = Fabricate(:post)
|
|
key = UnsubscribeKey.create_key_for(p.user, p)
|
|
|
|
cu = CategoryUser.create!(user_id: p.user.id,
|
|
category_id: p.topic.category_id,
|
|
notification_level: CategoryUser.notification_levels[:watching_first_post])
|
|
|
|
post "/email/unsubscribe/#{key}.json",
|
|
params: { unwatch_category: "1" }
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(CategoryUser.find_by(id: cu.id)).to eq(nil)
|
|
end
|
|
end
|
|
|
|
describe '#unsubscribed' do
|
|
describe 'when email is invalid' do
|
|
it 'should return the right response' do
|
|
get '/email/unsubscribed', params: { email: 'somerandomstring' }
|
|
expect(response.status).to eq(404)
|
|
end
|
|
end
|
|
|
|
describe 'when topic is public' do
|
|
it 'should return the right response' do
|
|
key = SecureRandom.hex
|
|
$redis.set(key, user.email)
|
|
get '/email/unsubscribed', params: { key: key, topic_id: topic.id }
|
|
expect(response.status).to eq(200)
|
|
expect(response.body).to include(topic.title)
|
|
end
|
|
end
|
|
|
|
describe 'when topic is private' do
|
|
it 'should return the right response' do
|
|
key = SecureRandom.hex
|
|
$redis.set(key, user.email)
|
|
get '/email/unsubscribed', params: { key: key, topic_id: private_topic.id }
|
|
expect(response.status).to eq(200)
|
|
expect(response.body).to_not include(private_topic.title)
|
|
end
|
|
end
|
|
end
|
|
|
|
context '#preferences_redirect' do
|
|
it 'requires you to be logged in' do
|
|
get "/email_preferences.json"
|
|
expect(response.status).to eq(403)
|
|
end
|
|
|
|
context 'when logged in' do
|
|
let!(:user) { sign_in(Fabricate(:user)) }
|
|
|
|
it 'redirects to your user preferences' do
|
|
get "/email_preferences.json"
|
|
expect(response).to redirect_to("/u/#{user.username}/preferences")
|
|
end
|
|
end
|
|
end
|
|
|
|
context '#unsubscribe' do
|
|
it 'displays log out button if wrong user logged in' do
|
|
sign_in(Fabricate(:admin))
|
|
user = Fabricate(:user)
|
|
key = UnsubscribeKey.create_key_for(user, "digest")
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
|
|
expect(response.body).to include(I18n.t("unsubscribe.log_out"))
|
|
expect(response.body).to include(I18n.t("unsubscribe.different_user_description"))
|
|
end
|
|
|
|
it 'displays not found if key is not found' do
|
|
get "/email/unsubscribe/#{SecureRandom.hex}"
|
|
expect(response.body).to include(CGI.escapeHTML(I18n.t("unsubscribe.not_found_description")))
|
|
end
|
|
|
|
it 'correctly handles mailing list mode' do
|
|
user = Fabricate(:user)
|
|
key = UnsubscribeKey.create_key_for(user, "digest")
|
|
|
|
user.user_option.update_columns(mailing_list_mode: true)
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).to include(I18n.t("unsubscribe.mailing_list_mode"))
|
|
|
|
SiteSetting.disable_mailing_list_mode = true
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).not_to include(I18n.t("unsubscribe.mailing_list_mode"))
|
|
|
|
user.user_option.update_columns(mailing_list_mode: false)
|
|
SiteSetting.disable_mailing_list_mode = false
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).not_to include(I18n.t("unsubscribe.mailing_list_mode"))
|
|
end
|
|
|
|
it 'correctly handles digest unsubscribe' do
|
|
user = Fabricate(:user)
|
|
user.user_option.update_columns(email_digests: false)
|
|
key = UnsubscribeKey.create_key_for(user, "digest")
|
|
|
|
# because we are type digest we will always show digest and it will be selected
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).to include(I18n.t("unsubscribe.disable_digest_emails"))
|
|
|
|
source = Nokogiri::HTML::fragment(response.body)
|
|
expect(source.css("#disable_digest_emails")[0]["checked"]).to eq("checked")
|
|
|
|
SiteSetting.disable_digest_emails = true
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).not_to include(I18n.t("unsubscribe.disable_digest_emails"))
|
|
|
|
SiteSetting.disable_digest_emails = false
|
|
key = UnsubscribeKey.create_key_for(user, "not_digest")
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).to include(I18n.t("unsubscribe.disable_digest_emails"))
|
|
end
|
|
|
|
it 'correctly handles watched categories' do
|
|
post = Fabricate(:post)
|
|
user = post.user
|
|
cu = CategoryUser.create!(user_id: user.id,
|
|
category_id: post.topic.category_id,
|
|
notification_level: CategoryUser.notification_levels[:watching])
|
|
|
|
key = UnsubscribeKey.create_key_for(user, post)
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).to include("unwatch_category")
|
|
|
|
cu.destroy!
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).not_to include("unwatch_category")
|
|
end
|
|
|
|
it 'correctly handles watched first post categories' do
|
|
post = Fabricate(:post)
|
|
user = post.user
|
|
cu = CategoryUser.create!(user_id: user.id,
|
|
category_id: post.topic.category_id,
|
|
notification_level: CategoryUser.notification_levels[:watching_first_post])
|
|
|
|
key = UnsubscribeKey.create_key_for(user, post)
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).to include("unwatch_category")
|
|
|
|
cu.destroy!
|
|
|
|
get "/email/unsubscribe/#{key}"
|
|
expect(response.body).not_to include("unwatch_category")
|
|
end
|
|
end
|
|
end
|