2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ListController do
|
2018-06-03 23:09:59 -04:00
|
|
|
let(:topic) { Fabricate(:topic, user: user) }
|
2018-03-15 04:01:40 -04:00
|
|
|
let(:group) { Fabricate(:group) }
|
2018-06-03 23:09:59 -04:00
|
|
|
let(:user) { Fabricate(:user) }
|
2018-12-12 05:46:14 -05:00
|
|
|
let(:admin) { Fabricate(:admin) }
|
2018-06-03 23:09:59 -04:00
|
|
|
|
|
|
|
before do
|
2018-12-12 05:46:14 -05:00
|
|
|
admin # to skip welcome wizard at home page `/`
|
2018-06-03 23:09:59 -04:00
|
|
|
SiteSetting.top_menu = 'latest|new|unread|categories'
|
|
|
|
end
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2017-10-01 22:45:54 -04:00
|
|
|
describe '#index' do
|
2018-08-14 03:01:04 -04:00
|
|
|
it "does not return a 500 for invalid input" do
|
|
|
|
get "/latest?min_posts=bob"
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
|
|
|
|
get "/latest?max_posts=bob"
|
|
|
|
expect(response.status).to eq(400)
|
2018-08-14 19:53:28 -04:00
|
|
|
|
2018-09-03 00:45:32 -04:00
|
|
|
get "/latest?max_posts=1111111111111111111111111111111111111111"
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
|
|
|
|
get "/latest?page=-1"
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
|
|
|
|
get "/latest?page=2147483648"
|
|
|
|
expect(response.status).to eq(400)
|
|
|
|
|
|
|
|
get "/latest?page=1111111111111111111111111111111111111111"
|
|
|
|
expect(response.status).to eq(400)
|
2018-08-14 03:01:04 -04:00
|
|
|
end
|
|
|
|
|
2018-08-14 21:31:42 -04:00
|
|
|
it "returns 200 for legit requests" do
|
2019-11-18 01:58:35 -05:00
|
|
|
get "/latest.json?no_definitions=true&no_subcategories=false&page=1&_=1534296100767"
|
2018-08-15 00:56:24 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-08-16 04:36:02 -04:00
|
|
|
|
|
|
|
get "/latest.json?max_posts=12"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
get "/latest.json?min_posts=0"
|
|
|
|
expect(response.status).to eq(200)
|
2018-08-14 21:31:42 -04:00
|
|
|
|
2018-09-05 14:43:05 -04:00
|
|
|
get "/latest?page=0"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
2018-09-03 00:45:32 -04:00
|
|
|
get "/latest?page=1"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
get "/latest.json?page=2147483647"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2017-10-01 22:45:54 -04:00
|
|
|
end
|
2018-06-03 23:09:59 -04:00
|
|
|
|
|
|
|
(Discourse.anonymous_filters - [:categories]).each do |filter|
|
|
|
|
context "#{filter}" do
|
|
|
|
it "succeeds" do
|
|
|
|
get "/#{filter}"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows users to filter on a set of topic ids' do
|
|
|
|
p = create_post
|
|
|
|
|
|
|
|
get "/latest.json", params: { topic_ids: "#{p.topic_id}" }
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
parsed = JSON.parse(response.body)
|
|
|
|
expect(parsed["topic_list"]["topics"].length).to eq(1)
|
|
|
|
end
|
2018-12-12 05:46:14 -05:00
|
|
|
|
|
|
|
it "shows correct title if topic list is set for homepage" do
|
|
|
|
get "/"
|
|
|
|
|
|
|
|
expect(response.body).to have_tag "title", text: "Discourse"
|
|
|
|
|
|
|
|
SiteSetting.short_site_description = "Best community"
|
|
|
|
get "/"
|
|
|
|
|
|
|
|
expect(response.body).to have_tag "title", text: "Discourse - Best community"
|
|
|
|
end
|
2017-10-01 22:45:54 -04:00
|
|
|
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
|
|
|
|
|
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)
|
2018-03-11 00:29:34 -05:00
|
|
|
get "/topics/private-messages-tags/#{user.username}/#{tag.name}.json"
|
2018-02-22 09:57:02 -05:00
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be success for staff users' do
|
|
|
|
[moderator, admin].each do |user|
|
|
|
|
sign_in(user)
|
2018-03-11 00:29:34 -05:00
|
|
|
get "/topics/private-messages-tags/#{user.username}/#{tag.name}.json"
|
2018-03-14 07:40:28 -04:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-15 04:01:40 -04:00
|
|
|
describe '#private_messages_group' do
|
|
|
|
let(:user) do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
group.add(user)
|
|
|
|
sign_in(user)
|
|
|
|
user
|
|
|
|
end
|
|
|
|
|
2019-11-06 15:25:45 -05:00
|
|
|
describe 'with unicode_usernames' do
|
|
|
|
before { SiteSetting.unicode_usernames = false }
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
group.add(user)
|
|
|
|
topic = Fabricate(:private_message_topic, allowed_groups: [group])
|
|
|
|
get "/topics/private-messages-group/#{user.username}/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
expect(JSON.parse(response.body)["topic_list"]["topics"].first["id"])
|
|
|
|
.to eq(topic.id)
|
|
|
|
end
|
2018-03-15 04:01:40 -04:00
|
|
|
end
|
|
|
|
|
2019-11-06 15:25:45 -05:00
|
|
|
describe 'with unicode_usernames' do
|
|
|
|
before { SiteSetting.unicode_usernames = true }
|
2018-03-15 04:01:40 -04:00
|
|
|
|
2019-11-06 15:25:45 -05:00
|
|
|
it 'Returns a 200 with unicode group name' do
|
|
|
|
unicode_group = Fabricate(:group, name: '群群组')
|
|
|
|
unicode_group.add(user)
|
|
|
|
topic = Fabricate(:private_message_topic, allowed_groups: [unicode_group])
|
2019-12-11 21:49:21 -05:00
|
|
|
get "/topics/private-messages-group/#{user.username}/#{UrlHelper.encode_component(unicode_group.name)}.json"
|
2019-11-06 15:25:45 -05:00
|
|
|
expect(response.status).to eq(200)
|
2018-03-15 04:01:40 -04:00
|
|
|
|
2019-11-06 15:25:45 -05:00
|
|
|
expect(JSON.parse(response.body)["topic_list"]["topics"].first["id"])
|
|
|
|
.to eq(topic.id)
|
|
|
|
end
|
2018-03-15 04:01:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#group_topics' do
|
2018-03-14 07:40:28 -04:00
|
|
|
%i{user user2}.each do |user|
|
|
|
|
let(user) do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
group.add(user)
|
|
|
|
user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
let!(:topic) { Fabricate(:topic, user: user) }
|
|
|
|
let!(:topic2) { Fabricate(:topic, user: user2) }
|
|
|
|
let!(:another_topic) { Fabricate(:topic) }
|
|
|
|
|
|
|
|
describe 'when an invalid group name is given' do
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/something.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'for an anon user' do
|
|
|
|
describe 'public visible group' do
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(JSON.parse(response.body)["topic_list"]).to be_present
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-08 15:09:50 -04:00
|
|
|
describe 'group restricted to logged-on-users' do
|
|
|
|
before { group.update!(visibility_level: Group.visibility_levels[:logged_on_users]) }
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-14 07:40:28 -04:00
|
|
|
describe 'restricted group' do
|
|
|
|
before { group.update!(visibility_level: Group.visibility_levels[:staff]) }
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
end
|
2019-08-14 09:30:04 -04:00
|
|
|
|
|
|
|
describe 'group members visibility restricted to logged-on-users' do
|
|
|
|
before { group.update!(members_visibility_level: Group.visibility_levels[:logged_on_users]) }
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
end
|
2018-03-14 07:40:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'for a normal user' do
|
|
|
|
before { sign_in(Fabricate(:user)) }
|
|
|
|
|
|
|
|
describe 'restricted group' do
|
|
|
|
before { group.update!(visibility_level: Group.visibility_levels[:staff]) }
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
2019-07-08 15:09:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'group restricted to logged-on-users' do
|
|
|
|
before { group.update!(visibility_level: Group.visibility_levels[:logged_on_users]) }
|
|
|
|
|
|
|
|
it 'should return the right response' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
2018-03-14 07:40:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'for a group user' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to view the topics started by group users' do
|
|
|
|
get "/topics/groups/#{group.name}.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
topics = JSON.parse(response.body)["topic_list"]["topics"]
|
|
|
|
|
|
|
|
expect(topics.map { |topic| topic["id"] }).to contain_exactly(
|
|
|
|
topic.id, topic2.id
|
|
|
|
)
|
2018-02-22 09:57:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-06-03 23:09:59 -04:00
|
|
|
|
|
|
|
describe 'RSS feeds' do
|
|
|
|
it 'renders latest RSS' do
|
|
|
|
get "/latest.rss"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2019-09-11 20:41:50 -04:00
|
|
|
expect(response.media_type).to eq('application/rss+xml')
|
2020-01-23 23:00:27 -05:00
|
|
|
expect(response.headers['X-Robots-Tag']).to eq('noindex')
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 18:05:08 -04:00
|
|
|
it 'renders links correctly with subfolder' do
|
2019-11-15 00:48:24 -05:00
|
|
|
set_subfolder "/forum"
|
2018-08-27 18:05:08 -04:00
|
|
|
post = Fabricate(:post, topic: topic, user: user)
|
|
|
|
get "/latest.rss"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.body).to_not include("/forum/forum")
|
|
|
|
expect(response.body).to include("http://test.localhost/forum/t/#{topic.slug}")
|
|
|
|
expect(response.body).to include("http://test.localhost/forum/u/#{post.user.username}")
|
|
|
|
end
|
|
|
|
|
2018-06-03 23:09:59 -04:00
|
|
|
it 'renders top RSS' do
|
|
|
|
get "/top.rss"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2019-09-11 20:41:50 -04:00
|
|
|
expect(response.media_type).to eq('application/rss+xml')
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
TopTopic.periods.each do |period|
|
|
|
|
it "renders #{period} top RSS" do
|
|
|
|
get "/top/#{period}.rss"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2019-09-11 20:41:50 -04:00
|
|
|
expect(response.media_type).to eq('application/rss+xml')
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'category' do
|
|
|
|
context 'in a category' do
|
2019-08-06 06:26:54 -04:00
|
|
|
let(:category) { Fabricate(:category_with_definition) }
|
2018-06-03 23:09:59 -04:00
|
|
|
let(:group) { Fabricate(:group) }
|
|
|
|
let(:private_category) { Fabricate(:private_category, group: group) }
|
|
|
|
|
|
|
|
context 'without access to see the category' do
|
|
|
|
it "responds with a 404 error" do
|
|
|
|
get "/c/#{private_category.slug}/l/latest"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with access to see the category' do
|
|
|
|
it "succeeds" do
|
|
|
|
get "/c/#{category.slug}/l/latest"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a link that includes an id' do
|
|
|
|
it "succeeds" do
|
|
|
|
get "/c/#{category.id}-#{category.slug}/l/latest"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a link that has a parent slug, slug and id in its path' do
|
2019-08-06 06:26:54 -04:00
|
|
|
let(:child_category) { Fabricate(:category_with_definition, parent_category: category) }
|
2018-06-03 23:09:59 -04:00
|
|
|
|
|
|
|
context "with valid slug" do
|
2019-10-30 13:22:32 -04:00
|
|
|
it "succeeds" do
|
|
|
|
get "/c/#{category.slug}/#{child_category.slug}/#{child_category.id}/l/latest"
|
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with invalid slug" do
|
2019-10-30 13:22:32 -04:00
|
|
|
xit "redirects" do
|
|
|
|
get "/c/random_slug/another_random_slug/#{child_category.id}/l/latest"
|
2018-06-03 23:09:59 -04:00
|
|
|
expect(response).to redirect_to(child_category.url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'another category exists with a number at the beginning of its name' do
|
|
|
|
# One category has another category's id at the beginning of its name
|
2019-10-30 10:45:34 -04:00
|
|
|
let!(:other_category) {
|
|
|
|
# Our validations don't allow this to happen now, but did historically
|
|
|
|
Fabricate(:category_with_definition, name: "#{category.id} name", slug: '-').tap { |c|
|
|
|
|
DB.exec <<~SQL
|
|
|
|
UPDATE categories
|
|
|
|
SET slug = '#{category.id}-name'
|
|
|
|
WHERE id = #{c.id}
|
|
|
|
SQL
|
|
|
|
c.reload
|
|
|
|
}
|
|
|
|
}
|
2018-06-03 23:09:59 -04:00
|
|
|
|
|
|
|
it 'uses the correct category' do
|
|
|
|
get "/c/#{other_category.slug}/l/latest.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
body = JSON.parse(response.body)
|
|
|
|
expect(body["topic_list"]["topics"].first["category_id"])
|
|
|
|
.to eq(other_category.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'a child category' do
|
2019-08-06 06:26:54 -04:00
|
|
|
let(:sub_category) { Fabricate(:category_with_definition, parent_category_id: category.id) }
|
2018-06-03 23:09:59 -04:00
|
|
|
|
|
|
|
context 'when parent and child are requested' do
|
|
|
|
it "succeeds" do
|
|
|
|
get "/c/#{category.slug}/#{sub_category.slug}/l/latest"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when child is requested with the wrong parent' do
|
|
|
|
it "responds with a 404 error" do
|
|
|
|
get "/c/not-the-right-slug/#{sub_category.slug}/l/latest"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'feed' do
|
|
|
|
it 'renders RSS' do
|
|
|
|
get "/c/#{category.slug}.rss"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2019-09-11 20:41:50 -04:00
|
|
|
expect(response.media_type).to eq('application/rss+xml')
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
2018-09-07 10:03:30 -04:00
|
|
|
|
|
|
|
it "renders RSS in subfolder correctly" do
|
2019-11-15 00:48:24 -05:00
|
|
|
set_subfolder "/forum"
|
2018-09-07 10:03:30 -04:00
|
|
|
get "/c/#{category.slug}.rss"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.body).to_not include("/forum/forum")
|
|
|
|
expect(response.body).to include("http://test.localhost/forum/c/#{category.slug}")
|
|
|
|
end
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "category default views" do
|
|
|
|
it "has a top default view" do
|
2019-04-29 03:32:25 -04:00
|
|
|
category.update!(default_view: 'top', default_top_period: 'monthly')
|
2018-06-03 23:09:59 -04:00
|
|
|
get "/c/#{category.slug}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["for_period"]).to eq("monthly")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has a default view of nil" do
|
2019-04-29 03:32:25 -04:00
|
|
|
category.update!(default_view: nil)
|
2018-06-03 23:09:59 -04:00
|
|
|
get "/c/#{category.slug}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["for_period"]).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has a default view of ''" do
|
2019-04-29 03:32:25 -04:00
|
|
|
category.update!(default_view: '')
|
2018-06-03 23:09:59 -04:00
|
|
|
get "/c/#{category.slug}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["for_period"]).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has a default view of latest" do
|
2019-04-29 03:32:25 -04:00
|
|
|
category.update!(default_view: 'latest')
|
2018-06-03 23:09:59 -04:00
|
|
|
get "/c/#{category.slug}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["for_period"]).to be_blank
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "renders canonical tag" do
|
|
|
|
it 'for category default view' do
|
|
|
|
get "/c/#{category.slug}"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
expect(css_select("link[rel=canonical]").length).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'for category latest view' do
|
|
|
|
get "/c/#{category.slug}/l/latest"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
expect(css_select("link[rel=canonical]").length).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
2019-07-08 02:12:39 -04:00
|
|
|
|
|
|
|
context "renders correct title" do
|
2019-08-06 06:26:54 -04:00
|
|
|
let!(:amazing_category) { Fabricate(:category_with_definition, name: "Amazing Category") }
|
2019-07-08 02:12:39 -04:00
|
|
|
|
|
|
|
it 'for category default view' do
|
|
|
|
get "/c/#{amazing_category.slug}"
|
|
|
|
|
|
|
|
expect(response.body).to have_tag "title", text: "Amazing Category - Discourse"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'for category latest view' do
|
|
|
|
SiteSetting.short_site_description = "Best community"
|
|
|
|
get "/c/#{amazing_category.slug}/l/latest"
|
|
|
|
|
|
|
|
expect(response.body).to have_tag "title", text: "Amazing Category - Discourse"
|
|
|
|
end
|
|
|
|
end
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "topics_by" do
|
|
|
|
before do
|
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
Fabricate(:topic, user: user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should respond with a list" do
|
|
|
|
get "/topics/created-by/#{user.username}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-11-23 12:41:41 -05:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["topics"].size).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should work with period in username" do
|
|
|
|
user.update!(username: "myname.test")
|
|
|
|
get "/topics/created-by/#{user.username}", xhr: true
|
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["topics"].size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "private_messages" do
|
|
|
|
it "returns 403 error when the user can't see private message" do
|
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
get "/topics/private-messages/#{user.username}.json"
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
it "succeeds when the user can see private messages" do
|
|
|
|
pm = Fabricate(:private_message_topic, user: Fabricate(:user))
|
|
|
|
pm.topic_allowed_users.create!(user: user)
|
|
|
|
sign_in(user)
|
|
|
|
get "/topics/private-messages/#{user.username}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["topics"].size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "private_messages_sent" do
|
|
|
|
before do
|
|
|
|
pm = Fabricate(:private_message_topic, user: user)
|
|
|
|
Fabricate(:post, user: user, topic: pm, post_number: 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns 403 error when the user can't see private message" do
|
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
get "/topics/private-messages-sent/#{user.username}.json"
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
it "succeeds when the user can see private messages" do
|
|
|
|
sign_in(user)
|
|
|
|
get "/topics/private-messages-sent/#{user.username}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["topics"].size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "private_messages_unread" do
|
|
|
|
before do
|
|
|
|
u = Fabricate(:user)
|
|
|
|
pm = Fabricate(:private_message_topic, user: u)
|
|
|
|
Fabricate(:post, user: u, topic: pm, post_number: 1)
|
|
|
|
pm.topic_allowed_users.create!(user: user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns 403 error when the user can't see private message" do
|
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
get "/topics/private-messages-unread/#{user.username}.json"
|
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
it "succeeds when the user can see private messages" do
|
|
|
|
sign_in(user)
|
|
|
|
get "/topics/private-messages-unread/#{user.username}.json"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["topic_list"]["topics"].size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'read' do
|
|
|
|
it 'raises an error when not logged in' do
|
|
|
|
get "/read"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
it "succeeds" do
|
|
|
|
sign_in(user)
|
|
|
|
get "/read"
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "best_periods_for" do
|
2019-06-04 04:57:50 -04:00
|
|
|
it "works" do
|
|
|
|
expect(ListController.best_periods_for(nil)).to eq([:all])
|
|
|
|
expect(ListController.best_periods_for(5.years.ago)).to eq([:all])
|
|
|
|
expect(ListController.best_periods_for(2.years.ago)).to eq([:yearly, :all])
|
|
|
|
expect(ListController.best_periods_for(6.months.ago)).to eq([:quarterly, :yearly, :all])
|
|
|
|
expect(ListController.best_periods_for(2.months.ago)).to eq([:monthly, :quarterly, :yearly, :all])
|
|
|
|
expect(ListController.best_periods_for(2.weeks.ago)).to eq([:weekly, :monthly, :quarterly, :yearly, :all])
|
|
|
|
expect(ListController.best_periods_for(2.days.ago)).to eq([:daily, :weekly, :monthly, :quarterly, :yearly, :all])
|
|
|
|
end
|
|
|
|
|
|
|
|
it "supports default period" do
|
|
|
|
expect(ListController.best_periods_for(nil, :yearly)).to eq([:yearly, :all])
|
|
|
|
expect(ListController.best_periods_for(nil, :quarterly)).to eq([:quarterly, :all])
|
|
|
|
expect(ListController.best_periods_for(nil, :monthly)).to eq([:monthly, :all])
|
|
|
|
expect(ListController.best_periods_for(nil, :weekly)).to eq([:weekly, :all])
|
|
|
|
expect(ListController.best_periods_for(nil, :daily)).to eq([:daily, :all])
|
2018-06-03 23:09:59 -04:00
|
|
|
end
|
|
|
|
end
|
2017-08-31 00:06:56 -04:00
|
|
|
end
|