gitlab-org--gitlab-foss/db/fixtures/development/10_merge_requests.rb

47 lines
955 B
Ruby
Raw Normal View History

2013-04-05 08:42:07 -04:00
ActiveRecord::Base.observers.disable :all
2012-11-13 15:11:56 -05:00
Gitlab::Seeder.quiet do
2013-04-05 08:42:07 -04:00
(1..100).each do |i|
2012-11-13 15:11:56 -05:00
# Random Project
project = Project.all.sample
2012-11-13 15:11:56 -05:00
# Random user
user = project.users.sample
next unless user
2013-04-05 08:42:07 -04:00
next if project.empty_repo?
branches = project.repository.branch_names.sample(2)
2013-04-05 09:19:05 -04:00
next if branches.uniq.size < 2
2012-11-13 15:11:56 -05:00
user_id = user.id
Thread.current[:current_user] = user
2012-11-13 15:11:56 -05:00
MergeRequest.seed(:id, [{
id: i,
2013-04-05 08:42:07 -04:00
source_branch: branches.first,
target_branch: branches.last,
Merge Request on forked projects The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8
2013-04-25 10:15:33 -04:00
source_project_id: project.id,
target_project_id: project.id,
2012-11-13 15:11:56 -05:00
author_id: user_id,
assignee_id: user_id,
milestone: project.milestones.sample,
title: Faker::Lorem.sentence(6)
}])
print('.')
end
2012-10-30 04:03:21 -04:00
end
2013-04-05 08:42:07 -04:00
MergeRequest.all.map do |mr|
mr.set_iid
mr.save
end
2013-04-05 08:42:07 -04:00
puts 'Load diffs for Merge Requests (it will take some time)...'
MergeRequest.all.each do |mr|
mr.reload_code
print '.'
end