OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/controllers/boards_controller_spec.rb

178 lines
5.4 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
describe BoardsController do
let(:user) { FactoryGirl.build(:user) }
let(:project) { FactoryGirl.build(:project) }
let!(:board) { FactoryGirl.build(:board,
project: project) }
before do
disable_flash_sweep
end
describe :create do
let(:params) { {:board => board_params} }
let(:board_params) { {:name => 'my board', :description => 'awesome board'} }
before do
@controller.should_receive(:authorize)
@controller.should_receive(:find_project_by_project_id) do
@controller.instance_variable_set(:@project, project)
end
# parameter expectation needs to have strings as keys
Board.should_receive(:new).with(board_params.stringify_keys).and_return(board)
end
describe 'w/ the params beeing valid' do
before do
board.should_receive(:save).and_return(true)
as_logged_in_user user do
post :create, params
end
end
it 'should redirect to the settings page if successful' do
response.should redirect_to :controller => '/projects', :action => 'settings', :id => project, :tab => 'boards'
end
it 'have a successful creation flash' do
flash[:notice].should == I18n.t(:notice_successful_create)
end
end
describe 'w/ the params beeing invalid' do
before do
board.should_receive(:save).and_return(false)
as_logged_in_user user do
post :create, params
end
end
it 'should render the new template' do
response.should render_template('new')
end
end
end
describe :move do
let(:project) { FactoryGirl.create(:project) }
let!(:board_1) { FactoryGirl.create(:board,
project: project,
position: 1) }
let!(:board_2) { FactoryGirl.create(:board,
project: project,
position: 2) }
before { @controller.stub(:authorize).and_return(true) }
describe :higher do
let(:move_to) { 'higher' }
let(:redirect_url) { "http://test.host/projects/#{project.id}/settings/boards" }
before do
post 'move', id: board_2.id,
project_id: board_2.project_id,
board: { move_to: move_to }
end
it { expect(board_2.reload.position).to eq(1) }
it { expect(response).to be_redirect }
it { expect(response).to redirect_to(redirect_url) }
end
end
describe :update do
let!(:board) { FactoryGirl.create(:board, :name => 'Board name',
:description => 'Board description') }
before do
@controller.should_receive(:authorize)
end
describe 'w/ the params beeing valid' do
before do
as_logged_in_user user do
put :update, id: board.id,
project_id: board.project_id,
board: {:name => 'New name', :description => 'New description'}
end
end
it 'should redirect to the settings page if successful' do
response.should redirect_to :controller => '/projects',
:action => 'settings',
:id => board.project,
:tab => 'boards'
end
it 'have a successful update flash' do
flash[:notice].should == I18n.t(:notice_successful_update)
end
it 'should change the database entry' do
board.reload
board.name.should == 'New name'
board.description.should == 'New description'
end
end
describe 'w/ the params beeing invalid' do
before do
as_logged_in_user user do
post :update, id: board.id,
project_id: board.project_id,
board: {:name => '', :description => 'New description'}
end
end
it 'should render the edit template' do
response.should render_template('edit')
end
it 'should not change the database entry' do
board.reload
board.name.should == 'Board name'
board.description.should == 'Board description'
end
end
end
end