projects_steps.rb 2.08 KB
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
When /^I visit new project page$/ do
  visit new_project_path
end

When /^fill project form with valid data$/ do
  fill_in 'project_name', :with => 'NewProject'
  fill_in 'project_code', :with => 'NPR'
  fill_in 'project_path', :with => 'newproject'
  click_button "Create project"
end

Then /^I should see project page$/ do
  current_path.should == project_path(Project.last)
  page.should have_content('NewProject')
end

Then /^I should see empty project instuctions$/ do
  page.should have_content("git init")
  page.should have_content("git remote")
  page.should have_content(Project.last.url_to_repo)
end

Given /^I own project "(.*?)"$/ do |arg1|
  @project = Factory :project, :name => arg1
randx's avatar
randx committed
25
  @project.add_access(@user, :admin)
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
end

Given /^I visit project "(.*?)" wall page$/ do |arg1|
  project = Project.find_by_name(arg1)
  visit wall_project_path(project)
end

Then /^I should see project wall note "(.*?)"$/ do |arg1|
  page.should have_content arg1
end

Given /^project "(.*?)" has comment "(.*?)"$/ do |arg1, arg2|
  project = Project.find_by_name(arg1)
  project.notes.create(:note => arg1, :author => project.users.first)
end

Given /^I write new comment "(.*?)"$/ do |arg1|
  fill_in "note_note", :with => arg1
  click_button "Add Comment"
end

47 48 49 50 51
Given /^I visit project "(.*?)" page$/ do |arg1|
  project = Project.find_by_name(arg1)
  visit project_path(project)
end

randx's avatar
randx committed
52 53
Given /^I visit project "(.*?)" network page$/ do |arg1|
  project = Project.find_by_name(arg1)
54 55 56 57 58

  # Stub out find_all to speed this up (10 commits vs. 650)
  commits = Grit::Commit.find_all(project.repo, nil, {max_count: 10})
  Grit::Commit.stub(:find_all).and_return(commits)

randx's avatar
randx committed
59 60 61 62
  visit graph_project_path(project)
end

Given /^page should have network graph$/ do
randx's avatar
randx committed
63 64
  page.should have_content "Project Network Graph"
  within ".graph" do
65 66
    page.should have_content "master"
    page.should have_content "scss_refactor..."
randx's avatar
randx committed
67
  end
randx's avatar
randx committed
68
end
69 70 71 72 73 74 75 76 77

Given /^I leave a comment like "(.*?)"$/ do |arg1|
  fill_in "note_note", :with => arg1
  click_button "Add Comment"
end

Then /^I should see comment "(.*?)"$/ do |arg1|
  page.should have_content(arg1)
end