2012-10-23 20:37:42 +02:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-10-21 22:41:54 +02:00
|
|
|
require 'integration/shared'
|
2012-10-19 18:17:36 +02:00
|
|
|
|
|
|
|
describe GitStats::GitData::Activity do
|
2012-10-21 22:41:54 +02:00
|
|
|
include_context "shared"
|
2012-10-19 18:17:36 +02:00
|
|
|
|
2014-06-22 15:45:55 +02:00
|
|
|
let(:tg) { repo.authors.first! { |a| a.email == 'tomasz.gieniusz@gmail.com' } }
|
|
|
|
let(:jd) { repo.authors.first! { |a| a.email == 'john.doe@gmail.com' } }
|
2012-10-19 18:17:36 +02:00
|
|
|
|
|
|
|
it 'should filter commits to author' do
|
2012-10-20 22:38:11 +02:00
|
|
|
tg.commits.map(&:sha).should =~ %w(b3b4f81 d60b5ec ab47ef8 2c11f5e c87ecf9 b621a5d 4e7d0e9 872955c)
|
|
|
|
jd.commits.map(&:sha).should =~ %w(fd66657 81e8bef)
|
2012-10-19 18:17:36 +02:00
|
|
|
end
|
2012-10-19 18:23:18 +02:00
|
|
|
|
|
|
|
context 'activity' do
|
|
|
|
it 'should count commits by hour' do
|
|
|
|
tg.activity.by_hour.should == {10 => 4, 12 => 2, 13 => 1, 17 => 1}
|
|
|
|
jd.activity.by_hour.should == {12 => 1, 15 => 1}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should count commits by day of week' do
|
|
|
|
tg.activity.by_wday.should == {0 => 2, 5 => 5, 6 => 1}
|
|
|
|
jd.activity.by_wday.should == {0 => 1, 3 => 1}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should count commits by day of week and hour' do
|
|
|
|
tg.activity.by_wday_hour.should == {0 => {12 => 1, 13 => 1}, 5 => {10 => 4, 17 => 1}, 6 => {12 => 1}}
|
|
|
|
jd.activity.by_wday_hour.should == {0 => {12 => 1}, 3 => {15 => 1}}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should count commits by month' do
|
|
|
|
tg.activity.by_month.should == {10 => 8}
|
|
|
|
jd.activity.by_month.should == {10 => 2}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should count commits by year' do
|
|
|
|
tg.activity.by_year.should == {2012 => 8}
|
|
|
|
jd.activity.by_year.should == {2012 => 2}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should count commits by year and month' do
|
|
|
|
tg.activity.by_year_month.should == {2012 => {10 => 8}}
|
|
|
|
jd.activity.by_year_month.should == {2012 => {10 => 2}}
|
|
|
|
end
|
2012-10-21 22:41:54 +02:00
|
|
|
|
|
|
|
it 'should count commits_sum_by_date' do
|
|
|
|
tg.commits_sum_by_date.map { |d, s| d }.should == tg_commit_dates
|
|
|
|
tg.commits_sum_by_date.map { |d, s| s }.should == [1, 2, 3, 4, 5, 6, 7, 8]
|
|
|
|
jd.commits_sum_by_date.map { |d, s| d }.should == jd_commit_dates
|
|
|
|
jd.commits_sum_by_date.map { |d, s| s }.should == [1, 2]
|
|
|
|
end
|
|
|
|
|
2012-10-21 23:03:41 +02:00
|
|
|
it 'should count insertions_by_date' do
|
2012-10-21 22:41:54 +02:00
|
|
|
tg.insertions_by_date.map { |d, s| d }.should == tg_commit_dates
|
|
|
|
tg.insertions_by_date.map { |d, s| s }.should == [4, 9, 14, 15, 20, 1020, 1021, 1021]
|
|
|
|
jd.insertions_by_date.map { |d, s| d }.should == jd_commit_dates
|
|
|
|
jd.insertions_by_date.map { |d, s| s }.should == [3, 103]
|
|
|
|
end
|
|
|
|
|
2012-10-21 23:03:41 +02:00
|
|
|
it 'should count deletions_by_date' do
|
2012-10-21 22:41:54 +02:00
|
|
|
tg.deletions_by_date.map { |d, s| d }.should == tg_commit_dates
|
|
|
|
tg.deletions_by_date.map { |d, s| s }.should == [0, 0, 4, 4, 9, 9, 10, 10]
|
|
|
|
jd.deletions_by_date.map { |d, s| d }.should == jd_commit_dates
|
|
|
|
jd.deletions_by_date.map { |d, s| s }.should == [0, 0]
|
|
|
|
end
|
2012-10-19 18:23:18 +02:00
|
|
|
end
|
2012-10-23 20:37:42 +02:00
|
|
|
end
|