summaryrefslogtreecommitdiff
path: root/jstests/core/type3.js
blob: fce2b03f6c4545997070f305bdb800b164799b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Check query type bracketing SERVER-3222

t = db.jstests_type3;
t.drop();

t.ensureIndex({a: 1});

// Type Object
t.save({a: {'': ''}});
assert.eq(1, t.find({a: {$type: 3}}).hint({a: 1}).itcount());

// Type Array
t.remove({});
t.save({a: [['c']]});
assert.eq(1, t.find({a: {$type: 4}}).hint({a: 1}).itcount());

// Type RegEx
t.remove({});
t.save({a: /r/});
assert.eq(1, t.find({a: {$type: 11}}).hint({a: 1}).itcount());

// Type jstNULL
t.remove({});
t.save({a: null});
assert.eq(1, t.find({a: {$type: 10}}).hint({a: 1}).itcount());

// Type Undefined
t.remove({});
t.save({a: undefined});
assert.eq(1, t.find({a: {$type: 6}}).hint({a: 1}).itcount());

// This one won't be returned.
t.save({a: null});
assert.eq(1, t.find({a: {$type: 6}}).hint({a: 1}).itcount());

// Type Code
t.remove({});
t.save({
    a: function() {
        var a = 0;
    }
});
assert.eq(1, t.find({a: {$type: 13}}).itcount());

// Type BinData
t.remove({});
t.save({a: new BinData(0, '')});
assert.eq(1, t.find({a: {$type: 5}}).itcount());

// Type Timestamp
t.remove({});
t.save({a: new Timestamp()});
t.save({a: new Timestamp(0x80008000, 0)});
assert.eq(2, t.find({a: {$type: 17}}).itcount());
assert.eq(0, t.find({a: {$type: 9}}).itcount());

// Type Date
t.remove({});
t.save({a: new Date()});
assert.eq(0, t.find({a: {$type: 17}}).itcount());
assert.eq(1, t.find({a: {$type: 9}}).itcount());