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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
// Test $exists with array element field names SERVER-2897
t = db.jstests_exists8;
t.drop();
t.save( {a:[1]} );
assert.eq( 1, t.count( {'a.0':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.1':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.0':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.1':{$exists:true}} ) );
t.remove();
t.save( {a:[1,2]} );
assert.eq( 1, t.count( {'a.0':{$exists:true}} ) );
assert.eq( 0, t.count( {'a.1':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.0':{$exists:false}} ) );
assert.eq( 1, t.count( {'a.1':{$exists:true}} ) );
t.remove();
t.save( {a:[{}]} );
assert.eq( 1, t.count( {'a.0':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.1':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.0':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.1':{$exists:true}} ) );
t.remove();
t.save( {a:[{},{}]} );
assert.eq( 1, t.count( {'a.0':{$exists:true}} ) );
assert.eq( 0, t.count( {'a.1':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.0':{$exists:false}} ) );
assert.eq( 1, t.count( {'a.1':{$exists:true}} ) );
t.remove();
t.save( {a:[{'b':2},{'a':1}]} );
assert.eq( 1, t.count( {'a.a':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.1.a':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.0.a':{$exists:false}} ) );
t.remove();
t.save( {a:[[1]]} );
assert.eq( 1, t.count( {'a.0':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.0.0':{$exists:true}} ) );
assert.eq( 0, t.count( {'a.0.0':{$exists:false}} ) );
assert.eq( 0, t.count( {'a.0.0.0':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.0.0.0':{$exists:false}} ) );
t.remove();
t.save( {a:[[[1]]]} );
assert.eq( 1, t.count( {'a.0.0.0':{$exists:true}} ) );
t.remove();
t.save( {a:[[{b:1}]]} );
assert.eq( 0, t.count( {'a.b':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.b':{$exists:false}} ) );
assert.eq( 1, t.count( {'a.0.b':{$exists:true}} ) );
assert.eq( 0, t.count( {'a.0.b':{$exists:false}} ) );
t.remove();
t.save( {a:[[],[{b:1}]]} );
assert.eq( 0, t.count( {'a.0.b':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.0.b':{$exists:false}} ) );
t.remove();
t.save( {a:[[],[{b:1}]]} );
assert.eq( 1, t.count( {'a.1.b':{$exists:true}} ) );
assert.eq( 0, t.count( {'a.1.b':{$exists:false}} ) );
t.remove();
t.save( {a:[[],[{b:1}]]} );
assert.eq( 1, t.count( {'a.1.0.b':{$exists:true}} ) );
assert.eq( 0, t.count( {'a.1.0.b':{$exists:false}} ) );
t.remove();
t.save( {a:[[],[{b:1}]]} );
assert.eq( 0, t.count( {'a.1.1.b':{$exists:true}} ) );
assert.eq( 1, t.count( {'a.1.1.b':{$exists:false}} ) );
|