summaryrefslogtreecommitdiff
path: root/jstests/core/js4.js
blob: 51a8518286632e80f89430062ded647cba9b4d3d (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
t = db.jstests_js4;
t.drop();

real = {
    a: 1,
    b: "abc",
    c: /abc/i,
    d: new Date(111911100111),
    e: null,
    f: true
};

t.save(real);

assert.eq("/abc/i", real.c.toString(), "regex 1");

var cursor = t.find({
    $where: function() {
        fullObject;
        assert.eq(7, Object.keySet(obj).length, "A");
        assert.eq(1, obj.a, "B");
        assert.eq("abc", obj.b, "C");
        assert.eq("/abc/i", obj.c.toString(), "D");
        assert.eq(111911100111, obj.d.getTime(), "E");
        assert(obj.f, "F");
        assert(!obj.e, "G");

        return true;
    }
});
assert.eq(1, cursor.toArray().length);
assert.eq("abc", cursor[0].b);

// ---

t.drop();
t.save({a: 2, b: {c: 7, d: "d is good"}});
var cursor = t.find({
    $where: function() {
        fullObject;
        assert.eq(3, Object.keySet(obj).length);
        assert.eq(2, obj.a);
        assert.eq(7, obj.b.c);
        assert.eq("d is good", obj.b.d);
        return true;
    }
});
assert.eq(1, cursor.toArray().length);

assert(t.validate().valid);