]> cat aescling's git repositories - mastodon.git/commitdiff
Validate data of Imports (#4782)
authorabcang <abcang1015@gmail.com>
Sat, 2 Sep 2017 18:45:42 +0000 (03:45 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Sat, 2 Sep 2017 18:45:42 +0000 (20:45 +0200)
app/models/import.rb
spec/models/import_spec.rb

index 815e025898322d76bd819314107f09e4d42e846f..4656c3af6f7ffb787720dc17ff981146255ded3a 100644 (file)
@@ -28,4 +28,5 @@ class Import < ApplicationRecord
 
   has_attached_file :data, url: '/system/:hash.:extension', hash_secret: ENV['PAPERCLIP_SECRET']
   validates_attachment_content_type :data, content_type: FILE_TYPES
+  validates_attachment_presence :data
 end
index fa52077cd1dd1be61a6688e7b23738da014763aa..321761166ec50a34e59dda7d80ed9f1618ca1994 100644 (file)
@@ -1,5 +1,24 @@
 require 'rails_helper'
 
 RSpec.describe Import, type: :model do
+  let (:account) { Fabricate(:account) }
+  let (:type) { 'following' }
+  let (:data) { attachment_fixture('imports.txt') }
 
+  describe 'validations' do
+    it 'has a valid parameters' do
+      import = Import.create(account: account, type: type, data: data)
+      expect(import).to be_valid
+    end
+
+    it 'is invalid without an type' do
+      import = Import.create(account: account, data: data)
+      expect(import).to model_have_error_on_field(:type)
+    end
+
+    it 'is invalid without a data' do
+      import = Import.create(account: account, type: type)
+      expect(import).to model_have_error_on_field(:data)
+    end
+  end
 end