add new tables and models for join through association

This commit is contained in:
Bilal
2020-04-29 07:22:03 +02:00
parent fe96f682db
commit e0fae50584
3 changed files with 101 additions and 6 deletions

View File

@@ -161,9 +161,9 @@ describe PgSearchable do
describe 'searching in model with has_many association' do
before do
records = DynamicModelWithTagValues.create [{ name: 'something', value: 'amazing' },
{ name: 'new record', value: 'not so amazing' },
{ name: 'last one', value: 'no value' },
{ name: 'really last one', value: 'no value' }]
{ name: 'new record', value: 'not so amazing' },
{ name: 'last one', value: 'no value' },
{ name: 'really last one', value: 'no value' }]
Tag.create [{ taggable: records[0], value: 'red', custom_attribute: 'rose' },
{ taggable: records[0], value: 'green', custom_attribute: 'garden' },
@@ -242,9 +242,9 @@ describe PgSearchable do
describe 'searching in model with multiple has_many associations' do
before do
records = DynamicModelWithTagAndCategories.create [{ name: 'something', value: 'amazing' },
{ name: 'new record', value: 'not so amazing' },
{ name: 'last one', value: 'no value' },
{ name: 'really last one', value: 'no value' }]
{ name: 'new record', value: 'not so amazing' },
{ name: 'last one', value: 'no value' },
{ name: 'really last one', value: 'no value' }]
Tag.create [{ taggable: records[0], value: 'red', custom_attribute: 'rose' },
{ taggable: records[0], value: 'green', custom_attribute: 'garden' },
@@ -285,6 +285,68 @@ describe PgSearchable do
expect(DynamicModelWithTagAndCategories.scope_search('(tag:- and not tag:12) or (value:"amazing" and not value:"not") or (category:unknown or category:math)')).to contain_exactly(records[0], records[2], records[3])
end
end
describe 'joins with through association' do
let(:players) { Player.all }
before do
players = Player.create([{ name: 'first', value: 'downtown' },
{ name: 'redliner', value: 'uptown' },
{ name: 'flying', value: 'eagle' },
{ name: 'blue', value: 'marine' }])
ptags = Ptag.create [{ value: 'e-ink' },
{ value: 'black&white' },
{ value: 'rich' },
{ value: 'grayscale' },
{ value: 'LED' }]
players[0].ptags << ptags[0..1]
players[1].ptags << ptags[0..2]
players[2].ptags << ptags[2..3]
players[3].ptags << ptags[4]
end
it 'can search in default column of model with through association' do
expect(Player.scope_search('l and not y and not blue')).to contain_exactly(players[1])
end
it 'can search in referenced column associated with through relation - simple search' do
expect(Player.scope_search('tag:e-ink')).to contain_exactly(players[0], players[1])
end
it 'can search in referenced column associated with through relaction - simple search with OR operator' do
expect(Player.scope_search('tag:e-ink OR tag:rich')).to contain_exactly(players[0], players[1], players[2])
end
it 'can search in referenced column associated with through relaction - simple search with AND operator' do
expect(Player.scope_search('tag:e-ink AND tag:rich')).to contain_exactly(players[1])
end
it 'can search in referenced column associated with through relaction - simple search with NOT operator' do
puts "==========="
puts Player.scope_search('NOT tag:e-ink').inspect
puts "==============="
expect(Player.scope_search('NOT tag:e-ink')).to contain_exactly(players[2], players[3])
end
it 'can search in referenced column associated with through relaction - mixed search terms with OR' do
expect(Player.scope_search('tag:e-ink OR blue')).to contain_exactly(players[0], players[1], players[3])
end
it 'can search in referenced column associated with through relaction - mixed search terms with AND' do
expect(Player.scope_search('tag:e-ink AND first')).to contain_exactly(players[0])
end
it 'can search in referenced column associated with through relaction - mixed search terms with OR NOT' do
expect(Player.scope_search('tag:led OR NOT first')).to contain_exactly(players[1], players[2], players[3])
end
it 'can search in referenced column associated with through relaction - mixed search terms with AND NOT' do
expect(Player.scope_search('tag:e-ink AND NOT first')).to contain_exactly(players[1])
end
end
end
end
end