gitlab-org--gitlab-foss/spec/support/helpers/fake_blob_helpers.rb

41 lines
744 B
Ruby
Raw Normal View History

2017-04-25 20:22:56 +00:00
module FakeBlobHelpers
class FakeBlob
include BlobLike
2017-04-25 20:22:56 +00:00
attr_reader :path, :size, :data, :lfs_oid, :lfs_size
def initialize(path: 'file.txt', size: 1.kilobyte, data: 'foo', binary: false, lfs: nil)
@path = path
@size = size
@data = data
@binary = binary
@lfs_pointer = lfs.present?
if @lfs_pointer
@lfs_oid = SecureRandom.hex(20)
@lfs_size = 1.megabyte
end
end
alias_method :name, :path
def id
0
end
def binary_in_repo?
2017-04-25 20:22:56 +00:00
@binary
end
def external_storage
:lfs if @lfs_pointer
2017-04-25 20:22:56 +00:00
end
alias_method :external_size, :lfs_size
2017-04-25 20:22:56 +00:00
end
def fake_blob(**kwargs)
Blob.decorate(FakeBlob.new(**kwargs), project)
end
end