2016-11-04 19:12:59 +01:00
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
|
|
RSpec.describe Tag, type: :model do
|
2017-07-14 11:02:49 +02:00
|
|
|
|
describe 'validations' do
|
|
|
|
|
it 'invalid with #' do
|
|
|
|
|
expect(Tag.new(name: '#hello_world')).to_not be_valid
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'invalid with .' do
|
|
|
|
|
expect(Tag.new(name: '.abcdef123')).to_not be_valid
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'invalid with spaces' do
|
|
|
|
|
expect(Tag.new(name: 'hello world')).to_not be_valid
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'valid with aesthetic' do
|
|
|
|
|
expect(Tag.new(name: 'aesthetic')).to be_valid
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-03-05 18:08:19 +01:00
|
|
|
|
describe 'HASHTAG_RE' do
|
|
|
|
|
subject { Tag::HASHTAG_RE }
|
2016-11-15 23:56:03 +01:00
|
|
|
|
|
2017-03-05 18:08:19 +01:00
|
|
|
|
it 'does not match URLs with anchors with non-hashtag characters' do
|
|
|
|
|
expect(subject.match('Check this out https://medium.com/@alice/some-article#.abcdef123')).to be_nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'does not match URLs with hashtag-like anchors' do
|
|
|
|
|
expect(subject.match('https://en.wikipedia.org/wiki/Ghostbusters_(song)#Lawsuit')).to be_nil
|
|
|
|
|
end
|
2017-06-23 17:01:53 +02:00
|
|
|
|
|
|
|
|
|
it 'matches #aesthetic' do
|
|
|
|
|
expect(subject.match('this is #aesthetic')).to_not be_nil
|
|
|
|
|
end
|
2017-03-05 18:08:19 +01:00
|
|
|
|
end
|
2017-04-09 14:45:01 +02:00
|
|
|
|
|
2017-11-15 16:04:41 +01:00
|
|
|
|
describe '#to_param' do
|
|
|
|
|
it 'returns name' do
|
|
|
|
|
tag = Fabricate(:tag, name: 'foo')
|
|
|
|
|
expect(tag.to_param).to eq 'foo'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-04-09 14:45:01 +02:00
|
|
|
|
describe '.search_for' do
|
|
|
|
|
it 'finds tag records with matching names' do
|
|
|
|
|
tag = Fabricate(:tag, name: "match")
|
|
|
|
|
_miss_tag = Fabricate(:tag, name: "miss")
|
|
|
|
|
|
|
|
|
|
results = Tag.search_for("match")
|
|
|
|
|
|
|
|
|
|
expect(results).to eq [tag]
|
|
|
|
|
end
|
2017-06-06 16:07:06 +02:00
|
|
|
|
|
2017-07-13 19:31:33 +02:00
|
|
|
|
it 'finds tag records in case insensitive' do
|
|
|
|
|
tag = Fabricate(:tag, name: "MATCH")
|
|
|
|
|
_miss_tag = Fabricate(:tag, name: "miss")
|
|
|
|
|
|
|
|
|
|
results = Tag.search_for("match")
|
|
|
|
|
|
|
|
|
|
expect(results).to eq [tag]
|
|
|
|
|
end
|
|
|
|
|
|
2017-06-06 16:07:06 +02:00
|
|
|
|
it 'finds the exact matching tag as the first item' do
|
|
|
|
|
similar_tag = Fabricate(:tag, name: "matchlater")
|
|
|
|
|
tag = Fabricate(:tag, name: "match")
|
|
|
|
|
|
|
|
|
|
results = Tag.search_for("match")
|
|
|
|
|
|
|
|
|
|
expect(results).to eq [tag, similar_tag]
|
|
|
|
|
end
|
2017-04-09 14:45:01 +02:00
|
|
|
|
end
|
2016-11-04 19:12:59 +01:00
|
|
|
|
end
|