|
7 | 7 | const start = require('./common');
|
8 | 8 |
|
9 | 9 | const assert = require('assert');
|
| 10 | +const { randomUUID } = require('crypto'); |
10 | 11 | const utils = require('../lib/utils');
|
11 | 12 | const util = require('./util');
|
12 | 13 | const MongooseError = require('../lib/error/mongooseError');
|
@@ -11423,4 +11424,43 @@ describe('model: populate:', function() {
|
11423 | 11424 |
|
11424 | 11425 | await m.disconnect();
|
11425 | 11426 | });
|
| 11427 | + |
| 11428 | + it('handles populating UUID fields (gh-15315)', async function() { |
| 11429 | + const categorySchema = new Schema({ |
| 11430 | + _id: { type: 'UUID', default: () => randomUUID() }, |
| 11431 | + name: { type: String, required: true }, |
| 11432 | + desc: { type: String, required: true } |
| 11433 | + }); |
| 11434 | + |
| 11435 | + categorySchema.virtual('announcements', { |
| 11436 | + ref: 'Announcement', |
| 11437 | + localField: '_id', |
| 11438 | + foreignField: 'categories' |
| 11439 | + }); |
| 11440 | + |
| 11441 | + const announcementSchema = new Schema({ |
| 11442 | + _id: { type: 'UUID', default: () => randomUUID() }, |
| 11443 | + title: { type: String, required: true }, |
| 11444 | + content: { type: String, required: true }, |
| 11445 | + validUntil: { type: Date, required: true }, |
| 11446 | + important: { type: Boolean, default: false }, |
| 11447 | + categories: [{ type: 'UUID', ref: 'Category' }] |
| 11448 | + }); |
| 11449 | + |
| 11450 | + const Category = db.model('Category', categorySchema); |
| 11451 | + const Announcement = db.model('Announcement', announcementSchema); |
| 11452 | + |
| 11453 | + const category = await Category.create({ name: 'Tech', desc: 'Technology News' }); |
| 11454 | + |
| 11455 | + await Announcement.create({ |
| 11456 | + title: 'New Tech Release', |
| 11457 | + content: 'Details about the new tech release', |
| 11458 | + validUntil: new Date(), |
| 11459 | + categories: [category._id] |
| 11460 | + }); |
| 11461 | + |
| 11462 | + const populatedCategory = await Category.findOne({ _id: category._id }).populate('announcements'); |
| 11463 | + assert.strictEqual(populatedCategory.announcements.length, 1); |
| 11464 | + assert.strictEqual(populatedCategory.announcements[0].title, 'New Tech Release'); |
| 11465 | + }); |
11426 | 11466 | });
|
0 commit comments