提交 2c77dae2 编写于 作者: D Dmitriy Zaporozhets

Merge branch 'improve-dev-seeds' into 'master'

Improve dev seeds

See merge request !1012
...@@ -57,7 +57,6 @@ module Projects ...@@ -57,7 +57,6 @@ module Projects
:add_repository, :add_repository,
@project.path_with_namespace @project.path_with_namespace
) )
end end
if @project.wiki_enabled? if @project.wiki_enabled?
......
User.seed(:id, [ User.seed do |s|
{ s.id = 1
id: 1, s.name = "Administrator"
name: "Administrator", s.email = "admin@example.com"
email: "admin@example.com", s.username = 'root'
username: 'root', s.password = "5iveL!fe"
password: "5iveL!fe", s.password_confirmation = "5iveL!fe"
password_confirmation: "5iveL!fe", s.admin = true
admin: true, s.projects_limit = 100
projects_limit: 100, s.confirmed_at = DateTime.now
theme_id: Gitlab::Theme::MARS, end
confirmed_at: DateTime.now
}
])
Gitlab::Seeder.quiet do require 'sidekiq/testing'
Sidekiq::Testing.inline! do
Gitlab::Seeder.quiet do
project_urls = [ project_urls = [
'https://github.com/documentcloud/underscore.git', 'https://github.com/documentcloud/underscore.git',
'https://github.com/diaspora/diaspora.git',
'https://github.com/diaspora/diaspora-project-site.git',
'https://github.com/diaspora/diaspora-client.git',
'https://github.com/brightbox/brightbox-cli.git',
'https://github.com/brightbox/puppet.git',
'https://github.com/gitlabhq/gitlabhq.git', 'https://github.com/gitlabhq/gitlabhq.git',
'https://github.com/gitlabhq/gitlab-ci.git', 'https://github.com/gitlabhq/gitlab-ci.git',
'https://github.com/gitlabhq/gitlab-recipes.git',
'https://github.com/gitlabhq/gitlab-shell.git', 'https://github.com/gitlabhq/gitlab-shell.git',
'https://github.com/gitlabhq/grack.git',
'https://github.com/gitlabhq/testme.git', 'https://github.com/gitlabhq/testme.git',
'https://github.com/twitter/flight.git', 'https://github.com/twitter/flight.git',
'https://github.com/twitter/typeahead.js.git', 'https://github.com/twitter/typeahead.js.git',
'https://github.com/h5bp/html5-boilerplate.git', 'https://github.com/h5bp/html5-boilerplate.git',
'https://github.com/h5bp/mobile-boilerplate.git',
] ]
project_urls.each_with_index do |url, i| project_urls.each_with_index do |url, i|
...@@ -53,4 +48,5 @@ Gitlab::Seeder.quiet do ...@@ -53,4 +48,5 @@ Gitlab::Seeder.quiet do
print 'F' print 'F'
end end
end end
end
end end
Gitlab::Seeder.quiet do Gitlab::Seeder.quiet do
(2..10).each do |i| (2..20).each do |i|
begin begin
User.seed(:id, [{ User.seed(:id, [{
id: i, id: i,
......
Milestone.seed(:id, [ Gitlab::Seeder.quiet do
{ id: 1, project_id: 1, title: 'v' + Faker::Address.zip_code }, Project.all.each do |project|
{ id: 2, project_id: 1, title: 'v' + Faker::Address.zip_code }, (1..5).each do |i|
{ id: 3, project_id: 1, title: 'v' + Faker::Address.zip_code }, milestone_params = {
{ id: 4, project_id: 2, title: 'v' + Faker::Address.zip_code }, title: "v#{i}.0",
{ id: 5, project_id: 2, title: 'v' + Faker::Address.zip_code }, description: Faker::Lorem.sentence,
state: ['opened', 'closed'].sample,
}
{ id: 6, project_id: 2, title: 'v' + Faker::Address.zip_code }, milestone = Milestones::CreateService.new(
{ id: 7, project_id: 2, title: 'v' + Faker::Address.zip_code }, project, project.team.users.sample, milestone_params).execute
{ id: 8, project_id: 3, title: 'v' + Faker::Address.zip_code },
{ id: 9, project_id: 3, title: 'v' + Faker::Address.zip_code },
{ id: 11, project_id: 3, title: 'v' + Faker::Address.zip_code },
])
Milestone.all.map do |ml| print '.'
ml.set_iid end
ml.save end
end end
Gitlab::Seeder.quiet do
(1..300).each do |i|
# Random Project
project = Project.all.sample
# Random user
user = project.users.sample
next unless user
user_id = user.id
Note.seed(:id, [{
id: i,
project_id: project.id,
author_id: user_id,
note: Faker::Lorem.sentence(6)
}])
print('.')
end
end
Gitlab::Seeder.quiet do Gitlab::Seeder.quiet do
(1..300).each do |i| Project.all.each do |project|
# Random Project (1..10).each do |i|
project = Project.all.sample issue_params = {
title: Faker::Lorem.sentence(6),
# Random user description: Faker::Lorem.sentence,
user = project.team.users.sample
next unless user
user_id = user.id
Gitlab::Seeder.by_user(user) do
Issue.seed(:id, [{
id: i,
project_id: project.id,
author_id: user_id,
assignee_id: user_id,
state: ['opened', 'closed'].sample, state: ['opened', 'closed'].sample,
milestone: project.milestones.sample, milestone: project.milestones.sample,
title: Faker::Lorem.sentence(6), assignee: project.team.users.sample
description: Faker::Lorem.sentence }
}])
end
print('.')
end
Issue.all.map do |issue| Issues::CreateService.new(project, project.team.users.sample, issue_params).execute
issue.set_iid print '.'
issue.save end
end end
end end
...@@ -7,27 +7,17 @@ Gitlab::Seeder.quiet do ...@@ -7,27 +7,17 @@ Gitlab::Seeder.quiet do
source_branch = branches.pop source_branch = branches.pop
target_branch = branches.pop target_branch = branches.pop
# Random user
user = project.team.users.sample
next unless user
params = { params = {
source_branch: source_branch, source_branch: source_branch,
target_branch: target_branch, target_branch: target_branch,
title: Faker::Lorem.sentence(6), title: Faker::Lorem.sentence(6),
description: Faker::Lorem.sentences(3).join(" ") description: Faker::Lorem.sentences(3).join(" "),
milestone: project.milestones.sample,
assignee: project.team.users.sample
} }
merge_request = MergeRequests::CreateService.new(project, user, params).execute MergeRequests::CreateService.new(project, project.team.users.sample, params).execute
if merge_request.valid?
merge_request.assignee = user
merge_request.milestone = project.milestones.sample
merge_request.save
print '.' print '.'
else
print 'F'
end
end end
end end
end end
Gitlab::Seeder.quiet do Gitlab::Seeder.quiet do
User.first(30).each_with_index do |user, i| User.first(10).each do |user|
Key.seed(:id, [ key = "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAiPWx6WM4lhHNedGfBpPJNPpZ7yKu+dnn1SJejgt#{user.id + 100}6k6YjzGGphH2TUxwKzxcKDKKezwkpfnxPkSMkuEspGRt/aZZ9wa++Oi7Qkr8prgHc4soW6NUlfDzpvZK2H5E7eQaSeP3SAwGmQKUFHCddNaP0L+hM7zhFNzjFvpaMgJw0="
{
id: i + 1, user.keys.create(
title: "Sample key #{i}", title: "Sample key #{user.id}",
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAiPWx6WM4lhHNedGfBpPJNPpZ7yKu+dnn1SJejgt#{i + 100}6k6YjzGGphH2TUxwKzxcKDKKezwkpfnxPkSMkuEspGRt/aZZ9wa++Oi7Qkr8prgHc4soW6NUlfDzpvZK2H5E7eQaSeP3SAwGmQKUFHCddNaP0L+hM7zhFNzjFvpaMgJw0=", key: key
user_id: user.id, )
}
]) print '.'
puts "SSH KEY ##{i} added.".green
end end
end end
Gitlab::Seeder.quiet do Gitlab::Seeder.quiet do
Issue.all.limit(10).each_with_index do |issue, i| Issue.all.each do |issue|
5.times do project = issue.project
user = issue.project.team.users.sample
Gitlab::Seeder.by_user(user) do project.team.users.each do |user|
Note.seed(:id, [{ note_params = {
project_id: issue.project.id, noteable_type: 'Issue',
author_id: user.id,
note: Faker::Lorem.sentence,
noteable_id: issue.id, noteable_id: issue.id,
noteable_type: 'Issue' note: Faker::Lorem.sentence,
}]) }
Notes::CreateService.new(project, user, note_params).execute
print '.' print '.'
end end
end end
MergeRequest.all.each do |mr|
project = mr.project
project.team.users.each do |user|
note_params = {
noteable_type: 'MergeRequest',
noteable_id: mr.id,
note: Faker::Lorem.sentence,
}
Notes::CreateService.new(project, user, note_params).execute
print '.'
end
end end
end end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册