111 lines
3.0 KiB
Ruby
111 lines
3.0 KiB
Ruby
# -*- encoding : utf-8 -*-
|
|
require 'spec_helper'
|
|
|
|
shared_examples_for 'can subscribe' do
|
|
it 'should be able to perform create action' do
|
|
post :create, @create_params
|
|
response.should redirect_to(project_issue_path(@project, @issue))
|
|
end
|
|
|
|
it 'should create subscribe object into db' do
|
|
lambda{ post :create, @create_params }.should change{ Subscribe.count }.by(1)
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'can not subscribe' do
|
|
it 'should not be able to perform create action' do
|
|
post :create, @create_params
|
|
response.should redirect_to(forbidden_path)
|
|
end
|
|
|
|
it 'should not create subscribe object into db' do
|
|
lambda{ post :create, @create_params }.should change{ Subscribe.count }.by(0)
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'can unsubscribe' do
|
|
it 'should be able to perform destroy action' do
|
|
delete :destroy, @destroy_params
|
|
|
|
response.should redirect_to([@project, @issue])
|
|
end
|
|
|
|
it 'should reduce subscribes count' do
|
|
lambda{ delete :destroy, @destroy_params }.should change{ Subscribe.count }.by(-1)
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'can not unsubscribe' do
|
|
it 'should not be able to perform destroy action' do
|
|
delete :destroy, @destroy_params
|
|
|
|
response.should redirect_to(forbidden_path)
|
|
end
|
|
|
|
it 'should not reduce subscribes count' do
|
|
lambda{ delete :destroy, @destroy_params }.should change{ Subscribe.count }.by(0)
|
|
end
|
|
end
|
|
|
|
describe Projects::SubscribesController do
|
|
before(:each) do
|
|
stub_symlink_methods
|
|
|
|
@project = FactoryGirl.create(:project)
|
|
@issue = FactoryGirl.create(:issue, :project_id => @project.id)
|
|
|
|
@create_params = {:issue_id => @issue.serial_id, :owner_name => @project.owner.uname, :project_name => @project.name}
|
|
@destroy_params = {:issue_id => @issue.serial_id, :owner_name => @project.owner.uname, :project_name => @project.name}
|
|
|
|
any_instance_of(Project, :versions => ['v1.0', 'v2.0'])
|
|
|
|
@request.env['HTTP_REFERER'] = project_issue_path(@project, @issue)
|
|
end
|
|
|
|
context 'for global admin user' do
|
|
before(:each) do
|
|
@user = FactoryGirl.create(:admin)
|
|
set_session_for(@user)
|
|
@project.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
|
@destroy_params = @destroy_params.merge({:id => @user.id})
|
|
end
|
|
|
|
context 'subscribed' do
|
|
before(:each) do
|
|
ss = @issue.subscribes.build(:user => @user)
|
|
ss.save!
|
|
end
|
|
|
|
it_should_behave_like 'can unsubscribe'
|
|
it_should_behave_like 'can not subscribe'
|
|
end
|
|
|
|
context 'not subscribed' do
|
|
it_should_behave_like 'can subscribe'
|
|
end
|
|
end
|
|
|
|
context 'for simple user' do
|
|
before(:each) do
|
|
@user = FactoryGirl.create(:user)
|
|
set_session_for(@user)
|
|
@destroy_params = @destroy_params.merge({:id => @user.id})
|
|
end
|
|
|
|
context 'subscribed' do
|
|
before(:each) do
|
|
ss = @issue.subscribes.build(:user => @user)
|
|
ss.save!
|
|
end
|
|
|
|
it_should_behave_like 'can unsubscribe'
|
|
it_should_behave_like 'can not subscribe'
|
|
end
|
|
|
|
context 'not subscribed' do
|
|
it_should_behave_like 'can subscribe'
|
|
end
|
|
end
|
|
|
|
end
|