about summary refs log tree commit diff
path: root/spec/models/import_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-12-18 09:18:31 +0100
committerGitHub <noreply@github.com>2020-12-18 09:18:31 +0100
commiteb35be0431b2cdd2bbf3339beb9c5a0839e1088b (patch)
tree6e95bf9c68f7ce9b18c4a5ae404b484ef670655c /spec/models/import_spec.rb
parent941ff04b03a8a3e3f03e95c108f0cfa621226fb1 (diff)
Fix follow limit preventing re-following of a moved account (#14207)
Diffstat (limited to 'spec/models/import_spec.rb')
-rw-r--r--spec/models/import_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/import_spec.rb b/spec/models/import_spec.rb
index 321761166..a5eec1722 100644
--- a/spec/models/import_spec.rb
+++ b/spec/models/import_spec.rb
@@ -20,5 +20,15 @@ RSpec.describe Import, type: :model do
       import = Import.create(account: account, type: type)
       expect(import).to model_have_error_on_field(:data)
     end
+
+    it 'is invalid with too many rows in data' do
+      import = Import.create(account: account, type: type, data: StringIO.new("foo@bar.com\n" * (ImportService::ROWS_PROCESSING_LIMIT + 10)))
+      expect(import).to model_have_error_on_field(:data)
+    end
+
+    it 'is invalid when there are more rows when following limit' do
+      import = Import.create(account: account, type: type, data: StringIO.new("foo@bar.com\n" * (FollowLimitValidator.limit_for_account(account) + 10)))
+      expect(import).to model_have_error_on_field(:data)
+    end
   end
 end