14_builds.rb 2.2 KB
Newer Older
G
Grzegorz Bizon 已提交
1 2 3 4
class Gitlab::Seeder::Builds
  def initialize(project)
    @project = project
  end
G
Grzegorz Bizon 已提交
5

G
Grzegorz Bizon 已提交
6
  def seed!
G
Grzegorz Bizon 已提交
7 8
    ci_commits.each do |ci_commit|
      begin
9 10
        build_create!(ci_commit, name: 'test build 1')
        build_create!(ci_commit, status: 'success', name: 'test build 2')
G
Grzegorz Bizon 已提交
11 12 13 14 15
        print '.'
      rescue ActiveRecord::RecordInvalid
        print 'F'
      end
    end
16
  end
G
Grzegorz Bizon 已提交
17 18 19 20 21 22 23 24 25 26 27

  def ci_commits
    commits = @project.repository.commits('master', nil, 5)
    commits_sha = commits.map { |commit| commit.raw.id }
    commits_sha.map do |sha|
      @project.ensure_ci_commit(sha)
    end
  rescue
    []
  end

28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  def build_create!(ci_commit, opts = {})
    attributes = build_attributes_for(ci_commit).merge(opts)
    build = Ci::Build.new(attributes)

    if %w(success failed).include?(build.status)
      artifacts_cache_file(artifacts_archive_path) do |file|
        build.artifacts_file = file
      end

      artifacts_cache_file(artifacts_metadata_path) do |file|
        build.artifacts_metadata = file
      end
    end

    build.save!

    if %w(running success failed).include?(build.status)
      # We need to set build trace after saving a build (id required)
      build.trace = FFaker::Lorem.paragraphs(6).join("\n\n")
    end
  end

G
Grzegorz Bizon 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62
  def build_attributes_for(ci_commit)
    { name: 'test build', commands: "$ build command",
      stage: 'test', stage_idx: 1, ref: 'master',
      user_id: build_user, gl_project_id: @project.id,
      status: build_status, commit_id: ci_commit.id,
      created_at: Time.now, updated_at: Time.now }
  end

  def build_user
    @project.team.users.sample
  end

  def build_status
63
    Ci::Build::AVAILABLE_STATUSES.sample
G
Grzegorz Bizon 已提交
64 65
  end

66
  def artifacts_archive_path
67
    Rails.root + 'spec/fixtures/ci_build_artifacts.zip'
G
Grzegorz Bizon 已提交
68 69
  end

70 71 72 73 74 75 76 77 78 79 80 81
  def artifacts_metadata_path
    Rails.root + 'spec/fixtures/ci_build_artifacts_metadata.gz'

  end

  def artifacts_cache_file(file_path)
    cache_path = file_path.to_s.gsub('ci_', "p#{@project.id}_")

    FileUtils.copy(file_path, cache_path)
    File.open(cache_path) do |file|
      yield file
    end
G
Grzegorz Bizon 已提交
82 83 84 85 86 87 88 89
  end
end

Gitlab::Seeder.quiet do
  Project.all.sample(10).each do |project|
    project_builds = Gitlab::Seeder::Builds.new(project)
    project_builds.seed!
  end
90
end