summaryrefslogtreecommitdiff
path: root/jstests/core/regex_error.js
blob: 19e191d754ce38465a12c780186ba7ff8bfa8d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Test that the server errors when given an invalid regex.
 */
(function() {
const coll = db.regex_error;
coll.drop();

// Run some invalid regexes.
assert.commandFailedWithCode(coll.runCommand("find", {filter: {a: {$regex: "[)"}}}), 51091);
assert.commandFailedWithCode(coll.runCommand("find", {filter: {a: {$regex: "ab\0c"}}}),
                             ErrorCodes.BadValue);
assert.commandFailedWithCode(
    coll.runCommand("find", {filter: {a: {$regex: "ab", $options: "\0i"}}}), ErrorCodes.BadValue);
})();