2018-03-27 19:54:05 +05:30
|
|
|
module Gitlab
|
|
|
|
module Verify
|
|
|
|
class LfsObjects < BatchVerifier
|
|
|
|
def name
|
|
|
|
'LFS objects'
|
|
|
|
end
|
|
|
|
|
|
|
|
def describe(object)
|
|
|
|
"LFS object: #{object.oid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def relation
|
2018-05-09 12:01:36 +05:30
|
|
|
LfsObject.with_files_stored_locally
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def expected_checksum(lfs_object)
|
|
|
|
lfs_object.oid
|
|
|
|
end
|
|
|
|
|
|
|
|
def actual_checksum(lfs_object)
|
|
|
|
LfsObject.calculate_oid(lfs_object.file.path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|