# 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 sqlite3

from elasticsearch import Elasticsearch

from newrelic.api.background_task import background_task

from testing_support.db_settings import elasticsearch_settings
from testing_support.validators.validate_database_duration import validate_database_duration

ES_SETTINGS = elasticsearch_settings()[0]
ES_URL = 'http://%s:%s' % (ES_SETTINGS['host'], ES_SETTINGS['port'])

def _exercise_es(es):
    es.index(index="contacts", doc_type="person",
            body={"name": "Joe Tester", "age": 25, "title": "QA Engineer"}, id=1)
    es.index(index="contacts", doc_type="person",
            body={"name": "Jessica Coder", "age": 32, "title": "Programmer"}, id=2)
    es.index(index="contacts", doc_type="person",
            body={"name": "Freddy Tester", "age": 29, "title": "Assistant"}, id=3)
    es.indices.refresh('contacts')

@validate_database_duration()
@background_task()
def test_elasticsearch_database_duration():
    client = Elasticsearch(ES_URL)
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest

from elasticsearch import Elasticsearch
from elasticsearch.connection_pool import RoundRobinSelector

from testing_support.fixtures import (validate_transaction_metrics,
                                      override_application_settings)
from testing_support.db_settings import elasticsearch_settings
from testing_support.util import instance_hostname

from newrelic.api.background_task import background_task

ES_MULTIPLE_SETTINGS = elasticsearch_settings()

# Settings

_enable_instance_settings = {
    'datastore_tracer.instance_reporting.enabled': True,
}
_disable_instance_settings = {
    'datastore_tracer.instance_reporting.enabled': False,
}

# Metrics

_base_scoped_metrics = (('Datastore/statement/Elasticsearch/contacts/index',
                         2), )