Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
f47ba909
Commit
f47ba909
authored
Jun 20, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix seeds. More projects for dev seeds
parent
86d9ed9a
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
63 additions
and
60 deletions
+63
-60
db/fixtures/development/01_admin.rb
db/fixtures/development/01_admin.rb
+1
-0
db/fixtures/development/02_source_code.rb
db/fixtures/development/02_source_code.rb
+0
-29
db/fixtures/development/03_group.rb
db/fixtures/development/03_group.rb
+0
-5
db/fixtures/development/04_project.rb
db/fixtures/development/04_project.rb
+45
-16
db/fixtures/development/05_users.rb
db/fixtures/development/05_users.rb
+1
-1
db/fixtures/development/06_teams.rb
db/fixtures/development/06_teams.rb
+16
-7
db/fixtures/development/09_issues.rb
db/fixtures/development/09_issues.rb
+0
-1
db/fixtures/development/10_merge_requests.rb
db/fixtures/development/10_merge_requests.rb
+0
-1
No files found.
db/fixtures/development/01_admin.rb
View file @
f47ba909
...
...
@@ -7,5 +7,6 @@ User.seed(:id, [
password:
"5iveL!fe"
,
password_confirmation:
"5iveL!fe"
,
admin:
true
,
projects_limit:
100
,
}
])
db/fixtures/development/02_source_code.rb
deleted
100644 → 0
View file @
86d9ed9a
gitlab_shell_path
=
File
.
expand_path
(
"~
#{
Gitlab
.
config
.
gitlab_shell
.
ssh_user
}
"
)
root
=
Gitlab
.
config
.
gitlab_shell
.
repos_path
projects
=
[
{
path:
'underscore.git'
,
git:
'https://github.com/documentcloud/underscore.git'
},
{
path:
'diaspora.git'
,
git:
'https://github.com/diaspora/diaspora.git'
},
{
path:
'brightbox/brightbox-cli.git'
,
git:
'https://github.com/brightbox/brightbox-cli.git'
},
{
path:
'brightbox/puppet.git'
,
git:
'https://github.com/brightbox/puppet.git'
},
{
path:
'gitlab/gitlabhq.git'
,
git:
'https://github.com/gitlabhq/gitlabhq.git'
},
{
path:
'gitlab/gitlab-ci.git'
,
git:
'https://github.com/gitlabhq/gitlab-ci.git'
},
{
path:
'gitlab/gitlab-recipes.git'
,
git:
'https://github.com/gitlabhq/gitlab-recipes.git'
},
]
projects
.
each
do
|
project
|
project_path
=
File
.
join
(
root
,
project
[
:path
])
if
File
.
exists?
(
project_path
)
print
'-'
next
end
if
system
(
"
#{
gitlab_shell_path
}
/gitlab-shell/bin/gitlab-projects import-project
#{
project
[
:path
]
}
#{
project
[
:git
]
}
"
)
print
'.'
else
print
'F'
end
end
puts
"OK"
.
green
db/fixtures/development/03_group.rb
deleted
100644 → 0
View file @
86d9ed9a
Group
.
seed
(
:id
,
[
{
id:
99
,
name:
"GitLab"
,
path:
'gitlab'
,
owner_id:
1
},
{
id:
100
,
name:
"Brightbox"
,
path:
'brightbox'
,
owner_id:
1
},
{
id:
101
,
name:
"KDE"
,
path:
'kde'
,
owner_id:
1
},
])
db/fixtures/development/04_project.rb
View file @
f47ba909
Project
.
seed
(
:id
,
[
project_urls
=
[
'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/gitlab-ci.git'
,
'https://github.com/gitlabhq/gitlab-recipes.git'
,
'https://github.com/gitlabhq/gitlab-shell.git'
,
'https://github.com/gitlabhq/grack.git'
,
'https://github.com/twitter/flight.git'
,
'https://github.com/twitter/typeahead.js.git'
,
'https://github.com/h5bp/html5-boilerplate.git'
,
'https://github.com/h5bp/mobile-boilerplate.git'
,
]
# Global
{
id:
1
,
name:
"Underscore.js"
,
path:
"underscore"
,
creator_id:
1
},
{
id:
2
,
name:
"Diaspora"
,
path:
"diaspora"
,
creator_id:
1
},
project_urls
.
each_with_index
do
|
url
,
i
|
group_path
,
project_path
=
url
.
split
(
'/'
)[
-
2
..-
1
]
# Brightbox
{
id:
3
,
namespace_id:
100
,
name:
"Brightbox CLI"
,
path:
"brightbox-cli"
,
creator_id:
1
},
{
id:
4
,
namespace_id:
100
,
name:
"Puppet"
,
path:
"puppet"
,
creator_id:
1
},
group
=
Group
.
find_by_path
(
group_path
)
# KDE
{
id:
5
,
namespace_id:
101
,
name:
"kdebase"
,
path:
"kdebase"
,
creator_id:
1
},
{
id:
6
,
namespace_id:
101
,
name:
"kdelibs"
,
path:
"kdelibs"
,
creator_id:
1
},
{
id:
7
,
namespace_id:
101
,
name:
"amarok"
,
path:
"amarok"
,
creator_id:
1
},
unless
group
group
=
Group
.
new
(
name:
group_path
.
titleize
,
path:
group_path
)
group
.
owner
=
User
.
first
group
.
save
end
# GitLab
{
id:
8
,
namespace_id:
99
,
name:
"gitlabhq"
,
path:
"gitlabhq"
,
creator_id:
1
},
{
id:
9
,
namespace_id:
99
,
name:
"gitlab-ci"
,
path:
"gitlab-ci"
,
creator_id:
1
},
{
id:
10
,
namespace_id:
99
,
name:
"gitlab-recipes"
,
path:
"gitlab-recipes"
,
creator_id:
1
},
])
project_path
.
gsub!
(
".git"
,
""
)
params
=
{
import_url:
url
,
namespace_id:
group
.
id
,
name:
project_path
.
titleize
}
project
=
Projects
::
CreateContext
.
new
(
User
.
first
,
params
).
execute
if
project
.
valid?
print
'.'
else
puts
project
.
errors
.
full_messages
print
'F'
end
end
db/fixtures/development/05_users.rb
View file @
f47ba909
Gitlab
::
Seeder
.
quiet
do
(
2
..
30
0
).
each
do
|
i
|
(
2
..
5
0
).
each
do
|
i
|
begin
User
.
seed
(
:id
,
[{
id:
i
,
...
...
db/fixtures/development/06_teams.rb
View file @
f47ba909
ActiveRecord
::
Base
.
observers
.
disable
:all
Gitlab
::
Seeder
.
quiet
do
Project
.
all
.
each
do
|
project
|
project
.
team
<<
[
User
.
first
,
:master
]
print
'.'
Group
.
all
.
each
do
|
group
|
User
.
all
.
sample
(
4
).
each
do
|
user
|
if
group
.
add_users
([
user
.
id
],
UsersGroup
.
group_access_roles
.
values
.
sample
)
print
'.'
else
print
'F'
end
end
end
User
.
all
.
sample
(
rand
(
10
)).
each
do
|
user
|
role
=
[
:master
,
:developer
,
:reporter
].
sample
project
.
team
<<
[
user
,
role
]
print
'.'
Project
.
all
.
each
do
|
project
|
User
.
all
.
sample
(
4
).
each
do
|
user
|
if
project
.
team
<<
[
user
,
UsersProject
.
access_roles
.
values
.
sample
]
print
'.'
else
print
'F'
end
end
end
end
db/fixtures/development/09_issues.rb
View file @
f47ba909
...
...
@@ -11,7 +11,6 @@ Gitlab::Seeder.quiet do
next
unless
user
user_id
=
user
.
id
IssueObserver
.
current_user
=
user
Issue
.
seed
(
:id
,
[{
id:
i
,
...
...
db/fixtures/development/10_merge_requests.rb
View file @
f47ba909
...
...
@@ -17,7 +17,6 @@ Gitlab::Seeder.quiet do
next
if
branches
.
uniq
.
size
<
2
user_id
=
user
.
id
MergeRequestObserver
.
current_user
=
user
MergeRequest
.
seed
(
:id
,
[{
id:
i
,
source_branch:
branches
.
first
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment