У меня есть следующие 3 коллекции:
1. runs:
{
"_id":ObjectId("5cda6191e1b7c889e0442dff"),
"status":1,
"runName":"My Run Test 01"
}
2. runsets:
{
"_id":ObjectId("5cda6191e1b7c889e0442e01"),
"_run":ObjectId("5cda6191e1b7c889e0442dff"),
"config": "Config 1",
"suites":[{
"_id":"ObjectId(5cda6191e1b7c889e0442e03"),
"suiteid":ObjectId("5c748822e0ae897b0c312719"),
"suitename":"My Test Suite 1",
"tests":[{
"_id":ObjectId("5cda6191e1b7c889e0442e04"),
"testid":ObjectId("5c746708cefe8d75349b6486"),
"testname":"Buy items with validations 002"
}]
}]
}
3. testresults:
{
"_id":ObjectId("5cda65f6e494c61d30cee49c"),
"_runset":ObjectId("5cda6191e1b7c889e0442e01"),
"_test":"ObjectId(5c746708cefe8d75349b6486)",
status: 1
}
Я хотел бы объединить 3 коллекции в документ, как показано ниже:
[
{
"_id": "5cda6191e1b7c889e0442dff",
"status": 1,
"runName": "My Run Test 01",
"runsetitems": [
{
"_id": "5cda6191e1b7c889e0442e01",
"_run": "5cda6191e1b7c889e0442dff",
"_config": "Config 1",
"suites": [
{
"_id": "5cda6191e1b7c889e0442e03",
"suiteid": "5c748822e0ae897b0c312719",
"suitename": "My Test Suite 1",
"suitedesc": "My Test Suite 1 Description",
"tests": [
{
"_id": "5cda6191e1b7c889e0442e04",
"testid": "5c746708cefe8d75349b6486",
"testname": "Buy items with validations 002",
"testdesc": "Buy more than one items and validate price",
"testitem": {
"status": 1
}
}
]
}
]
}
]
}
]
const run = await RunModel.aggregate([
{$match: {'_user': mongoose.Types.ObjectId('5c6c997de0a0b446e87c3389')}},
{
$lookup:
{
from: 'runsets',
let: { runid: '$_id' },
pipeline: [
{
$match:
{
$expr:
{
$eq: ['$_run', '$$runid']
}
}
}, {
$lookup:
{
from: 'testresults',
let: { runsetid: '$_id', testid: '$suites.tests.testid' },
pipeline: [
{
$match:
{
$expr:
{
$and:
[
{ $eq: [ '$_test', '$$testid' ] },
{ $eq: [ '$_runset', '$$runsetid' ] }
]
}
}
},
{$project : { 'status': 1 }}
],
as: 'suites.tests.testitem'
}
}
],
as: 'runsetitems'
}
},
{$project : { '_id': 1 , 'runName': 1, 'runDesc': 1, 'status': 1, 'submitTime': 1, 'endTime': 1, 'runsetitems': 1, 'projectitem.projectName': 1 } }
])
Но есть две проблемы:
Прежде всего, присоединение к _test и suites.tests.testid не работает.При включении возвращается testitem: [].
Если я удалил объединение, упомянутое выше, вернется testitem, но это создаст другую проблему.Это приведет к удалению атрибутов test 'testname' и 'testdesc', как показано ниже:
"tests": {
"testitem": [
{
"_id": "5cda67d4e494c61d30cee5d6",
"status": 1
}
]
}
Любое предложение будет высоко оценено!