summaryrefslogtreecommitdiff
path: root/jstests/remove2.js
blob: 155eb62b5bc3be4ed2945ee8553e8686774a3d0f (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
// remove2.js
// a unit test for db remove

t = db.removetest2;

function f() {
    t.ensureIndex({x:1});

    t.save( { x:[3,3,3,3,3,3,3,3,4,5,6], z:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" } );
    t.save( { x: 9 } );
    t.save( { x: 1 } );

    t.remove({x:3});

    assert( t.findOne({x:3}) == null );
    assert( t.validate().valid );
}

function g() {
    t.ensureIndex({x:1});

    //  t.save( { x:[3,4,5,6], z:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" } );
    t.save( { x:[7,8,9], z:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" } );

    t.remove( {x : {$gte:3} } );

    assert( t.findOne({x:3}) == null );
    assert( t.findOne({x:8}) == null );
    assert( t.validate().valid );
}

t.drop();
//f();
//g();