Files
opensearch-pyd/test_opensearchpy/test_client/test_plugins/test_plugins_client.py
T

26 lines
882 B
Python
Raw Normal View History

# SPDX-License-Identifier: Apache-2.0
#
# The OpenSearch Contributors require contributions made to
# this file be licensed under the Apache-2.0 license or a
# compatible open source license.
#
# Modifications Copyright OpenSearch Contributors. See
# GitHub history for details.
from opensearchpy.client import OpenSearch
from ...test_cases import TestCase
class TestPluginsClient(TestCase):
2023-11-06 13:08:19 -05:00
def test_plugins_client(self) -> None:
with self.assertWarns(Warning) as w:
client = OpenSearch()
# double-init
client.plugins.__init__(client) # type: ignore # pylint: disable=unnecessary-dunder-call
self.assertEqual(
str(w.warnings[0].message),
2024-01-19 13:36:05 -05:00
"Cannot load `alerting` directly to OpenSearch as "
"it already exists. Use `OpenSearch.plugin.alerting` instead.",
)