blob: 1cc22311568e3956230c7ad2805476afa1534e9b [file] [log] [blame]
// 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.
const Nano = require('..')
const COUCH_URL = 'http://localhost:5984'
const nano = Nano(COUCH_URL)
const nock = require('nock')
afterEach(() => {
nock.cleanAll()
})
test('should be able to access a search index - POST /db/_design/ddoc/_search/searchname - db.search', async () => {
// mocks
const response = {
total_rows: 100000,
bookmark: 'g123',
rows: [
{ a: 1, b: 2 }
]
}
const params = { q: '*:*' }
const scope = nock(COUCH_URL)
.post('/db/_design/ddoc/_search/searchname', params)
.reply(200, response)
// test POST /db/_design/ddoc/_search/searchnameGET /db
const db = nano.db.use('db')
const p = await db.search('ddoc', 'searchname', params)
expect(p).toStrictEqual(response)
expect(scope.isDone()).toBe(true)
})
test('should be able to handle 404 - db.search', async () => {
// mocks
const response = {
error: 'not_found',
reason: 'missing'
}
const params = { q: '*:*' }
const scope = nock(COUCH_URL)
.post('/db/_design/ddoc/_search/searchname', params)
.reply(404, response)
// test POST /db/_design/ddoc/_search/searchname
const db = nano.db.use('db')
await expect(db.search('ddoc', 'searchname', params)).rejects.toThrow('missing')
expect(scope.isDone()).toBe(true)
})
test('should detect missing parameters - db.search', async () => {
const db = nano.db.use('db')
await expect(db.search()).rejects.toThrow('Invalid parameters')
await expect(db.search('susan')).rejects.toThrow('Invalid parameters')
await expect(db.search('susan', '')).rejects.toThrow('Invalid parameters')
await expect(db.search('', 'susan')).rejects.toThrow('Invalid parameters')
})
test('should detect missing parameters (callback) - db.search', () => {
const db = nano.db.use('db')
return new Promise((resolve, reject) => {
db.search('', '', (err, data) => {
expect(err).not.toBeNull()
resolve()
})
})
})