Skip to content

Commit 44f6bca

Browse files
committedMay 27, 2014
[STORE] Added integration tests for the Repository pattern
Related: elastic#71
1 parent 0e66341 commit 44f6bca

File tree

6 files changed

+294
-1
lines changed

6 files changed

+294
-1
lines changed
 

‎elasticsearch-persistence/elasticsearch-persistence.gemspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ Gem::Specification.new do |s|
2929
s.add_development_dependency "bundler", "~> 1.5"
3030
s.add_development_dependency "rake"
3131

32-
s.add_development_dependency "elasticsearch-extensions"
3332
s.add_development_dependency "oj"
33+
s.add_development_dependency "virtus"
34+
35+
s.add_development_dependency "elasticsearch-extensions"
3436

3537
s.add_development_dependency "shoulda-context"
3638
s.add_development_dependency "mocha"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
require 'test_helper'
2+
3+
module Elasticsearch
4+
module Persistence
5+
class RepositoryCustomClassIntegrationTest < Elasticsearch::Test::IntegrationTestCase
6+
7+
class ::MyNote
8+
attr_reader :attributes
9+
10+
def initialize(attributes={})
11+
@attributes = Hashie::Mash.new(attributes)
12+
end
13+
14+
def method_missing(method_name, *arguments, &block)
15+
attributes.respond_to?(method_name) ? attributes.__send__(method_name, *arguments, &block) : super
16+
end
17+
18+
def respond_to?(method_name, include_private=false)
19+
attributes.respond_to?(method_name) || super
20+
end
21+
22+
def to_hash
23+
@attributes
24+
end
25+
end
26+
27+
context "A custom repository class" do
28+
setup do
29+
class ::MyNotesRepository
30+
include Elasticsearch::Persistence::Repository
31+
32+
klass MyNote
33+
34+
settings number_of_shards: 1 do
35+
mapping do
36+
indexes :title, analyzer: 'snowball'
37+
end
38+
end
39+
40+
create_index!
41+
42+
def deserialize(document)
43+
klass.new document.merge(document['_source'])
44+
end
45+
end
46+
47+
@repository = MyNotesRepository.new
48+
49+
@repository.client.cluster.health wait_for_status: 'yellow'
50+
end
51+
52+
should "save the object under a correct index and type" do
53+
@repository.save MyNote.new(id: '1', title: 'Test')
54+
result = @repository.find(1)
55+
56+
assert_instance_of MyNote, result
57+
assert_equal 'Test', result.title
58+
59+
assert_not_nil Elasticsearch::Persistence.client.get index: 'my_notes_repository',
60+
type: 'my_note',
61+
id: '1'
62+
end
63+
64+
should "delete the object" do
65+
note = MyNote.new id: 1, title: 'Test'
66+
@repository.save note
67+
68+
assert_not_nil @repository.find(1)
69+
70+
@repository.delete(note)
71+
assert_raise(Elasticsearch::Persistence::Repository::DocumentNotFound) { @repository.find(1) }
72+
end
73+
74+
should "retrieve the object via a search query" do
75+
note = MyNote.new title: 'Testing'
76+
@repository.save note, refresh: true
77+
78+
results = @repository.search query: { match: { title: 'Test' } }
79+
assert_equal 'Testing', results.first.title
80+
end
81+
end
82+
83+
end
84+
end
85+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
require 'test_helper'
2+
3+
module Elasticsearch
4+
module Persistence
5+
class RepositoryCustomizedClassIntegrationTest < Elasticsearch::Test::IntegrationTestCase
6+
7+
module ::My
8+
class Note
9+
attr_reader :attributes
10+
11+
def initialize(attributes={})
12+
@attributes = attributes
13+
end
14+
15+
def to_hash
16+
@attributes
17+
end
18+
end
19+
end
20+
21+
context "A custom repository class" do
22+
setup do
23+
@repository = Elasticsearch::Persistence::Repository.new do
24+
index 'my_notes'
25+
type 'my_note'
26+
klass My::Note
27+
28+
settings number_of_shards: 1 do
29+
mapping do
30+
indexes :title, analyzer: 'snowball'
31+
end
32+
end
33+
34+
create_index!
35+
end
36+
37+
@repository.client.cluster.health wait_for_status: 'yellow'
38+
end
39+
40+
should "save the object under a correct index and type" do
41+
@repository.save My::Note.new(id: '1', title: 'Test')
42+
43+
assert_instance_of My::Note, @repository.find(1)
44+
assert_not_nil Elasticsearch::Persistence.client.get index: 'my_notes', type: 'my_note', id: '1'
45+
end
46+
47+
should "delete the object" do
48+
note = My::Note.new id: 1, title: 'Test'
49+
@repository.save note
50+
51+
assert_not_nil @repository.find(1)
52+
53+
@repository.delete(note)
54+
assert_raise(Elasticsearch::Persistence::Repository::DocumentNotFound) { @repository.find(1) }
55+
end
56+
57+
should "create the index with correct mapping" do
58+
note = My::Note.new title: 'Testing'
59+
@repository.save note, refresh: true
60+
61+
results = @repository.search query: { match: { title: 'Test' } }
62+
assert_equal 'Testing', results.first.attributes['title']
63+
end
64+
end
65+
66+
end
67+
end
68+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
require 'test_helper'
2+
3+
module Elasticsearch
4+
module Persistence
5+
class RepositoryDefaultClassIntegrationTest < Elasticsearch::Test::IntegrationTestCase
6+
7+
class ::Note
8+
attr_reader :attributes
9+
10+
def initialize(attributes={})
11+
@attributes = attributes
12+
end
13+
14+
def to_hash
15+
@attributes
16+
end
17+
end
18+
19+
context "The default repository class" do
20+
setup do
21+
@repository = Elasticsearch::Persistence::Repository.new
22+
@repository.client.cluster.health wait_for_status: 'yellow'
23+
end
24+
25+
should "save the object with a custom ID and find it" do
26+
@repository.save Note.new(id: '1', title: 'Test')
27+
28+
assert_equal 'Test', @repository.find(1).attributes['title']
29+
end
30+
31+
should "save the object with an auto-generated ID and find it" do
32+
response = @repository.save Note.new(title: 'Test')
33+
34+
assert_equal 'Test', @repository.find(response['_id']).attributes['title']
35+
end
36+
37+
should "delete an object" do
38+
note = Note.new(id: '1', title: 'Test')
39+
40+
@repository.save(note)
41+
assert_not_nil @repository.find(1)
42+
@repository.delete(note)
43+
assert_raise(Elasticsearch::Persistence::Repository::DocumentNotFound) { @repository.find(1) }
44+
end
45+
46+
should "find multiple objects" do
47+
(1..5).each { |i| @repository.save Note.new(id: i, title: "Test #{i}") }
48+
49+
assert_equal 5, @repository.find(1, 2, 3, 4, 5).size
50+
assert_equal 5, @repository.find([1, 2, 3, 4, 5]).size
51+
end
52+
53+
should "pass options to save and find" do
54+
note = Note.new(id: '1', title: 'Test')
55+
@repository.save note, routing: 'ABC'
56+
57+
assert_raise Elasticsearch::Persistence::Repository::DocumentNotFound do
58+
@repository.find(1, routing: 'DEF')
59+
end
60+
61+
assert_nothing_raised do
62+
note = @repository.find(1, routing: 'ABC')
63+
assert_instance_of Note, note
64+
end
65+
end
66+
67+
should "find notes with full text search" do
68+
@repository.save Note.new(title: 'Test')
69+
@repository.save Note.new(title: 'Test Test')
70+
@repository.save Note.new(title: 'Crust')
71+
@repository.client.indices.refresh index: @repository.index_name
72+
73+
results = @repository.search 'test'
74+
assert_equal 2, results.size
75+
76+
results = @repository.search query: { match: { title: 'Test' } }
77+
assert_equal 2, results.size
78+
end
79+
80+
should "save and find a plain hash" do
81+
@repository.save id: 1, title: 'Hash'
82+
result = @repository.find(1)
83+
assert_equal 'Hash', result['_source']['title']
84+
end
85+
end
86+
87+
end
88+
end
89+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
require 'test_helper'
2+
3+
require 'virtus'
4+
5+
module Elasticsearch
6+
module Persistence
7+
class RepositoryWithVirtusIntegrationTest < Elasticsearch::Test::IntegrationTestCase
8+
9+
class ::Page
10+
include Virtus.model
11+
12+
attribute :title, String
13+
attribute :views, Integer, default: 0
14+
attribute :published, Boolean, default: false
15+
attribute :slug, String, default: lambda { |page, attribute| page.title.downcase.gsub(' ', '-') }
16+
end
17+
18+
context "The repository with a Virtus model" do
19+
setup do
20+
@repository = Elasticsearch::Persistence::Repository.new do
21+
index :pages
22+
end
23+
end
24+
25+
should "save and find the object" do
26+
page = Page.new title: 'Test Page'
27+
28+
response = @repository.save page
29+
id = response['_id']
30+
31+
result = @repository.find(id)
32+
33+
assert_instance_of Page, result
34+
assert_equal 'Test Page', result.title
35+
assert_equal 0, result.views
36+
37+
assert_not_nil Elasticsearch::Persistence.client.get index: 'pages',
38+
type: 'page',
39+
id: id
40+
end
41+
end
42+
43+
end
44+
end
45+
end

‎elasticsearch-persistence/test/test_helper.rb

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ def setup
3737
host: "localhost:#{(ENV['TEST_CLUSTER_PORT'] || 9250)}",
3838
tracer: (ENV['QUIET'] ? nil : tracer)
3939
end
40+
41+
def teardown
42+
Elasticsearch::Persistence.client.indices.delete index: '_all'
43+
end
4044
end
4145
end
4246
end

0 commit comments

Comments
 (0)
Please sign in to comment.