2017-08-31 00:06:56 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ListController do
|
|
|
|
let(:topic) { Fabricate(:topic) }
|
|
|
|
|
2017-10-01 22:45:54 -04:00
|
|
|
describe '#index' do
|
|
|
|
it "doesn't throw an error with a negative page" do
|
|
|
|
get "/#{Discourse.anonymous_filters[1]}", params: { page: -1024 }
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't throw an error with page params as an array" do
|
|
|
|
get "/#{Discourse.anonymous_filters[1]}", params: { page: ['7'] }
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-02 21:53:29 -05:00
|
|
|
describe "categories and X" do
|
|
|
|
it "returns top topics" do
|
|
|
|
Fabricate(:topic, like_count: 1000, posts_count: 100)
|
|
|
|
TopTopic.refresh!
|
|
|
|
|
|
|
|
get "/categories_and_top.json"
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["topics"].length).to eq(1)
|
|
|
|
|
|
|
|
get "/categories_and_latest.json"
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["topics"].length).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-21 17:56:18 -05:00
|
|
|
describe 'suppress from latest' do
|
|
|
|
|
|
|
|
it 'supresses categories' do
|
|
|
|
topic
|
|
|
|
|
|
|
|
get "/latest.json"
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["topics"].length).to eq(1)
|
|
|
|
|
|
|
|
get "/categories_and_latest.json"
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["topics"].length).to eq(1)
|
|
|
|
|
|
|
|
topic.category.suppress_from_latest = true
|
|
|
|
topic.category.save
|
|
|
|
|
|
|
|
get "/latest.json"
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["topics"].length).to eq(0)
|
|
|
|
|
|
|
|
get "/categories_and_latest.json"
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["topics"].length).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
describe 'titles for crawler layout' do
|
|
|
|
it 'has no title for the default URL' do
|
|
|
|
topic
|
|
|
|
filter = Discourse.anonymous_filters[0]
|
|
|
|
get "/#{filter}", params: { _escaped_fragment_: 'true' }
|
|
|
|
|
|
|
|
expect(response.body).to include(I18n.t("rss_description.posts"))
|
|
|
|
|
|
|
|
expect(response.body).to_not include(
|
|
|
|
I18n.t('js.filters.with_topics', filter: filter)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a title for non-default URLs' do
|
|
|
|
topic
|
|
|
|
filter = Discourse.anonymous_filters[1]
|
|
|
|
get "/#{filter}", params: { _escaped_fragment_: 'true' }
|
|
|
|
|
|
|
|
expect(response.body).to include(
|
|
|
|
I18n.t('js.filters.with_topics', filter: filter)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2018-02-22 09:57:02 -05:00
|
|
|
|
|
|
|
describe "filter private messages by tag" do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let(:moderator) { Fabricate(:moderator) }
|
|
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
let(:tag) { Fabricate(:tag) }
|
|
|
|
let(:private_message) { Fabricate(:private_message_topic) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.tagging_enabled = true
|
|
|
|
SiteSetting.allow_staff_to_tag_pms = true
|
|
|
|
Fabricate(:topic_tag, tag: tag, topic: private_message)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should fail for non-staff users' do
|
|
|
|
sign_in(user)
|
|
|
|
get "/topics/private-messages-tag/#{user.username}/#{tag.name}.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be success for staff users' do
|
|
|
|
[moderator, admin].each do |user|
|
|
|
|
sign_in(user)
|
|
|
|
get "/topics/private-messages-tag/#{user.username}/#{tag.name}.json"
|
|
|
|
expect(response).to be_success
|
2018-02-27 11:51:40 -05:00
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["topic_list"]["pm_tags"].length).to eq(1)
|
2018-02-22 09:57:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-08-31 00:06:56 -04:00
|
|
|
end
|