2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-07 01:51:52 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe ComposerMessagesController do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) { Fabricate(:topic, created_at: 10.years.ago, last_posted_at: 10.years.ago) }
|
|
|
|
fab!(:post) { Fabricate(:post, topic: topic, post_number: 1, created_at: 10.years.ago) }
|
2018-06-07 01:51:52 -04:00
|
|
|
|
|
|
|
context '#index' do
|
|
|
|
it 'requires you to be logged in' do
|
|
|
|
get "/composer_messages.json"
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
let!(:user) { sign_in(Fabricate(:user)) }
|
|
|
|
let(:args) { { 'topic_id' => post.topic.id, 'post_id' => '333', 'composer_action' => 'reply' } }
|
|
|
|
|
|
|
|
it 'redirects to your user preferences' do
|
|
|
|
get "/composer_messages.json"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'delegates args to the finder' do
|
|
|
|
user.user_stat.update!(post_count: 10)
|
|
|
|
SiteSetting.disable_avatar_education_message = true
|
|
|
|
|
|
|
|
get "/composer_messages.json", params: args
|
|
|
|
expect(response.status).to eq(200)
|
2020-05-07 11:04:12 -04:00
|
|
|
json = response.parsed_body
|
2018-06-07 01:51:52 -04:00
|
|
|
expect(json["composer_messages"].first["id"]).to eq("reviving_old")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|