-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathconftest.py
56 lines (45 loc) · 1.96 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 2010 New Relic, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
from testing_support.db_settings import elasticsearch_settings
from testing_support.fixtures import ( # noqa: F401; pylint: disable=W0611
collector_agent_registration_fixture,
collector_available_fixture,
)
from newrelic.common.package_version_utils import get_package_version
_default_settings = {
"package_reporting.enabled": False, # Turn off package reporting for testing as it causes slow downs.
"transaction_tracer.explain_threshold": 0.0,
"transaction_tracer.transaction_threshold": 0.0,
"transaction_tracer.stack_trace_threshold": 0.0,
"debug.log_data_collector_payloads": True,
"debug.record_transaction_failure": True,
}
collector_agent_registration = collector_agent_registration_fixture(
app_name="Python Agent Test (datastore_elasticsearch)",
default_settings=_default_settings,
linked_applications=["Python Agent Test (datastore)"],
)
ES_VERSION = tuple([int(n) for n in get_package_version("elasticsearch").split(".")])
ES_SETTINGS = elasticsearch_settings()[0]
ES_MULTIPLE_SETTINGS = elasticsearch_settings()
ES_URL = f"http://{ES_SETTINGS['host']}:{ES_SETTINGS['port']}"
@pytest.fixture(scope="session")
def client():
from elasticsearch import Elasticsearch
return Elasticsearch(ES_URL)
@pytest.fixture(scope="session")
def async_client():
from elasticsearch import AsyncElasticsearch
return AsyncElasticsearch(ES_URL)