Fix build coverage regex.

Added a spec for regex captures as well.

Fixes #2644
This commit is contained in:
Jared Szechy 2015-12-20 13:18:14 -05:00
parent 05e0b6d014
commit 5a3237fd8d
2 changed files with 8 additions and 1 deletions

View File

@ -170,7 +170,8 @@ module Ci
def extract_coverage(text, regex)
begin
matches = regex.match(text).to_a.last
matches = text.scan(Regexp.new(regex)).last
matches = matches.last if matches.kind_of?(Array)
coverage = matches.gsub(/\d+(\.\d+)?/).first
if coverage.present?

View File

@ -189,6 +189,12 @@ describe Ci::Build, models: true do
it { is_expected.to eq(98.29) }
end
context 'using a regex capture' do
subject { build.extract_coverage('TOTAL 9926 3489 65%', 'TOTAL\s+\d+\s+\d+\s+(\d{1,3}\%)') }
it { is_expected.to eq(65) }
end
end
describe :variables do