summaryrefslogtreecommitdiff
path: root/jstests/core/SERVER-23626.js
blob: 1925cad4c2562c2b81de6dbf17a69b48922d4f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// @tags: [
//   # This test does not support tojson of command objects so the inject_tenant_prefix.js override
//   # cannot deep copy the command objects correctly.
//   tenant_migration_incompatible,
// ]

(function() {

"use strict";
var t = db.jstests_server23626;

t.mycoll.drop();
assert.commandWorked(t.mycoll.insert({_id: 0, a: Date.prototype}));
assert.eq(1, t.mycoll.find({a: {$type: 'date'}}).itcount());

t.mycoll.drop();
assert.commandWorked(t.mycoll.insert({_id: 0, a: Function.prototype}));
assert.eq(1, t.mycoll.find({a: {$type: 'javascript'}}).itcount());

t.mycoll.drop();
assert.commandWorked(t.mycoll.insert({_id: 0, a: RegExp.prototype}));
assert.eq(1, t.mycoll.find({a: {$type: 'regex'}}).itcount());
}());