summaryrefslogtreecommitdiff
path: root/db/fixtures/development/14_builds.rb
blob: 6441a036e75edf0b69abf3c1f4cb999404c86c13 (plain)
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
class Gitlab::Seeder::Builds
  STAGES = %w[build notify_build test notify_test deploy notify_deploy]
  BUILDS = [
    { name: 'build:linux', stage: 'build', status: :success },
    { name: 'build:osx', stage: 'build', status: :success },
    { name: 'slack post build', stage: 'notify_build', status: :success },
    { name: 'rspec:linux', stage: 'test', status: :success },
    { name: 'rspec:windows', stage: 'test', status: :success },
    { name: 'rspec:windows', stage: 'test', status: :success },
    { name: 'rspec:osx', stage: 'test', status_event: :success },
    { name: 'spinach:linux', stage: 'test', status: :pending },
    { name: 'spinach:osx', stage: 'test', status: :canceled },
    { name: 'cucumber:linux', stage: 'test', status: :running },
    { name: 'cucumber:osx', stage: 'test', status: :failed },
    { name: 'slack post test', stage: 'notify_test', status: :success },
    { name: 'staging', stage: 'deploy', environment: 'staging', status: :success },
    { name: 'production', stage: 'deploy', environment: 'production', when: 'manual', status: :success },
  ]

  def initialize(project)
    @project = project
  end

  def seed!
    pipelines.each do |pipeline|
      begin
        BUILDS.each { |opts| build_create!(pipeline, opts) }
        commit_status_create!(pipeline, name: 'jenkins', status: :success)

        print '.'
      rescue ActiveRecord::RecordInvalid
        print 'F'
      end
    end
  end

  def pipelines
    commits = @project.repository.commits('master', limit: 5)
    commits_sha = commits.map { |commit| commit.raw.id }
    commits_sha.map do |sha|
      @project.ensure_pipeline(sha, 'master')
    end
  rescue
    []
  end

  def build_create!(pipeline, opts = {})
    attributes = build_attributes_for(pipeline, opts)

    Ci::Build.create!(attributes) do |build|
      if opts[:name].start_with?('build')
        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

      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
  end

  def commit_status_create!(pipeline, opts = {})
    attributes = commit_status_attributes_for(pipeline, opts)
    GenericCommitStatus.create!(attributes)
  end

  def commit_status_attributes_for(pipeline, opts)
    { name: 'test build', stage: 'test', stage_idx: stage_index(opts[:stage]),
      ref: 'master', tag: false, user: build_user, project: @project, pipeline: pipeline,
      created_at: Time.now, updated_at: Time.now
    }.merge(opts)
  end

  def build_attributes_for(pipeline, opts)
    commit_status_attributes_for(pipeline, opts).merge(commands: '$ build command')
  end

  def build_user
    @project.team.users.sample
  end

  def build_status
    Ci::Build::AVAILABLE_STATUSES.sample
  end

  def stage_index(stage)
    STAGES.index(stage) || 0
  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 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
  end
end

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