#465 fix pull request spec
This commit is contained in:
parent
f53a6c0e2f
commit
09afec1ad6
|
@ -1,8 +1,6 @@
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
def set_data_for_pull
|
def set_data_for_pull
|
||||||
@ability = Ability.new(@user)
|
|
||||||
|
|
||||||
@project = FactoryGirl.create(:project_with_commit, owner: @user)
|
@project = FactoryGirl.create(:project_with_commit, owner: @user)
|
||||||
|
|
||||||
@clone_path = File.join(APP_CONFIG['root_path'], 'repo_clone', @project.id.to_s)
|
@clone_path = File.join(APP_CONFIG['root_path'], 'repo_clone', @project.id.to_s)
|
||||||
|
@ -37,86 +35,94 @@ describe PullRequest do
|
||||||
@pull.check
|
@pull.check
|
||||||
@project.update_attributes(name: "#{@project.name}-new")
|
@project.update_attributes(name: "#{@project.name}-new")
|
||||||
@pull.reload
|
@pull.reload
|
||||||
Dir.exists?(@pull.path).should be_truthy
|
expect(Dir.exists? @pull.path).to be_truthy
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'master should merge with non_conflicts branch' do
|
it 'master should merge with non_conflicts branch' do
|
||||||
@pull.check
|
@pull.check
|
||||||
@pull.status.should == 'ready'
|
expect(@pull.status).to eq('ready')
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'master should not merge with conflicts branch' do
|
it 'master should not merge with conflicts branch' do
|
||||||
@pull.from_ref = 'conflicts'
|
@pull.from_ref = 'conflicts'
|
||||||
@pull.check
|
@pull.check
|
||||||
@pull.status.should == 'blocked'
|
expect(@pull.status).to eq('blocked')
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should already merged when already up-to-date branches' do
|
it 'should already merged when already up-to-date branches' do
|
||||||
@pull.from_ref = 'master'
|
@pull.from_ref = 'master'
|
||||||
@pull.check
|
@pull.check
|
||||||
@pull.status.should == 'merged'
|
expect(@pull.status).to eq('merged')
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'for other head project' do
|
context 'for other head project' do
|
||||||
it 'master should merge with non_conflicts branch' do
|
it 'master should merge with non_conflicts branch' do
|
||||||
@other_pull.check
|
@other_pull.check
|
||||||
@other_pull.status.should == 'ready'
|
expect(@other_pull.status).to eq('ready')
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'master should not merge with conflicts branch' do
|
it 'master should not merge with conflicts branch' do
|
||||||
@other_pull.from_ref = 'conflicts'
|
@other_pull.from_ref = 'conflicts'
|
||||||
@other_pull.check
|
@other_pull.check
|
||||||
@other_pull.status.should == 'blocked'
|
expect(@other_pull.status).to eq('blocked')
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should already merged when already up-to-date branches' do
|
it 'should already merged when already up-to-date branches' do
|
||||||
@other_pull.from_ref = 'master'
|
@other_pull.from_ref = 'master'
|
||||||
@other_pull.check
|
@other_pull.check
|
||||||
@other_pull.status.should == 'merged'
|
expect(@other_pull.status).to eq('merged')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should not create same pull" do
|
it "should not create same pull" do
|
||||||
|
expect {
|
||||||
@same_pull = @project.pull_requests.new(issue_attributes: {title: 'same', body: 'testing'})
|
@same_pull = @project.pull_requests.new(issue_attributes: {title: 'same', body: 'testing'})
|
||||||
@same_pull.issue.user, @same_pull.issue.project = @user, @same_pull.to_project
|
@same_pull.issue.user, @same_pull.issue.project = @user, @same_pull.to_project
|
||||||
@same_pull.to_ref = 'master'
|
@same_pull.to_ref = 'master'
|
||||||
@same_pull.from_project, @same_pull.from_ref = @project, 'non_conflicts'
|
@same_pull.from_project, @same_pull.from_ref = @project, 'non_conflicts'
|
||||||
@same_pull.save
|
@same_pull.save
|
||||||
@project.pull_requests.joins(:issue).where(issues: {title: @same_pull.title}).count.should == 0
|
}.to change { PullRequest.count }.by(0)
|
||||||
|
#expect(@project.pull_requests.joins(:issue).where(issues: {title: @same_pull.title}).count).to == 0
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should not create pull with wrong base ref" do
|
it "should not create pull with wrong base ref" do
|
||||||
|
expect {
|
||||||
@wrong_pull = @project.pull_requests.new(issue_attributes: {title: 'wrong base', body: 'testing'})
|
@wrong_pull = @project.pull_requests.new(issue_attributes: {title: 'wrong base', body: 'testing'})
|
||||||
@wrong_pull.issue.user, @wrong_pull.issue.project = @user, @wrong_pull.to_project
|
@wrong_pull.issue.user, @wrong_pull.issue.project = @user, @wrong_pull.to_project
|
||||||
@wrong_pull.to_ref = 'wrong'
|
@wrong_pull.to_ref = 'wrong'
|
||||||
@wrong_pull.from_project, @wrong_pull.from_ref = @project, 'non_conflicts'
|
@wrong_pull.from_project, @wrong_pull.from_ref = @project, 'non_conflicts'
|
||||||
@wrong_pull.save
|
@wrong_pull.save
|
||||||
@project.pull_requests.joins(:issue).where(issues: {title: @wrong_pull.title}).count.should == 0
|
}.to change { PullRequest.count }.by(0)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should not create pull with wrong head ref" do
|
it "should not create pull with wrong head ref" do
|
||||||
|
expect {
|
||||||
@wrong_pull = @project.pull_requests.new(issue_attributes: {title: 'wrong head', body: 'testing'})
|
@wrong_pull = @project.pull_requests.new(issue_attributes: {title: 'wrong head', body: 'testing'})
|
||||||
@wrong_pull.issue.user, @wrong_pull.issue.project = @user, @wrong_pull.to_project
|
@wrong_pull.issue.user, @wrong_pull.issue.project = @user, @wrong_pull.to_project
|
||||||
@wrong_pull.to_ref = 'master'
|
@wrong_pull.to_ref = 'master'
|
||||||
@wrong_pull.from_project, @wrong_pull.from_ref = @project, 'wrong'
|
@wrong_pull.from_project, @wrong_pull.from_ref = @project, 'wrong'
|
||||||
@wrong_pull.save
|
@wrong_pull.save
|
||||||
@project.pull_requests.joins(:issue).where(issues: {title: @wrong_pull.title}).count.should == 0
|
}.to change { PullRequest.count }.by(0)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should create pull with tag" do
|
it "should create pull with tag" do
|
||||||
|
expect {
|
||||||
system("cd #{@project.path} && git tag 4.7.5.3 $(git rev-parse #{@pull.from_ref})") # TODO REDO through grit
|
system("cd #{@project.path} && git tag 4.7.5.3 $(git rev-parse #{@pull.from_ref})") # TODO REDO through grit
|
||||||
@pull = @project.pull_requests.new(issue_attributes: {title: 'tag', body: 'testing'})
|
@pull = @project.pull_requests.new(issue_attributes: {title: 'tag', body: 'testing'})
|
||||||
@pull.issue.user, @pull.issue.project = @user, @pull.to_project
|
@pull.issue.user, @pull.issue.project = @user, @pull.to_project
|
||||||
@pull.to_ref = 'master'
|
@pull.to_ref = 'master'
|
||||||
@pull.from_project, @pull.from_ref = @project, '4.7.5.3'
|
@pull.from_project, @pull.from_ref = @project, '4.7.5.3'
|
||||||
@pull.save
|
@pull.save
|
||||||
@project.pull_requests.joins(:issue).where(issues: {title: @pull.title}).count.should == 1
|
}.to change { @project.pull_requests.count }.by(1)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should close pull when deleting from branch" do
|
it "should close pull when deleting from branch" do
|
||||||
|
expect {
|
||||||
system("cd #{@project.path} && git branch -D #{@pull.from_branch}")
|
system("cd #{@project.path} && git branch -D #{@pull.from_branch}")
|
||||||
@pull.check
|
@pull.check
|
||||||
@project.pull_requests.joins(:issue).where(issues: {title: @pull.title, status: 'closed'}).count.should == 1
|
}.to change {
|
||||||
|
@project.pull_requests.joins(:issue).where(issues: {title: @pull.title, status: 'closed'}).count
|
||||||
|
}.by(1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue