Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-11-10 17:17:04 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-11-10 17:17:04 +0300
commitf56541de9a488dec68f4e98f738f90c51d898fc9 (patch)
tree438d0bd382c13090b2011c824d86af9f85c87971 /db
parent5136b6aec0b783189f46b4fad77c0b2beca9c3f1 (diff)
Revert "Create dev fixture projects with fixed visibility"
This reverts commit a9fadce361163e97eb1de0ec62e4235ff0fa3daa.
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/04_project.rb94
-rw-r--r--db/fixtures/development/07_milestones.rb (renamed from db/fixtures/development/08_milestones.rb)0
-rw-r--r--db/fixtures/development/07_projects_visibility.rb38
-rw-r--r--db/fixtures/development/fixtures_development_helper.rb8
4 files changed, 49 insertions, 91 deletions
diff --git a/db/fixtures/development/04_project.rb b/db/fixtures/development/04_project.rb
index a39e7ac028c..ae4c0550a4f 100644
--- a/db/fixtures/development/04_project.rb
+++ b/db/fixtures/development/04_project.rb
@@ -1,48 +1,52 @@
-Gitlab::Seeder.quiet do
- project_urls = [
- 'https://github.com/documentcloud/underscore.git',
- 'https://gitlab.com/gitlab-org/gitlab-ce.git',
- 'https://gitlab.com/gitlab-org/gitlab-ci.git',
- 'https://gitlab.com/gitlab-org/gitlab-shell.git',
- 'https://gitlab.com/gitlab-org/gitlab-test.git',
- 'https://github.com/twitter/flight.git',
- 'https://github.com/twitter/typeahead.js.git',
- 'https://github.com/h5bp/html5-boilerplate.git',
- ]
-
- project_urls.each do |url|
- group_path, project_path = url.split('/')[-2..-1]
-
- group = Group.find_by(path: group_path)
-
- unless group
- group = Group.new(
- name: group_path.titleize,
- path: group_path
- )
- group.description = Faker::Lorem.sentence
- group.save
-
- group.add_owner(User.first)
- end
-
- project_path.gsub!('.git', '')
-
- params = {
- import_url: url,
- namespace_id: group.id,
- name: project_path.titleize,
- description: Faker::Lorem.sentence,
- visibility_level: Gitlab::VisibilityLevel.values.sample
- }
-
- project = Projects::CreateService.new(User.first, params).execute
-
- if project.valid?
- print '.'
- else
- puts project.errors.full_messages
- print 'F'
+require 'sidekiq/testing'
+
+Sidekiq::Testing.inline! do
+ Gitlab::Seeder.quiet do
+ project_urls = [
+ 'https://github.com/documentcloud/underscore.git',
+ 'https://gitlab.com/gitlab-org/gitlab-ce.git',
+ 'https://gitlab.com/gitlab-org/gitlab-ci.git',
+ 'https://gitlab.com/gitlab-org/gitlab-shell.git',
+ 'https://gitlab.com/gitlab-org/gitlab-test.git',
+ 'https://github.com/twitter/flight.git',
+ 'https://github.com/twitter/typeahead.js.git',
+ 'https://github.com/h5bp/html5-boilerplate.git',
+ ]
+
+ project_urls.each_with_index do |url, i|
+ group_path, project_path = url.split('/')[-2..-1]
+
+ group = Group.find_by(path: group_path)
+
+ unless group
+ group = Group.new(
+ name: group_path.titleize,
+ path: group_path
+ )
+ group.description = Faker::Lorem.sentence
+ group.save
+
+ group.add_owner(User.first)
+ end
+
+ project_path.gsub!(".git", "")
+
+ params = {
+ import_url: url,
+ namespace_id: group.id,
+ name: project_path.titleize,
+ description: Faker::Lorem.sentence,
+ visibility_level: Gitlab::VisibilityLevel.values.sample
+ }
+
+ project = Projects::CreateService.new(User.first, params).execute
+
+ if project.valid?
+ print '.'
+ else
+ puts project.errors.full_messages
+ print 'F'
+ end
end
end
end
diff --git a/db/fixtures/development/08_milestones.rb b/db/fixtures/development/07_milestones.rb
index 2296821e528..2296821e528 100644
--- a/db/fixtures/development/08_milestones.rb
+++ b/db/fixtures/development/07_milestones.rb
diff --git a/db/fixtures/development/07_projects_visibility.rb b/db/fixtures/development/07_projects_visibility.rb
deleted file mode 100644
index c3287584a07..00000000000
--- a/db/fixtures/development/07_projects_visibility.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-require Rails.root.join('db', 'fixtures', Rails.env, 'fixtures_development_helper')
-
-Gitlab::Seeder.quiet do
- Gitlab::VisibilityLevel.options.each do |visibility_label, visibility_value|
- visibility_label_downcase = visibility_label.downcase
- begin
- user = User.seed(:username) do |s|
- username = "#{visibility_label_downcase}-owner"
- s.username = username
- s.name = "#{visibility_label} Owner"
- s.email = "#{username}@example.com"
- s.password = '12345678'
- s.confirmed_at = DateTime.now
- end[0]
-
- # import_url does not work for local paths,
- # so we just copy the template repository in.
- unless Project.find_with_namespace("#{user.namespace.id}/"\
- "#{visibility_label_downcase}")
- params = {
- name: "#{visibility_label} Project",
- description: "#{visibility_label} Project description",
- namespace_id: user.namespace.id,
- visibility_level: visibility_value,
- }
- project = Projects::CreateService.new(user, params).execute
- new_path = project.repository.path
- FileUtils.rm_rf(new_path)
- FileUtils.cp_r(FixturesDevelopmentHelper.template_project.repository.path,
- new_path)
- end
-
- print '.'
- rescue ActiveRecord::RecordNotSaved
- print 'F'
- end
- end
-end
diff --git a/db/fixtures/development/fixtures_development_helper.rb b/db/fixtures/development/fixtures_development_helper.rb
deleted file mode 100644
index 22a7834bbee..00000000000
--- a/db/fixtures/development/fixtures_development_helper.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-module FixturesDevelopmentHelper
- class << self
- def template_project
- @template_project ||= Project.
- find_with_namespace('gitlab-org/gitlab-test')
- end
- end
-end