tag_spec.rb 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe Tag do
  4. describe 'validations' do
  5. it 'invalid with #' do
  6. expect(described_class.new(name: '#hello_world')).to_not be_valid
  7. end
  8. it 'invalid with .' do
  9. expect(described_class.new(name: '.abcdef123')).to_not be_valid
  10. end
  11. it 'invalid with spaces' do
  12. expect(described_class.new(name: 'hello world')).to_not be_valid
  13. end
  14. it 'valid with aesthetic' do
  15. expect(described_class.new(name: 'aesthetic')).to be_valid
  16. end
  17. end
  18. describe 'HASHTAG_RE' do
  19. subject { Tag::HASHTAG_RE }
  20. it 'does not match URLs with anchors with non-hashtag characters' do
  21. expect(subject.match('Check this out https://medium.com/@alice/some-article#.abcdef123')).to be_nil
  22. end
  23. it 'does not match URLs with hashtag-like anchors' do
  24. expect(subject.match('https://en.wikipedia.org/wiki/Ghostbusters_(song)#Lawsuit')).to be_nil
  25. end
  26. it 'matches #aesthetic' do
  27. expect(subject.match('this is #aesthetic').to_s).to eq ' #aesthetic'
  28. end
  29. it 'matches digits at the start' do
  30. expect(subject.match('hello #3d').to_s).to eq ' #3d'
  31. end
  32. it 'matches digits in the middle' do
  33. expect(subject.match('hello #l33ts35k').to_s).to eq ' #l33ts35k'
  34. end
  35. it 'matches digits at the end' do
  36. expect(subject.match('hello #world2016').to_s).to eq ' #world2016'
  37. end
  38. it 'matches underscores at the beginning' do
  39. expect(subject.match('hello #_test').to_s).to eq ' #_test'
  40. end
  41. it 'matches underscores at the end' do
  42. expect(subject.match('hello #test_').to_s).to eq ' #test_'
  43. end
  44. it 'matches underscores in the middle' do
  45. expect(subject.match('hello #one_two_three').to_s).to eq ' #one_two_three'
  46. end
  47. it 'matches middle dots' do
  48. expect(subject.match('hello #one·two·three').to_s).to eq ' #one·two·three'
  49. end
  50. it 'matches ・unicode in ぼっち・ざ・ろっく correctly' do
  51. expect(subject.match('testing #ぼっち・ざ・ろっく').to_s).to eq ' #ぼっち・ざ・ろっく'
  52. end
  53. it 'matches ZWNJ' do
  54. expect(subject.match('just add #نرم‌افزار and').to_s).to eq ' #نرم‌افزار'
  55. end
  56. it 'does not match middle dots at the start' do
  57. expect(subject.match('hello #·one·two·three')).to be_nil
  58. end
  59. it 'does not match middle dots at the end' do
  60. expect(subject.match('hello #one·two·three·').to_s).to eq ' #one·two·three'
  61. end
  62. it 'does not match purely-numeric hashtags' do
  63. expect(subject.match('hello #0123456')).to be_nil
  64. end
  65. end
  66. describe '#to_param' do
  67. it 'returns name' do
  68. tag = Fabricate(:tag, name: 'foo')
  69. expect(tag.to_param).to eq 'foo'
  70. end
  71. end
  72. describe '.find_normalized' do
  73. it 'returns tag for a multibyte case-insensitive name' do
  74. upcase_string = 'abcABCabcABCやゆよ'
  75. downcase_string = 'abcabcabcabcやゆよ'
  76. tag = Fabricate(:tag, name: HashtagNormalizer.new.normalize(downcase_string))
  77. expect(described_class.find_normalized(upcase_string)).to eq tag
  78. end
  79. end
  80. describe '.matches_name' do
  81. it 'returns tags for multibyte case-insensitive names' do
  82. upcase_string = 'abcABCabcABCやゆよ'
  83. downcase_string = 'abcabcabcabcやゆよ'
  84. tag = Fabricate(:tag, name: HashtagNormalizer.new.normalize(downcase_string))
  85. expect(described_class.matches_name(upcase_string)).to eq [tag]
  86. end
  87. it 'uses the LIKE operator' do
  88. result = %q[SELECT "tags".* FROM "tags" WHERE LOWER("tags"."name") LIKE LOWER('100abc%')]
  89. expect(described_class.matches_name('100%abc').to_sql).to eq result
  90. end
  91. end
  92. describe '.matching_name' do
  93. it 'returns tags for multibyte case-insensitive names' do
  94. upcase_string = 'abcABCabcABCやゆよ'
  95. downcase_string = 'abcabcabcabcやゆよ'
  96. tag = Fabricate(:tag, name: HashtagNormalizer.new.normalize(downcase_string))
  97. expect(described_class.matching_name(upcase_string)).to eq [tag]
  98. end
  99. end
  100. describe '.find_or_create_by_names' do
  101. let(:upcase_string) { 'abcABCabcABCやゆよ' }
  102. let(:downcase_string) { 'abcabcabcabcやゆよ' }
  103. it 'runs a passed block once per tag regardless of duplicates' do
  104. count = 0
  105. described_class.find_or_create_by_names([upcase_string, downcase_string]) do |_tag|
  106. count += 1
  107. end
  108. expect(count).to eq 1
  109. end
  110. end
  111. describe '.search_for' do
  112. it 'finds tag records with matching names' do
  113. tag = Fabricate(:tag, name: 'match')
  114. _miss_tag = Fabricate(:tag, name: 'miss')
  115. results = described_class.search_for('match')
  116. expect(results).to eq [tag]
  117. end
  118. it 'finds tag records in case insensitive' do
  119. tag = Fabricate(:tag, name: 'MATCH')
  120. _miss_tag = Fabricate(:tag, name: 'miss')
  121. results = described_class.search_for('match')
  122. expect(results).to eq [tag]
  123. end
  124. it 'finds the exact matching tag as the first item' do
  125. similar_tag = Fabricate(:tag, name: 'matchlater', reviewed_at: Time.now.utc)
  126. tag = Fabricate(:tag, name: 'match', reviewed_at: Time.now.utc)
  127. results = described_class.search_for('match')
  128. expect(results).to eq [tag, similar_tag]
  129. end
  130. end
  131. end