Skip to content

Commit 5251a52

Browse files
committed
[MODEL] Changed the naming inheritance logic to use Elasticsearch::Model.settings
This patch removes the `Elasticsearch::Model.inheritance_enabled` method added in b8455db, and changes the logic to use the `settings` for the module. Related: elastic#332
1 parent 2a08d09 commit 5251a52

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

elasticsearch-model/lib/elasticsearch/model/naming.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def document_type=(name)
7575
def implicit(prop)
7676
value = nil
7777

78-
if Elasticsearch::Model.inheritance_enabled
78+
if Elasticsearch::Model.settings[:inheritance_enabled]
7979
self.ancestors.each do |klass|
8080
next if klass == self
8181
break if value = klass.respond_to?(prop) && klass.send(prop)

elasticsearch-model/test/unit/naming_inheritance_test.rb

+18-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
class Elasticsearch::Model::NamingInheritanceTest < Test::Unit::TestCase
44
def setup
5-
Elasticsearch::Model.inheritance_enabled = true
5+
Elasticsearch::Model.settings[:inheritance_enabled] = true
66
end
77

88
def teardown
9-
Elasticsearch::Model.inheritance_enabled = false
9+
Elasticsearch::Model.settings[:inheritance_enabled] = false
1010
end
1111

1212
context "Naming module with inheritance" do
@@ -35,6 +35,16 @@ class Dog < ::Animal
3535
end
3636
end
3737

38+
class ::Cat < ::Animal
39+
extend ActiveModel::Naming
40+
41+
extend Elasticsearch::Model::Naming::ClassMethods
42+
include Elasticsearch::Model::Naming::InstanceMethods
43+
44+
index_name "cats"
45+
document_type "cat"
46+
end
47+
3848
should "return the default index_name" do
3949
assert_equal "test_bases", TestBase.index_name
4050
assert_equal "test_bases", TestBase.new.index_name
@@ -43,6 +53,9 @@ class Dog < ::Animal
4353
should "return the explicit index_name" do
4454
assert_equal "mammals", Animal.index_name
4555
assert_equal "mammals", Animal.new.index_name
56+
57+
assert_equal "cats", Cat.index_name
58+
assert_equal "cats", Cat.new.index_name
4659
end
4760

4861
should "return the ancestor index_name" do
@@ -63,6 +76,9 @@ class Dog < ::Animal
6376
should "return the explicit document_type" do
6477
assert_equal "mammal", Animal.document_type
6578
assert_equal "mammal", Animal.new.document_type
79+
80+
assert_equal "cat", Cat.document_type
81+
assert_equal "cat", Cat.new.document_type
6682
end
6783

6884
should "return the ancestor document_type" do

0 commit comments

Comments
 (0)