about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-13 11:27:13 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-13 11:27:13 +0100
commit8152584cf57c2b5a797d73f5afac0bba3c904f6d (patch)
tree6fa7e61a88f5fe759a745e3a58dc855dfbdb1e2d /spec
parent20aa777c58595cfe82ef0ab7b8853ce735901919 (diff)
Fix #142 - Escape ILIKE special characters from Account.find_remote
Diffstat (limited to 'spec')
-rw-r--r--spec/models/account_spec.rb44
1 files changed, 42 insertions, 2 deletions
diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb
index 0939ecdd0..a72369b1c 100644
--- a/spec/models/account_spec.rb
+++ b/spec/models/account_spec.rb
@@ -107,11 +107,51 @@ RSpec.describe Account, type: :model do
   end
 
   describe '.find_local' do
-    pending
+    before do
+      Fabricate(:account, username: 'Alice')
+    end
+
+    it 'returns Alice for alice' do
+      expect(Account.find_local('alice')).to_not be_nil
+    end
+
+    it 'returns Alice for Alice' do
+      expect(Account.find_local('Alice')).to_not be_nil
+    end
+
+    it 'does not return anything for a_ice' do
+      expect(Account.find_local('a_ice')).to be_nil
+    end
+
+    it 'does not return anything for al%' do
+      expect(Account.find_local('al%')).to be_nil
+    end
   end
 
   describe '.find_remote' do
-    pending
+    before do
+      Fabricate(:account, username: 'Alice', domain: 'mastodon.social')
+    end
+
+    it 'returns Alice for alice@mastodon.social' do
+      expect(Account.find_remote('alice', 'mastodon.social')).to_not be_nil
+    end
+
+    it 'returns Alice for ALICE@MASTODON.SOCIAL' do
+      expect(Account.find_remote('ALICE', 'MASTODON.SOCIAL')).to_not be_nil
+    end
+
+    it 'does not return anything for a_ice@mastodon.social' do
+      expect(Account.find_remote('a_ice', 'mastodon.social')).to be_nil
+    end
+
+    it 'does not return anything for alice@m_stodon.social' do
+      expect(Account.find_remote('alice', 'm_stodon.social')).to be_nil
+    end
+
+    it 'does not return anything for alice@m%' do
+      expect(Account.find_remote('alice', 'm%')).to be_nil
+    end
   end
 
   describe 'MENTION_RE' do