MongoDB 인터페이스를 사용하여 Azure의 CosmosDB를 탐색 중입니다. Jest를 사용하여 다음 테스트를 작성했습니다. 대부분의 다른 테스트에서는 CosmosDB URL에 대한 MongoDB URL을 바꿀 수 있으며 실행 및 통과 할 것입니다. 이 테스트는 MongoDB를 향하고 때 통과하고 CosmosDB URL로 실패CosmosDB 지형 공간 쿼리가 아무 것도 반환하지 않음
const { MongoClient } = require('mongodb')
let client, db, collection
const url = 'mongodb://localhost:27017'
const dbName = 'test'
describe('talking to mongodb',() => {
beforeEach(async() => {
client = await MongoClient.connect(url)
db = client.db(dbName)
collection = db.collection('cities')
await collection.createIndex({ location: '2dsphere' })
})
afterEach(async() => {
await collection.drop()
client.close()
})
it('it can find geocoded things', async() => {
await collection.insertMany([
{
city: 'Ottawa, Canada',
location: {
type: 'Point',
coordinates: [-75.69719309999999, 45.4215296],
},
bbox: [-76.35391589999999, 44.962733, -75.2465979, 45.5375801],
},
{
city: 'Moscow, Russia',
location: { type: 'Point', coordinates: [37.6172999, 55.755826] },
bbox: [37.3193289, 55.48992699999999, 37.9456611, 56.009657],
},
])
let cursor = await collection.find({
location: {
$near: { type: 'Point', coordinates: [-79.3831843, 43.653226] },
$maxDistance: 500000,
},
})
let [doc] = await cursor.toArray()
expect(doc.city).toEqual('Ottawa, Canada')
})
})
이 테스트는 다음과 같은 오류와 함께 실패합니다
● talking to mongodb › it can find geocoded things
MongoError: Request is malformed
at node_modules/mongodb-core/lib/cursor.js:769:34
at handleCallback (node_modules/mongodb-core/lib/cursor.js:178:5)
at setCursorDeadAndNotified (node_modules/mongodb-core/lib/cursor.js:545:3)
at nextFunction (node_modules/mongodb-core/lib/cursor.js:768:14)
at node_modules/mongodb-core/lib/cursor.js:665:7
at queryCallback (node_modules/mongodb-core/lib/cursor.js:263:5)
at node_modules/mongodb-core/lib/connection/pool.js:542:18
이 명심, 그 쿼리가 MongoDB를 작동합니다.
db.cities.find({"location": { $near:{ $geometry: { type: "Point", coordinates: [-79.3831843, 43.653226] }, $maxDistance: 500000 }}})
해당 쿼리가 CosmosDB에 아무 것도 반환하지 않습니다 그러나 : 약간의 땜질로 나는 MongoDB를 작동하고, CosmosDB에서 오류를 생성하지 않는 쿼리를 얻을 수 있습니다.
결과를 반환하고 CosmosDB를 통과하는 테스트를 받으려면 어떻게해야합니까?