From a85e11fa51497888684f247bc09450cbcc67a058 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Tue, 13 Nov 2012 22:11:56 +0200 Subject: [PATCH] Improved seeds for development env --- db/fixtures/development/002_project.rb | 6 +-- db/fixtures/development/004_teams.rb | 6 +++ db/fixtures/development/006_wall.rb | 59 +++++++++------------------ db/fixtures/development/007_issues.rb | 37 +++++++++-------- db/fixtures/development/008_merge_requests.rb | 41 ++++++++++--------- db/fixtures/development/009_source_code.rb | 27 ++++++++++++ lib/gitlab/seeder.rb | 10 +++++ 7 files changed, 107 insertions(+), 79 deletions(-) create mode 100644 db/fixtures/development/009_source_code.rb create mode 100644 lib/gitlab/seeder.rb diff --git a/db/fixtures/development/002_project.rb b/db/fixtures/development/002_project.rb index eea987ffc..eb68b5fe9 100644 --- a/db/fixtures/development/002_project.rb +++ b/db/fixtures/development/002_project.rb @@ -1,5 +1,5 @@ Project.seed(:id, [ - { :id => 1, :name => "Rubinius", :path => "rubinius", :code => "rubinius", :owner_id => 1 }, - { :id => 2, :name => "Diaspora", :path => "diaspora", :code => "diaspora", :owner_id => 1 }, - { :id => 3, :name => "Ruby on Rails", :path => "ruby_on_rails", :code => "ruby_on_rails", :owner_id => 1 } + { id: 1, name: "Underscore.js", path: "underscore", code: "underscore", owner_id: 1 }, + { id: 2, name: "Diaspora", path: "diaspora", code: "diaspora", owner_id: 1 }, + { id: 3, name: "Ruby on Rails", path: "rails", code: "rails", owner_id: 1 } ]) diff --git a/db/fixtures/development/004_teams.rb b/db/fixtures/development/004_teams.rb index 5af98b92c..2752cb44e 100644 --- a/db/fixtures/development/004_teams.rb +++ b/db/fixtures/development/004_teams.rb @@ -1,3 +1,5 @@ +UsersProject.skip_callback(:save, :after, :update_repository) + UsersProject.seed(:id, [ { :id => 1, :project_id => 1, :user_id => 1, :project_access => UsersProject::MASTER }, { :id => 2, :project_id => 1, :user_id => 2, :project_access => UsersProject::REPORTER}, @@ -18,4 +20,8 @@ UsersProject.seed(:id, [ { :id => 16, :project_id => 3, :user_id => 5, :project_access => UsersProject::MASTER} ]) +UsersProject.set_callback(:save, :after, :update_repository) +puts "\nRebuild gitolite\n".yellow +Project.all.each(&:update_repository) +puts "OK".green diff --git a/db/fixtures/development/006_wall.rb b/db/fixtures/development/006_wall.rb index 7c0d25d10..a9fb66dda 100644 --- a/db/fixtures/development/006_wall.rb +++ b/db/fixtures/development/006_wall.rb @@ -1,40 +1,19 @@ -Note.seed(:id, [ - { :id => 1, :project_id => 1, :author_id => 1, :note => Faker::Lorem.sentence(6) }, - { :id => 2, :project_id => 1, :author_id => 2, :note => Faker::Lorem.sentence(6) }, - { :id => 3, :project_id => 1, :author_id => 3, :note => Faker::Lorem.sentence(6) }, - { :id => 4, :project_id => 1, :author_id => 4, :note => Faker::Lorem.sentence(6) }, - { :id => 5, :project_id => 1, :author_id => 5, :note => Faker::Lorem.sentence(6) }, - - { :id => 6, :project_id => 2, :author_id => 1, :note => Faker::Lorem.sentence(6) }, - { :id => 7, :project_id => 2, :author_id => 2, :note => Faker::Lorem.sentence(6) }, - { :id => 8, :project_id => 2, :author_id => 3, :note => Faker::Lorem.sentence(6) }, - { :id => 9, :project_id => 2, :author_id => 4, :note => Faker::Lorem.sentence(6) }, - { :id => 11, :project_id => 2, :author_id => 5, :note => Faker::Lorem.sentence(6) }, - - { :id => 12, :project_id => 3, :author_id => 1, :note => Faker::Lorem.sentence(6)}, - { :id => 13, :project_id => 3, :author_id => 2, :note => Faker::Lorem.sentence(6)}, - { :id => 14, :project_id => 3, :author_id => 3, :note => Faker::Lorem.sentence(6)}, - { :id => 15, :project_id => 3, :author_id => 4, :note => Faker::Lorem.sentence(6)}, - { :id => 16, :project_id => 3, :author_id => 5, :note => Faker::Lorem.sentence(6)}, - - { :id => 21, :project_id => 1, :author_id => 1, :note => Faker::Lorem.sentence(6) }, - { :id => 22, :project_id => 1, :author_id => 2, :note => Faker::Lorem.sentence(6) }, - { :id => 23, :project_id => 1, :author_id => 3, :note => Faker::Lorem.sentence(6) }, - { :id => 24, :project_id => 1, :author_id => 4, :note => Faker::Lorem.sentence(6) }, - { :id => 25, :project_id => 1, :author_id => 5, :note => Faker::Lorem.sentence(6) }, - - { :id => 26, :project_id => 2, :author_id => 1, :note => Faker::Lorem.sentence(6) }, - { :id => 27, :project_id => 2, :author_id => 2, :note => Faker::Lorem.sentence(6) }, - { :id => 28, :project_id => 2, :author_id => 3, :note => Faker::Lorem.sentence(6) }, - { :id => 29, :project_id => 2, :author_id => 4, :note => Faker::Lorem.sentence(6) }, - { :id => 30, :project_id => 2, :author_id => 5, :note => Faker::Lorem.sentence(6) }, - - { :id => 32, :project_id => 3, :author_id => 1, :note => Faker::Lorem.sentence(6)}, - { :id => 33, :project_id => 3, :author_id => 2, :note => Faker::Lorem.sentence(6)}, - { :id => 34, :project_id => 3, :author_id => 3, :note => Faker::Lorem.sentence(6)}, - { :id => 35, :project_id => 3, :author_id => 4, :note => Faker::Lorem.sentence(6)}, - { :id => 36, :project_id => 3, :author_id => 5, :note => Faker::Lorem.sentence(6)} -]) - - - +Gitlab::Seeder.quiet do + (1..300).each do |i| + # Random Project + project_id = rand(2) + 1 + project = Project.find(project_id) + + # Random user + user = project.users.sample + 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 diff --git a/db/fixtures/development/007_issues.rb b/db/fixtures/development/007_issues.rb index d60af71e6..98e32fccc 100644 --- a/db/fixtures/development/007_issues.rb +++ b/db/fixtures/development/007_issues.rb @@ -1,20 +1,23 @@ -(1..300).each do |i| - # Random Project - project_id = rand(2) + 1 - project = Project.find(project_id) +Gitlab::Seeder.quiet do + (1..300).each do |i| + # Random Project + project_id = rand(2) + 1 + project = Project.find(project_id) - # Random user - user = project.users.sample - user_id = user.id - IssueObserver.current_user = user + # Random user + user = project.users.sample + user_id = user.id + IssueObserver.current_user = user - Issue.seed(:id, [{ - id: i, - project_id: project_id, - author_id: user_id, - assignee_id: user_id, - closed: [true, false].sample, - milestone: project.milestones.sample, - title: Faker::Lorem.sentence(6) - }]) + Issue.seed(:id, [{ + id: i, + project_id: project_id, + author_id: user_id, + assignee_id: user_id, + closed: [true, false].sample, + milestone: project.milestones.sample, + title: Faker::Lorem.sentence(6) + }]) + print('.') + end end diff --git a/db/fixtures/development/008_merge_requests.rb b/db/fixtures/development/008_merge_requests.rb index 8d20e6281..698c55ad9 100644 --- a/db/fixtures/development/008_merge_requests.rb +++ b/db/fixtures/development/008_merge_requests.rb @@ -1,22 +1,25 @@ -(1..300).each do |i| - # Random Project - project_id = rand(2) + 1 - project = Project.find(project_id) +Gitlab::Seeder.quiet do + (1..300).each do |i| + # Random Project + project_id = rand(2) + 1 + project = Project.find(project_id) - # Random user - user = project.users.sample - user_id = user.id - MergeRequestObserver.current_user = user + # Random user + user = project.users.sample + user_id = user.id + MergeRequestObserver.current_user = user - MergeRequest.seed(:id, [{ - id: i, - source_branch: 'master', - target_branch: 'feature', - project_id: project_id, - author_id: user_id, - assignee_id: user_id, - closed: [true, false].sample, - milestone: project.milestones.sample, - title: Faker::Lorem.sentence(6) - }]) + MergeRequest.seed(:id, [{ + id: i, + source_branch: 'master', + target_branch: 'feature', + project_id: project_id, + author_id: user_id, + assignee_id: user_id, + closed: [true, false].sample, + milestone: project.milestones.sample, + title: Faker::Lorem.sentence(6) + }]) + print('.') + end end diff --git a/db/fixtures/development/009_source_code.rb b/db/fixtures/development/009_source_code.rb new file mode 100644 index 000000000..489bd02ea --- /dev/null +++ b/db/fixtures/development/009_source_code.rb @@ -0,0 +1,27 @@ +root = Gitlab.config.git_base_path + +projects = [ + { path: 'underscore.git', git: 'https://github.com/documentcloud/underscore.git' }, + { path: 'diaspora.git', git: 'https://github.com/diaspora/diaspora.git' }, + { path: 'rails.git', git: 'https://github.com/rails/rails.git' }, +] + +projects.each do |project| + project_path = File.join(root, project[:path]) + + + next if File.exists?(project_path) + + cmds = [ + "cd #{root} && sudo -u git -H git clone --bare #{project[:git]}", + "sudo cp ./lib/hooks/post-receive #{project_path}/hooks/post-receive", + "sudo chown git:git #{project_path}/hooks/post-receive" + ] + + cmds.each do |cmd| + puts cmd.yellow + `#{cmd}` + end +end + +puts "OK".green diff --git a/lib/gitlab/seeder.rb b/lib/gitlab/seeder.rb new file mode 100644 index 000000000..3aa3b2ba1 --- /dev/null +++ b/lib/gitlab/seeder.rb @@ -0,0 +1,10 @@ +module Gitlab + class Seeder + def self.quiet + SeedFu.quiet = true + yield + SeedFu.quiet = false + puts "\nOK".green + end + end +end -- 2.11.0