29 lines
1.3 KiB
Python
29 lines
1.3 KiB
Python
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
# See the LICENSE file in the project root for more information
|
|
|
|
from test_elasticsearch.test_cases import ElasticsearchTestCase
|
|
|
|
|
|
class TestIndices(ElasticsearchTestCase):
|
|
def test_create_one_index(self):
|
|
self.client.indices.create("test-index")
|
|
self.assert_url_called("PUT", "/test-index")
|
|
|
|
def test_delete_multiple_indices(self):
|
|
self.client.indices.delete(["test-index", "second.index", "third/index"])
|
|
self.assert_url_called("DELETE", "/test-index,second.index,third%2Findex")
|
|
|
|
def test_exists_index(self):
|
|
self.client.indices.exists("second.index,third/index")
|
|
self.assert_url_called("HEAD", "/second.index,third%2Findex")
|
|
|
|
def test_passing_empty_value_for_required_param_raises_exception(self):
|
|
self.assertRaises(ValueError, self.client.indices.exists, index=None)
|
|
self.assertRaises(ValueError, self.client.indices.exists, index=[])
|
|
self.assertRaises(ValueError, self.client.indices.exists, index="")
|
|
|
|
def test_put_mapping_without_index(self):
|
|
self.client.indices.put_mapping(doc_type="doc-type", body={})
|
|
self.assert_url_called("PUT", "/_all/doc-type/_mapping")
|