Class: CodeClimate::TestReporter::Formatter

Inherits:
Object
  • Object
show all
Defined in:
lib/codeclimate-test-reporter.rb

Instance Method Summary collapse

Instance Method Details

#calculate_blob_id(path) ⇒ Object



136
137
138
139
140
141
# File 'lib/codeclimate-test-reporter.rb', line 136

def calculate_blob_id(path)
  content = File.open(path, "rb").read
  header = "blob #{content.length}\0"
  store = header + content
  Digest::SHA1.hexdigest(store)
end

#ci_service_dataObject



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
# File 'lib/codeclimate-test-reporter.rb', line 102

def ci_service_data
  if ENV['TRAVIS']
    {
      name:             "travis-ci",
      branch:           ENV['TRAVIS_BRANCH'],
      build_identifier: ENV['TRAVIS_JOB_ID'],
      pull_request:     ENV['TRAVIS_PULL_REQUEST']
    }
  elsif ENV['CIRCLECI']
    {
      name:             "circlci",
      build_identifier: ENV['CIRCLE_BUILD_NUM'],
      branch:           ENV['CIRCLE_BRANCH'],
      commit_sha:       ENV['CIRCLE_SHA1']
    }
  elsif ENV['SEMAPHORE']
    {
      name:             "semaphore",
      branch:           ENV['BRANCH_NAME'],
      build_identifier: ENV['SEMAPHORE_BUILD_NUMBER']
    }
  elsif ENV['JENKINS_URL']
    {
      name:             "jenkins",
      build_identifier: ENV['BUILD_NUMBER'],
      build_url:        ENV['BUILD_URL'],
      branch:           ENV['GIT_BRANCH'],
      commit_sha:       ENV['GIT_COMMIT']
    }
  else
    {}
  end
end

#committed_atObject



148
149
150
151
# File 'lib/codeclimate-test-reporter.rb', line 148

def committed_at
  committed_at = `git log -1 --pretty=format:'%ct'`
  committed_at.to_i.zero? ? nil : committed_at.to_i
end

#format(result) ⇒ Object



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
# File 'lib/codeclimate-test-reporter.rb', line 45

def format(result)
  totals = Hash.new(0)

  source_files = result.files.map do |file|
    totals[:total]      += file.lines.count
    totals[:covered]    += file.covered_lines.count
    totals[:missed]     += file.missed_lines.count

    {
      name:             short_filename(file.filename),
      blob_id:          calculate_blob_id(file.filename),
      coverage:         file.coverage.to_json,
      covered_percent:  file.covered_percent.round(2),
      covered_strength: file.covered_strength.round(2),
      line_counts: {
        total:    file.lines.count,
        covered:  file.covered_lines.count,
        missed:   file.missed_lines.count
      }
    }
  end

  print "Coverage = #{result.covered_percent.round(2)}%. Sending report to #{API.host}... "

  API.post_results({
    repo_token:       ENV["CODECLIMATE_REPO_TOKEN"],
    source_files:     source_files,
    run_at:           result.created_at,
    covered_percent:  result.covered_percent.round(2),
    covered_strength: result.covered_strength.round(2),
    line_counts:      totals,
    git: {
      head:         `git log -1 --pretty=format:'%H'`,
      committed_at: committed_at,
      branch:       git_branch,
    },
    environment: {
      test_framework: result.command_name.downcase,
      pwd:            Dir.pwd,
      rails_root:     (Rails.root.to_s rescue nil),
      simplecov_root: ::SimpleCov.root,
      gem_version:    VERSION
    },
    ci_service: ci_service_data
  })

  puts "done."
  true
rescue => ex
  puts "\nCode Climate encountered an exception: #{ex.class}"
  puts ex.message
  ex.backtrace.each do |line|
    puts line
  end
  false
end

#git_branchObject



153
154
155
156
157
# File 'lib/codeclimate-test-reporter.rb', line 153

def git_branch
  branch = `git branch`.split("\n").delete_if { |i| i[0] != "*" }
  branch = [branch].flatten.first
  branch ? branch.gsub("* ","") : nil
end

#short_filename(filename) ⇒ Object



143
144
145
146
# File 'lib/codeclimate-test-reporter.rb', line 143

def short_filename(filename)
  return filename unless ::SimpleCov.root
  filename.gsub(::SimpleCov.root, '.').gsub(/^\.\//, '')
end