gitlabhq/spec/requests/projects_spec.rb

163 lines
4 KiB
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
require 'spec_helper'
describe "Projects" do
before { login_as :user }
describe "GET /projects" do
before do
2011-11-16 17:43:16 +01:00
@project = Factory :project
@project.add_access(@user, :read)
2011-10-08 23:36:38 +02:00
visit projects_path
end
it "should be on projects page" do
current_path.should == projects_path
2011-10-08 23:36:38 +02:00
end
it "should have link to new project" do
2011-11-01 21:51:20 +01:00
page.should have_content("Create new project")
2011-10-08 23:36:38 +02:00
end
2011-11-16 17:43:16 +01:00
it "should have project" do
page.should have_content(@project.name)
end
2011-10-08 23:36:38 +02:00
end
describe "GET /projects/new" do
before do
2011-10-08 23:36:38 +02:00
visit projects_path
2011-11-01 21:51:20 +01:00
click_link "Create new project"
2011-10-08 23:36:38 +02:00
end
it "should be correct path" do
current_path.should == new_project_path
2011-10-08 23:36:38 +02:00
end
it "should have labels for new project" do
page.should have_content("Name")
page.should have_content("Path")
page.should have_content("Description")
2011-10-08 23:36:38 +02:00
end
end
describe "POST /projects" do
before do
2011-10-08 23:36:38 +02:00
visit new_project_path
fill_in 'Name', :with => 'NewProject'
fill_in 'Code', :with => 'NPR'
2011-10-15 18:30:56 +02:00
fill_in 'Path', :with => 'newproject'
2011-12-15 22:21:29 +01:00
expect { click_button "Save" }.to change { Project.count }.by(1)
2011-10-08 23:36:38 +02:00
@project = Project.last
end
it "should be correct path" do
current_path.should == project_path(@project)
end
it "should show project" do
page.should have_content(@project.name)
page.should have_content(@project.path)
page.should have_content(@project.description)
end
it "should init repo instructions" do
page.should have_content("git remote")
page.should have_content(@project.url_to_repo)
end
end
describe "GET /projects/show" do
before do
2011-10-08 23:36:38 +02:00
@project = Factory :project
@project.add_access(@user, :read)
visit project_path(@project)
end
it "should be correct path" do
current_path.should == project_path(@project)
end
it "should beahave like activities page" do
2011-11-15 09:34:30 +01:00
within ".project-update" do
page.should have_content("master")
page.should have_content(@project.commit.author.name)
page.should have_content(@project.commit.safe_message)
end
2011-10-18 16:57:01 +02:00
end
2011-10-08 23:36:38 +02:00
end
describe "GET /projects/team" do
before do
2011-10-08 23:36:38 +02:00
@project = Factory :project
@project.add_access(@user, :read)
visit team_project_path(@project,
:path => ValidCommit::BLOB_FILE_PATH,
:commit_id => ValidCommit::ID)
end
it "should be correct path" do
current_path.should == team_project_path(@project)
end
it "should have as as team member" do
2011-10-08 23:36:38 +02:00
page.should have_content(@user.name)
end
end
describe "GET /projects/:id/edit" do
before do
2011-10-08 23:36:38 +02:00
@project = Factory :project
@project.add_access(@user, :admin, :read)
visit edit_project_path(@project)
end
it "should be correct path" do
current_path.should == edit_project_path(@project)
end
it "should have labels for new project" do
page.should have_content("Name")
page.should have_content("Path")
page.should have_content("Description")
2011-10-08 23:36:38 +02:00
end
end
describe "PUT /projects/:id" do
before do
2011-10-08 23:36:38 +02:00
@project = Factory :project
@project.add_access(@user, :admin, :read)
visit edit_project_path(@project)
fill_in 'Name', :with => 'Awesome'
fill_in 'Path', :with => 'legit'
fill_in 'Description', :with => 'Awesome project'
2011-12-15 22:21:29 +01:00
click_button "Save"
2011-10-08 23:36:38 +02:00
@project = @project.reload
end
it "should be correct path" do
2011-12-30 07:54:42 +01:00
current_path.should == info_project_path(@project)
2011-10-08 23:36:38 +02:00
end
it "should show project" do
page.should have_content("Awesome")
end
end
#describe "DELETE /projects/:id", :js => true do
#before do
2011-10-08 23:36:38 +02:00
#@project = Factory :project
#@project.add_access(@user, :read, :admin)
#visit projects_path
#end
#it "should be correct path" do
#expect { click_link "Destroy" }.to change {Project.count}.by(1)
2011-10-08 23:36:38 +02:00
#end
#end
end