Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support custom types exported from driver #15325

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/mongoose.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ Mongoose.prototype.setDriver = function setDriver(driver) {
}
}

if (driver.Types != null) {
Object.assign(mongoose.Schema.Types, driver.Types);
}

const Connection = driver.Connection;
const oldDefaultConnection = _mongoose.connections[0];
_mongoose.connections = [new Connection(_mongoose)];
Expand Down
24 changes: 20 additions & 4 deletions test/driver.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('driver', function() {

class Collection {
findOne(filter, options) { // eslint-disable-line no-unused-vars
return Promise.resolve({ answer: 42 });
return Promise.resolve({ answer: 42, date: '2023-10-01' });
}
}
class Connection extends EventEmitter {
Expand All @@ -35,18 +35,34 @@ describe('driver', function() {
const driver = {
Collection,
Connection,
plugins: [foo]
plugins: [foo],
Types: {
DateString: class DateString extends mongoose.SchemaType {
constructor(key, options) {
super(key, options, 'DateString');
}

cast(val) {
if (typeof val !== 'string' || !/^\d{4}-\d{2}-\d{2}$/.test(val)) {
throw new Error('DateString must be in format yyyy-mm-dd');
}
return val;
}
}
}
};

m.setDriver(driver);
assert.deepStrictEqual(m.plugins.slice(mongoose.plugins.length), [[foo, undefined]]);

await m.connect();

const Test = m.model('Test', m.Schema({ answer: Number }));
const Test = m.model('Test', m.Schema({ answer: Number, date: 'DateString' }));

const res = await Test.findOne();
assert.deepEqual(res.toObject(), { answer: 42 });
assert.deepEqual(res.toObject(), { answer: 42, date: '2023-10-01' });

await assert.rejects(Test.create({ answer: 12, date: '2025-01' }), /path "date"/);

function foo() {}
});
Expand Down
Loading