git_stats/spec/integration/repo_spec.rb

67 lines
2.0 KiB
Ruby
Raw Normal View History

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 16:39:39 +02:00
describe GitStats::GitData::Repo do
2012-10-21 22:41:54 +02:00
include_context "shared"
2012-10-19 16:39:39 +02:00
2012-10-19 17:35:33 +02:00
it 'should gather all authors' do
2012-10-21 22:41:54 +02:00
repo.authors.should =~ expected_authors
2012-10-19 16:39:39 +02:00
end
2012-10-19 22:01:01 +02:00
it 'should calculate correct commits period' do
repo.commits_period.should == [DateTime.parse('2012-10-19 10:44:34 +0200'), DateTime.parse('2012-10-26 17:05:25 +0200')]
end
2012-10-19 17:35:33 +02:00
it 'should gather all commits sorted by date' do
2012-10-20 22:38:11 +02:00
repo.commits.map(&:sha).should =~ %w(b3b4f81 d60b5ec ab47ef8 2c11f5e c87ecf9 b621a5d fd66657 81e8bef 4e7d0e9 872955c)
2012-10-19 17:35:33 +02:00
end
it 'should return project name from dir' do
repo.project_name.should == 'test_repo'
end
it 'should return project version as last commit hash' do
2012-10-19 20:27:41 +02:00
repo.project_version.should == '872955c'
2012-10-19 17:35:33 +02:00
end
it 'should count files in repo' do
repo.files_count.should == 6
end
2012-10-20 00:30:00 +02:00
it 'should count files by date' do
2013-08-09 15:29:41 +02:00
repo.files_count_by_date.keys == Hash[commit_dates_with_empty.zip [1, 2, 2, 3, 3, 4, 5, 5, 6, 6]]
2012-10-20 00:30:00 +02:00
end
it 'should count lines by date' do
2013-08-09 15:29:41 +02:00
repo.files_count_by_date.values == Hash[commit_dates_with_empty.zip [1, 2, 2, 3, 3, 4, 5, 5, 6, 6]]
2012-10-20 00:30:00 +02:00
end
2012-10-19 17:35:33 +02:00
it 'should count all lines in repo' do
repo.lines_count.should == 1114
end
it 'should count files by extension in repo' do
repo.files_by_extension_count.should == {'.haml' => 1, '.txt' => 3, '.rb' => 2}
end
it 'should count lines by extension in repo' do
repo.lines_by_extension.should == {'.haml' => 100, '.txt' => 1008, '.rb' => 6}
2012-10-19 17:35:33 +02:00
end
2012-10-21 22:41:54 +02:00
it 'should count commits_count_by_author' do
repo.commits_count_by_author.keys.should == expected_authors
repo.commits_count_by_author.values.should == [8, 2]
end
it 'should count lines_added_by_author' do
2012-10-21 23:03:41 +02:00
repo.insertions_by_author.keys.should == expected_authors
repo.insertions_by_author.values.should == [1021, 103]
2012-10-21 22:41:54 +02:00
end
it 'should count lines_deleted_by_author' do
2012-10-21 23:03:41 +02:00
repo.deletions_by_author.keys.should == expected_authors
repo.deletions_by_author.values.should == [10, 0]
2012-10-21 22:41:54 +02:00
end
2012-10-23 20:37:42 +02:00
end