1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
# frozen_string_literal: true
require './spec/support/sidekiq_middleware'
# Usage:
#
# Simple invocation seeds 5 random projects:
#
# FILTER=14_pipelines bundle exec rake db:seed_fu
#
# Create a new project with repository within a group
#
# FILTER=14_pipelines NEW_PROJECT=1 bundle exec rake db:seed_fu
# rubocop:disable Rails/Output
class Gitlab::Seeder::Pipelines # rubocop:disable Style/ClassAndModuleChildren
PIPELINE_STAGES = [
{
name: 'build',
position: 0,
builds: [
{ name: 'build:linux', status: :success,
queued_at: 10.hours.ago, started_at: 9.hours.ago, finished_at: 8.hours.ago },
{ name: 'build:osx', status: :success,
queued_at: 10.hours.ago, started_at: 10.hours.ago, finished_at: 9.hours.ago }
]
},
{
name: 'test',
position: 1,
builds: [
{ name: 'rspec:linux 0 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:linux 1 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:linux 2 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:windows 0 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:windows 1 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:windows 2 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:windows 2 3', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'rspec:osx', status_event: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'spinach:linux', status: :success,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago },
{ name: 'spinach:osx', status: :failed, allow_failure: true,
queued_at: 8.hours.ago, started_at: 8.hours.ago, finished_at: 7.hours.ago }
]
},
{
name: 'deploy',
position: 2,
builds: [
{ name: 'staging', environment: 'staging', status_event: :success,
options: { environment: { action: 'start', on_stop: 'stop staging' } },
queued_at: 7.hours.ago, started_at: 6.hours.ago, finished_at: 4.hours.ago },
{ name: 'stop staging', environment: 'staging', when: 'manual', status: :skipped },
{ name: 'production', environment: 'production', when: 'manual', status: :skipped }
]
},
{
name: 'notify',
position: 3,
builds: [
{ name: 'slack', when: 'manual', status: :success }
]
},
{
name: 'external',
position: 4,
builds: [
{ name: 'jenkins', status: :success,
queued_at: 7.hours.ago, started_at: 6.hours.ago, finished_at: 4.hours.ago }
]
}
].freeze
def initialize(project = nil)
@project = project || create_new_project
end
def seed!
if !@project.repository_exists? || @project.empty_repo?
puts
puts "==============WARNING=============="
puts "(#{@project.full_path}) doesn't have a repository. " \
'Try specifying a project with working repository or add NEW_PROJECT=1 parameter ' \
'so the seed script will automatically create one.'
return
end
pipelines.each do |pipeline|
PIPELINE_STAGES.each do |stage_attrs|
stage = stage_create!(pipeline, stage_attrs[:name], stage_attrs[:position])
stage_attrs[:builds].each do |build_attrs|
if stage_attrs[:name] == 'external'
generic_commit_status_create!(pipeline, stage, build_attrs)
else
build_create!(pipeline, stage, build_attrs)
end
end
end
pipeline.update_duration
Gitlab::ExclusiveLease.skipping_transaction_check do
::Ci::ProcessPipelineService.new(pipeline).execute
end
end
::Gitlab::Seeders::Ci::DailyBuildGroupReportResult.new(@project).seed if @project.last_pipeline
puts "\nSuccessfully seeded '#{@project.full_path}'\n"
puts "URL: #{Rails.application.routes.url_helpers.project_url(@project)}"
end
private
def create_new_project
admin = User.admins.first
namespace = FactoryBot.create(
:group,
:public,
name: "Repo Analytics Group #{suffix}",
path: "r-analytics-group-#{suffix}"
)
project = FactoryBot.create(
:project,
:public,
:repository,
name: "Repo Analytics Project #{suffix}",
path: "r-analytics-project-#{suffix}",
creator: admin,
namespace: namespace
)
namespace.add_owner(admin)
project.create_repository
project
end
def stage_create!(pipeline, name, position)
Ci::Stage.create!(pipeline: pipeline, project: pipeline.project, name: name, position: position)
end
def pipelines
create_main_pipelines + create_merge_request_pipelines
end
def create_main_pipelines
branch_name = @project.default_branch
@project.repository.commits(branch_name, limit: 4).map do |commit|
create_pipeline!(@project, branch_name, commit).tap do |pipeline|
random_pipeline.tap do |triggered_by_pipeline|
triggered_by_pipeline.try(:sourced_pipelines)&.create(
source_job: triggered_by_pipeline.builds.all.sample,
source_project: triggered_by_pipeline.project,
project: pipeline.project,
pipeline: pipeline)
end
end
end
rescue ActiveRecord::ActiveRecordError
[]
end
def create_merge_request_pipelines
pipelines = @project.merge_requests.first(3).map do |merge_request|
project = merge_request.source_project
branch = merge_request.source_branch
merge_request.commits.last(4).map do |commit|
create_pipeline!(project, branch, commit).tap do |pipeline|
merge_request.update!(head_pipeline_id: pipeline.id)
end
end
end
pipelines.flatten
rescue ActiveRecord::ActiveRecordError
[]
end
def create_pipeline!(project, ref, commit)
project.ci_pipelines.create!(sha: commit.id, ref: ref, source: :push)
end
def build_create!(pipeline, stage, opts = {})
attributes = job_attributes(pipeline, stage, opts)
attributes[:options] ||= {}
attributes[:options][:script] = 'build command'
Ci::Build.create!(attributes).tap do |build|
# We need to set build trace and artifacts after saving a build
# (id required), that is why we need `#tap` method instead of passing
# block directly to `Ci::Build#create!`.
setup_artifacts(build)
setup_test_reports(build)
setup_build_log(build)
build.project.environments
.find_or_create_by(name: build.expanded_environment_name)
build.save!
end
end
def setup_artifacts(build)
return unless build.ci_stage.name == 'build'
artifacts_cache_file(artifacts_archive_path) do |file|
build.job_artifacts.build(project: build.project, file_type: :archive, file_format: :zip, file: file)
end
artifacts_cache_file(artifacts_metadata_path) do |file|
build.job_artifacts.build(project: build.project, file_type: :metadata, file_format: :gzip, file: file)
end
end
def setup_test_reports(build)
return unless build.ci_stage.name == 'test' && build.name == "rspec:osx"
if build.ref == build.project.default_branch
artifacts_cache_file(test_reports_pass_path) do |file|
build.job_artifacts.build(project: build.project, file_type: :junit, file_format: :gzip, file: file)
end
else
artifacts_cache_file(test_reports_failed_path) do |file|
build.job_artifacts.build(project: build.project, file_type: :junit, file_format: :gzip, file: file)
end
end
end
def setup_build_log(build)
return unless %w[running success failed].include?(build.status)
Gitlab::ExclusiveLease.skipping_transaction_check do
build.trace.set(FFaker::Lorem.paragraphs(6).join("\n\n"))
end
end
def generic_commit_status_create!(pipeline, stage, opts = {})
attributes = job_attributes(pipeline, stage, opts)
GenericCommitStatus.create!(attributes)
end
def runners
@runners ||= FactoryBot.create_list(:ci_runner, 6)
end
def job_attributes(pipeline, stage, opts)
{
name: 'test build', ci_stage: stage, stage_idx: stage.position,
ref: pipeline.ref, tag: false, user: build_user, project: @project, pipeline: pipeline,
scheduling_type: :stage, created_at: Time.now, updated_at: Time.now, runner_id: runners.sample.id
}.merge(opts)
end
def build_user
@project.team.users.sample
end
def random_pipeline
Ci::Pipeline.limit(4).all.sample
end
def build_status
Ci::Build::AVAILABLE_STATUSES.sample
end
def artifacts_archive_path
"#{Rails.root}/spec/fixtures/ci_build_artifacts.zip"
end
def artifacts_metadata_path
"#{Rails.root}/spec/fixtures/ci_build_artifacts_metadata.gz"
end
def test_reports_pass_path
"#{Rails.root}/spec/fixtures/junit/junit_ant.xml.gz"
end
def test_reports_failed_path
"#{Rails.root}/spec/fixtures/junit/junit.xml.gz"
end
def artifacts_cache_file(file_path)
file = Tempfile.new("artifacts")
file.close
FileUtils.copy(file_path, file.path)
yield(UploadedFile.new(file.path, filename: File.basename(file_path)))
end
def suffix
@suffix ||= Time.now.to_i
end
end
Gitlab::Seeder.quiet do
new_project = ENV['NEW_PROJECT']
if new_project.present?
Gitlab::Seeder::Pipelines.new.seed!
else
Project.not_mass_generated.sample(5).each do |project|
project_builds = Gitlab::Seeder::Pipelines.new(project)
project_builds.seed!
end
end
end
# rubocop:enable Rails/Output
|