136 lines
5.5 KiB
Ruby
136 lines
5.5 KiB
Ruby
class Spinach::Features::ProjectForkedMergeRequests < Spinach::FeatureSteps
|
|
include SharedAuthentication
|
|
include SharedProject
|
|
include SharedNote
|
|
include SharedPaths
|
|
include Select2Helper
|
|
|
|
step 'I am a member of project "Shop"' do
|
|
@project = Project.find_by(name: "Shop")
|
|
@project ||= create(:project, name: "Shop")
|
|
@project.team << [@user, :reporter]
|
|
@project.ensure_satellite_exists
|
|
end
|
|
|
|
step 'I have a project forked off of "Shop" called "Forked Shop"' do
|
|
@forked_project = Projects::ForkService.new(@project, @user).execute
|
|
end
|
|
|
|
step 'I click link "New Merge Request"' do
|
|
click_link "New Merge Request"
|
|
end
|
|
|
|
step 'I should see merge request "Merge Request On Forked Project"' do
|
|
@project.merge_requests.size.should >= 1
|
|
@merge_request = @project.merge_requests.last
|
|
current_path.should == project_merge_request_path(@project, @merge_request)
|
|
@merge_request.title.should == "Merge Request On Forked Project"
|
|
@merge_request.source_project.should == @forked_project
|
|
@merge_request.source_branch.should == "fix"
|
|
@merge_request.target_branch.should == "master"
|
|
page.should have_content @forked_project.path_with_namespace
|
|
page.should have_content @project.path_with_namespace
|
|
page.should have_content @merge_request.source_branch
|
|
page.should have_content @merge_request.target_branch
|
|
end
|
|
|
|
step 'I fill out a "Merge Request On Forked Project" merge request' do
|
|
select @forked_project.path_with_namespace, from: "merge_request_source_project_id"
|
|
select @project.path_with_namespace, from: "merge_request_target_project_id"
|
|
select "fix", from: "merge_request_source_branch"
|
|
select "master", from: "merge_request_target_branch"
|
|
|
|
click_button "Compare branches"
|
|
|
|
fill_in "merge_request_title", with: "Merge Request On Forked Project"
|
|
end
|
|
|
|
step 'I submit the merge request' do
|
|
click_button "Submit merge request"
|
|
end
|
|
|
|
step 'I follow the target commit link' do
|
|
commit = @project.repository.commit
|
|
click_link commit.short_id(8)
|
|
end
|
|
|
|
step 'I should see the commit under the forked from project' do
|
|
commit = @project.repository.commit
|
|
page.should have_content(commit.message)
|
|
end
|
|
|
|
step 'I click "Create Merge Request on fork" link' do
|
|
click_link "Create Merge Request on fork"
|
|
end
|
|
|
|
step 'I see prefilled new Merge Request page for the forked project' do
|
|
current_path.should == new_project_merge_request_path(@forked_project)
|
|
find("#merge_request_source_project_id").value.should == @forked_project.id.to_s
|
|
find("#merge_request_target_project_id").value.should == @project.id.to_s
|
|
find("#merge_request_source_branch").value.should have_content "new_design"
|
|
find("#merge_request_target_branch").value.should have_content "master"
|
|
find("#merge_request_title").value.should == "New Design"
|
|
verify_commit_link(".mr_target_commit",@project)
|
|
verify_commit_link(".mr_source_commit",@forked_project)
|
|
end
|
|
|
|
step 'I update the merge request title' do
|
|
fill_in "merge_request_title", with: "An Edited Forked Merge Request"
|
|
end
|
|
|
|
step 'I save the merge request' do
|
|
click_button "Save changes"
|
|
end
|
|
|
|
step 'I should see the edited merge request' do
|
|
page.should have_content "An Edited Forked Merge Request"
|
|
@project.merge_requests.size.should >= 1
|
|
@merge_request = @project.merge_requests.last
|
|
current_path.should == project_merge_request_path(@project, @merge_request)
|
|
@merge_request.source_project.should == @forked_project
|
|
@merge_request.source_branch.should == "fix"
|
|
@merge_request.target_branch.should == "master"
|
|
page.should have_content @forked_project.path_with_namespace
|
|
page.should have_content @project.path_with_namespace
|
|
page.should have_content @merge_request.source_branch
|
|
page.should have_content @merge_request.target_branch
|
|
end
|
|
|
|
step 'I should see last push widget' do
|
|
page.should have_content "You pushed to new_design"
|
|
page.should have_link "Create Merge Request"
|
|
end
|
|
|
|
step 'I click link edit "Merge Request On Forked Project"' do
|
|
find("#edit_merge_request").click
|
|
end
|
|
|
|
step 'I see the edit page prefilled for "Merge Request On Forked Project"' do
|
|
current_path.should == edit_project_merge_request_path(@project, @merge_request)
|
|
page.should have_content "Edit merge request ##{@merge_request.id}"
|
|
find("#merge_request_title").value.should == "Merge Request On Forked Project"
|
|
end
|
|
|
|
step 'I fill out an invalid "Merge Request On Forked Project" merge request' do
|
|
select "Select branch", from: "merge_request_target_branch"
|
|
find(:select, "merge_request_source_project_id", {}).value.should == @forked_project.id.to_s
|
|
find(:select, "merge_request_target_project_id", {}).value.should == project.id.to_s
|
|
find(:select, "merge_request_source_branch", {}).value.should == ""
|
|
find(:select, "merge_request_target_branch", {}).value.should == ""
|
|
click_button "Compare branches"
|
|
end
|
|
|
|
step 'I should see validation errors' do
|
|
page.should have_content "You must select source and target branch"
|
|
end
|
|
|
|
step 'the target repository should be the original repository' do
|
|
page.should have_select("merge_request_target_project_id", selected: project.path_with_namespace)
|
|
end
|
|
|
|
# Verify a link is generated against the correct project
|
|
def verify_commit_link(container_div, container_project)
|
|
# This should force a wait for the javascript to execute
|
|
find(:div,container_div).find(".commit_short_id")['href'].should have_content "#{container_project.path_with_namespace}/commit"
|
|
end
|
|
end
|