2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2014-02-08 00:07:23 +08:00
|
|
|
|
|
|
|
describe GroupsController do
|
|
|
|
let(:group) { Fabricate(:group) }
|
|
|
|
|
|
|
|
describe 'show' do
|
|
|
|
it "ensures the group can be seen" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(false)
|
|
|
|
xhr :get, :show, id: group.name
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).not_to be_success
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "responds with JSON" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(true)
|
|
|
|
xhr :get, :show, id: group.name
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
|
|
|
expect(::JSON.parse(response.body)['basic_group']['id']).to eq(group.id)
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
2014-02-19 05:43:02 +08:00
|
|
|
|
|
|
|
it "works even with an upper case group name" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(true)
|
|
|
|
xhr :get, :show, id: group.name.upcase
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
|
|
|
expect(::JSON.parse(response.body)['basic_group']['id']).to eq(group.id)
|
2014-02-19 05:43:02 +08:00
|
|
|
end
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "posts" do
|
|
|
|
it "ensures the group can be seen" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(false)
|
|
|
|
xhr :get, :posts, group_id: group.name
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).not_to be_success
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "calls `posts_for` and responds with JSON" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(true)
|
2014-02-13 03:00:45 +08:00
|
|
|
Group.any_instance.expects(:posts_for).returns(Group.none)
|
2014-02-08 00:07:23 +08:00
|
|
|
xhr :get, :posts, group_id: group.name
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "members" do
|
|
|
|
it "ensures the group can be seen" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(false)
|
|
|
|
xhr :get, :members, group_id: group.name
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).not_to be_success
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "calls `posts_for` and responds with JSON" do
|
|
|
|
Guardian.any_instance.expects(:can_see?).with(group).returns(true)
|
|
|
|
xhr :get, :posts, group_id: group.name
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
2014-11-25 04:12:48 +08:00
|
|
|
|
2016-12-07 17:28:43 +08:00
|
|
|
it "ensures that membership can be paginated" do
|
2014-11-25 04:12:48 +08:00
|
|
|
5.times { group.add(Fabricate(:user)) }
|
2016-12-07 17:28:43 +08:00
|
|
|
usernames = group.users.map{ |m| m.username }.sort
|
2014-11-26 01:12:24 +08:00
|
|
|
|
2014-11-25 04:12:48 +08:00
|
|
|
xhr :get, :members, group_id: group.name, limit: 3
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2016-12-07 17:28:43 +08:00
|
|
|
members = JSON.parse(response.body)["members"]
|
|
|
|
expect(members.map { |m| m['username'] }).to eq(usernames[0..2])
|
2014-11-25 04:12:48 +08:00
|
|
|
|
|
|
|
xhr :get, :members, group_id: group.name, limit: 3, offset: 3
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2016-12-07 17:28:43 +08:00
|
|
|
members = JSON.parse(response.body)["members"]
|
|
|
|
expect(members.map { |m| m['username'] }).to eq(usernames[3..4])
|
2014-11-25 04:12:48 +08:00
|
|
|
end
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|
2015-01-09 07:35:52 +08:00
|
|
|
|
2016-03-19 00:19:45 +08:00
|
|
|
describe '.posts_feed' do
|
|
|
|
it 'renders RSS' do
|
|
|
|
get :posts_feed, group_id: group.name, format: :rss
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('application/rss+xml')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.mentions_feed' do
|
|
|
|
it 'renders RSS' do
|
|
|
|
get :mentions_feed, group_id: group.name, format: :rss
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('application/rss+xml')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-08 00:07:23 +08:00
|
|
|
end
|