summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Sizov <valery@gitlab.com>2015-06-26 13:03:30 +0000
committerValery Sizov <valery@gitlab.com>2015-06-26 13:03:30 +0000
commitc4657e482bfe68b59235214220a9aa294b16d104 (patch)
treeff70acb9732acf762d0a4974efd24c5354b1351e
parent07383304a5d0593875025c3317e1914efe74b7f6 (diff)
parent744d291de7f7387564900c77999d6d6b712e1837 (diff)
downloadgitlab-ci-c4657e482bfe68b59235214220a9aa294b16d104.tar.gz
Merge branch 'coverage_fix' into 'master'
Fix coverage colcalation on the commit page See merge request !171
-rw-r--r--CHANGELOG1
-rw-r--r--app/models/commit.rb7
-rw-r--r--spec/models/commit_spec.rb23
3 files changed, 29 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 45894e5..4711964 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,6 +4,7 @@ v7.13.0
- Improved Lint stability
- Disable colors in rake tasks automatically (if IO is not a TTY)
- Implemented "rake env:info". Rake task to receive system information
+ - Fix coverage calculation on commit page
v7.12.1
- Runner without tag should pick builds without tag only
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 215afdd..7cf2810 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -205,8 +205,11 @@ class Commit < ActiveRecord::Base
end
def coverage
- if project.coverage_enabled? && builds.size > 0
- builds.last.coverage
+ if project.coverage_enabled? && builds.count(:all) > 0
+ coverage_array = builds.map(&:coverage).compact
+ if coverage_array.size > 1
+ coverage_array.reduce(:+) / coverage_array.size
+ end
end
end
diff --git a/spec/models/commit_spec.rb b/spec/models/commit_spec.rb
index 8c0073e..e1969c4 100644
--- a/spec/models/commit_spec.rb
+++ b/spec/models/commit_spec.rb
@@ -159,4 +159,27 @@ describe Commit do
commit.finished_at.should be_nil
end
end
+
+ describe "coverage" do
+ let(:project) { FactoryGirl.create :project, coverage_regex: "/.*/" }
+ let(:commit) { FactoryGirl.create :commit, project: project }
+
+ it "calculates average when there are two builds with coverage" do
+ FactoryGirl.create :build, coverage: 30, commit: commit
+ FactoryGirl.create :build, coverage: 40, commit: commit
+ commit.coverage.should == 35.0
+ end
+
+ it "calculates average when there are two builds with coverage and one with nil" do
+ FactoryGirl.create :build, coverage: 30, commit: commit
+ FactoryGirl.create :build, coverage: 40, commit: commit
+ FactoryGirl.create :build, commit: commit
+ commit.coverage.should == 35.0
+ end
+
+ it "calculates average when there is one build without coverage" do
+ FactoryGirl.create :build, commit: commit
+ commit.coverage.should be_nil
+ end
+ end
end