3ef4f74b1a
This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.
12 lines
315 B
Ruby
12 lines
315 B
Ruby
include ActionDispatch::TestProcess
|
|
|
|
FactoryGirl.define do
|
|
factory :lfs_object do
|
|
sequence(:oid) { |n| "b68143e6463773b1b6c6fd009a76c32aeec041faff32ba2ed42fd7f708a%05x" % n }
|
|
size 499013
|
|
end
|
|
|
|
trait :with_file do
|
|
file { fixture_file_upload(Rails.root + "spec/fixtures/dk.png", "`/png") }
|
|
end
|
|
end
|