2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "TeamMembers" do
|
2011-10-26 15:46:25 +02:00
|
|
|
before do
|
2011-10-08 23:36:38 +02:00
|
|
|
login_as :user
|
|
|
|
@project = Factory :project
|
|
|
|
@project.add_access(@user, :read, :admin)
|
|
|
|
end
|
|
|
|
|
2011-10-21 14:56:37 +02:00
|
|
|
describe "View profile" do
|
|
|
|
it "should be available" do
|
|
|
|
visit(team_project_path(@project))
|
2012-01-29 23:43:14 +01:00
|
|
|
click_link(@user.name)
|
2011-10-21 14:56:37 +02:00
|
|
|
page.should have_content @user.skype
|
|
|
|
page.should_not have_content 'Twitter'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-19 08:27:23 +01:00
|
|
|
describe "New Team member" do
|
2011-10-26 15:46:25 +02:00
|
|
|
before do
|
2011-10-08 23:36:38 +02:00
|
|
|
@user_1 = Factory :user
|
|
|
|
visit team_project_path(@project)
|
2012-01-11 08:35:21 +01:00
|
|
|
click_link "New Team Member"
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
it "should open new team member popup" do
|
2012-01-14 18:54:41 +01:00
|
|
|
page.should have_content("New Team member")
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "fill in" do
|
2011-10-08 23:36:38 +02:00
|
|
|
before do
|
2012-02-11 19:34:25 +01:00
|
|
|
within "#new_team_member" do
|
2011-12-07 09:04:57 +01:00
|
|
|
select @user_1.name, :from => "team_member_user_id"
|
2012-02-16 08:03:55 +01:00
|
|
|
select "Reporter", :from => "team_member_project_access"
|
2011-10-21 21:44:08 +02:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-21 21:44:08 +02:00
|
|
|
it { expect { click_button "Save";sleep(1) }.to change {UsersProject.count}.by(1) }
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
it "should add new member to table" do
|
2011-10-08 23:36:38 +02:00
|
|
|
click_button "Save"
|
2011-10-21 21:44:08 +02:00
|
|
|
@member = UsersProject.last
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
page.should have_content @user_1.name
|
2011-10-21 21:44:08 +02:00
|
|
|
|
2011-12-07 09:04:57 +01:00
|
|
|
@member.reload
|
2012-02-16 08:03:55 +01:00
|
|
|
@member.project_access.should == UsersProject::REPORTER
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "Cancel membership" do
|
|
|
|
it "should cancel membership" do
|
2012-01-29 23:43:14 +01:00
|
|
|
visit project_team_member_path(@project, @project.users_projects.last)
|
|
|
|
expect { click_link "Remove from team" }.to change { UsersProject.count }.by(-1)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|