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/my_controller_spec.rb

143 lines
4.2 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2014 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 MyController, :type => :controller do
let(:user) { FactoryGirl.create(:user) }
before(:each) do
allow(User).to receive(:current).and_return(user)
end
describe 'password change' do
describe :password do
before do
get :password
end
it 'should render the password template' do
assert_template 'password'
assert_response :success
end
end
describe 'with wrong confirmation' do
before do
post :change_password, :password => 'adminADMIN!',
:new_password => 'adminADMIN!New',
:new_password_confirmation => 'adminADMIN!Other'
end
it 'should show an error message' do
assert_response :success
assert_template 'password'
expect(user.errors.keys).to eq([:password])
expect(user.errors.values.flatten.join('')).to include('confirmation')
end
end
describe 'with wrong password' do
render_views
before do
@current_password = user.current_password.id
post :change_password, :password => 'wrongpassword',
:new_password => 'adminADMIN!New',
:new_password_confirmation => 'adminADMIN!New'
end
it 'should show an error message' do
assert_response :success
assert_template 'password'
expect(flash[:error]).to eq('Wrong password')
end
it 'should not change the password' do
expect(user.current_password.id).to eq(@current_password)
end
end
describe 'with good password and good confirmation' do
before do
post :change_password, :password => 'adminADMIN!',
:new_password => 'adminADMIN!New',
:new_password_confirmation => 'adminADMIN!New'
end
it 'should redirect to the my account page' do
expect(response).to redirect_to('/my/account')
end
it 'should allow the user to login with the new password' do
assert User.try_to_login(user.login, 'adminADMIN!New')
end
end
end
describe "account" do
let(:custom_field) { FactoryGirl.create :text_user_custom_field }
before do
custom_field
as_logged_in_user user do
get :account
end
end
it "responds with success" do
expect(response).to be_success
end
it "renders the account template" do
expect(response).to render_template 'account'
end
it "assigns @user" do
expect(assigns(:user)).to eq(user)
end
context "with render_views" do
render_views
it "renders editable custom fields" do
expect(response.body).to have_content(custom_field.name)
end
end
end
describe "index" do
render_views
before do
User.any_instance.should_receive(:reported_work_package_count).and_return(42)
get :index
end
it "should show the number of reported packages" do
expect(response.body).to include("Reported work packages (42)")
end
end
end