gitlab-org--gitlab-foss/spec/features/admin/admin_users_spec.rb

113 lines
3.0 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
require 'spec_helper'
describe "Admin::Users" do
before { login_as :admin }
describe "GET /admin/users" do
before do
2011-10-08 21:36:38 +00:00
visit admin_users_path
end
it "should be ok" do
current_path.should == admin_users_path
end
it "should have users list" do
2011-10-08 21:36:38 +00:00
page.should have_content(@user.email)
page.should have_content(@user.name)
end
end
describe "GET /admin/users/new" do
before do
2011-10-08 21:36:38 +00:00
visit new_admin_user_path
fill_in "user_name", with: "Big Bang"
fill_in "user_username", with: "bang"
fill_in "user_email", with: "bigbang@mail.com"
2011-10-08 21:36:38 +00:00
end
it "should create new user" do
2013-04-18 14:28:09 +00:00
expect { click_button "Create user" }.to change {User.count}.by(1)
2011-10-08 21:36:38 +00:00
end
it "should apply defaults to user" do
click_button "Create user"
user = User.last
user.projects_limit.should == Gitlab.config.gitlab.default_projects_limit
user.can_create_group.should == Gitlab.config.gitlab.default_can_create_group
user.can_create_team.should == Gitlab.config.gitlab.default_can_create_team
end
it "should create user with valid data" do
2013-04-18 14:28:09 +00:00
click_button "Create user"
2011-10-08 21:36:38 +00:00
user = User.last
user.name.should == "Big Bang"
user.email.should == "bigbang@mail.com"
end
it "should call send mail" do
2013-01-09 06:14:05 +00:00
Notify.should_receive(:new_user_email)
User.observers.enable :user_observer do
2013-04-18 14:28:09 +00:00
click_button "Create user"
end
2011-10-08 21:36:38 +00:00
end
it "should send valid email to user with email & password" do
User.observers.enable :user_observer do
2013-04-18 14:28:09 +00:00
click_button "Create user"
user = User.last
email = ActionMailer::Base.deliveries.last
email.subject.should have_content("Account was created")
2013-02-28 17:56:16 +00:00
email.text_part.body.should have_content(user.email)
email.text_part.body.should have_content('password')
2012-11-06 13:30:48 +00:00
end
end
2011-10-08 21:36:38 +00:00
end
describe "GET /admin/users/:id" do
before do
2011-10-08 21:36:38 +00:00
visit admin_users_path
2011-11-22 07:55:01 +00:00
click_link "#{@user.name}"
2011-10-08 21:36:38 +00:00
end
it "should have user info" do
2011-10-08 21:36:38 +00:00
page.should have_content(@user.email)
page.should have_content(@user.name)
end
end
describe "GET /admin/users/:id/edit" do
before do
@simple_user = create(:user)
2011-10-08 21:36:38 +00:00
visit admin_users_path
click_link "edit_user_#{@simple_user.id}"
end
it "should have user edit page" do
2011-10-08 21:36:38 +00:00
page.should have_content("Name")
page.should have_content("Password")
end
describe "Update user" do
before do
fill_in "user_name", with: "Big Bang"
fill_in "user_email", with: "bigbang@mail.com"
2011-10-08 21:36:38 +00:00
check "user_admin"
2013-04-18 14:28:09 +00:00
click_button "Save changes"
2011-10-08 21:36:38 +00:00
end
it "should show page with new data" do
2011-10-08 21:36:38 +00:00
page.should have_content("bigbang@mail.com")
page.should have_content("Big Bang")
end
it "should change user entry" do
2011-10-08 21:36:38 +00:00
@simple_user.reload
@simple_user.name.should == "Big Bang"
@simple_user.is_admin?.should be_true
end
end
end
end