/* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you 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 { test } from 'tap' import { connection } from '../utils' import { Client } from '../..' import * as T from '../../lib/api/types' test('Api with top level body', async t => { t.plan(2) const Connection = connection.buildMockConnection({ onRequest (opts) { // @ts-expect-error t.same(JSON.parse(opts.body), { query: { match_all: {} } }) return { statusCode: 200, body: { took: 42 } } } }) const client = new Client({ node: 'http://localhost:9200', Connection }) const response = await client.search({ index: 'test', allow_no_indices: true, query: { match_all: {} } }) t.equal(response.took, 42) }) test('Api with keyed body', async t => { t.plan(2) const Connection = connection.buildMockConnection({ onRequest (opts) { // @ts-expect-error t.same(JSON.parse(opts.body), { foo: 'bar' }) return { statusCode: 200, body: { result: 'created' } } } }) const client = new Client({ node: 'http://localhost:9200', Connection }) const response = await client.create({ index: 'test', id: '1', document: { foo: 'bar' } }) t.equal(response.result, 'created') }) test('With generic document', async t => { t.plan(1) interface Doc { foo: string } const Connection = connection.buildMockConnection({ onRequest (_opts) { return { statusCode: 200, body: { took: 42, hits: { hits: [{ _source: { foo: 'bar' } }] }, aggregations: { unique: { buckets: [{ key: 'bar' }] } } } } } }) const client = new Client({ node: 'http://localhost:9200', Connection }) const response = await client.search({ index: 'test', allow_no_indices: true, query: { match_all: {} }, aggregations: { unique: { terms: { field: 'foo' } } } }) t.equal(response.hits.hits[0]._source?.foo, 'bar') }) test('With generic document and aggregation', async t => { t.plan(2) interface Doc { foo: string } interface Aggregations { unique: T.AggregationsTermsAggregateBase<{ key: string }> } const Connection = connection.buildMockConnection({ onRequest (opts) { return { statusCode: 200, body: { took: 42, hits: { hits: [{ _source: { foo: 'bar' } }] }, aggregations: { unique: { buckets: [{ key: 'bar' }] } } } } } }) const client = new Client({ node: 'http://localhost:9200', Connection }) const response = await client.search({ index: 'test', allow_no_indices: true, query: { match_all: {} }, aggregations: { unique: { terms: { field: 'foo' } } } }) t.equal(response.hits.hits[0]._source?.foo, 'bar') t.ok(Array.isArray(response.aggregations?.unique.buckets)) })