|
| 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 |
0 commit comments