Files
grecia/spec/shared/models/document_validations.rb
Javi Martín 4f232c3a25 Use the file_fixture helper in tests
This way we don't have to write `"spec/fixtures/files"` every time.

Note this method isn't included in factories. We could include it like
so:

```
FactoryBot::SyntaxRunner.class_eval do
  include ActiveSupport::Testing::FileFixtures
  self.file_fixture_path = RSpec.configuration.file_fixture_path
end
```

However, I'm not sure about the possible side effects, and since we only
use attachments in a few factories, there isn't much gain in applying
the monkey-patch.
2022-02-23 18:43:48 +01:00

59 lines
1.6 KiB
Ruby

shared_examples "document validations" do |documentable_factory|
let!(:document) { build(:document, documentable_factory.to_sym) }
let!(:maxfilesize) { document.max_file_size }
let!(:acceptedcontenttypes) { document.accepted_content_types }
it "is valid" do
expect(document).to be_valid
end
it "is not valid without a title" do
document.title = nil
expect(document).not_to be_valid
end
it "is not valid without an attachment" do
document.attachment = nil
expect(document).not_to be_valid
end
it "is valid for all accepted content types" do
acceptedcontenttypes.each do |content_type|
extension = content_type.split("/").last
document.attachment = File.new(file_fixture("empty.#{extension}"))
expect(document).to be_valid
end
end
it "is not valid for attachments larger than documentable max_file_size definition" do
allow(document.attachment).to receive(:byte_size).and_return(maxfilesize.megabytes + 1.byte)
max_size_error_message = "must be in between 0 Bytes and #{maxfilesize} MB"
expect(document).not_to be_valid
expect(document.errors[:attachment]).to include max_size_error_message
end
it "is not valid without a user_id" do
document.user_id = nil
expect(document).not_to be_valid
end
it "is not valid without a documentable_id" do
document.save!
document.documentable_id = nil
expect(document).not_to be_valid
end
it "is not valid without a documentable_type" do
document.save!
document.documentable_type = nil
expect(document).not_to be_valid
end
end