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
|
// 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();
assert.eq( [[null,null]], t.find( {a:{$type:10}} ).hint( {a:1} ).explain().indexBounds.a );
// Type Undefined
t.remove();
// 'null' is the client friendly version of undefined.
assert.eq( [[null,null]], t.find( {a:{$type:6}} ).hint( {a:1} ).explain().indexBounds.a );
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() );
t.remove();
// Type MinKey
assert.eq( [[{$minElement:1},{$minElement:1}]], t.find( {a:{$type:-1}} ).hint( {a:1} ).explain().indexBounds.a );
// Type MaxKey
assert.eq( [[{$maxElement:1},{$maxElement:1}]], t.find( {a:{$type:127}} ).hint( {a:1} ).explain().indexBounds.a );
// Type Timestamp
t.remove();
t.save( {a:new Timestamp()} );
assert.eq( 1, t.find( {a:{$type:17}} ).itcount() );
if ( 0 ) { // SERVER-3304
assert.eq( 0, t.find( {a:{$type:9}} ).itcount() );
}
// Type Date
t.remove();
t.save( {a:new Date()} );
if ( 0 ) { // SERVER-3304
assert.eq( 0, t.find( {a:{$type:17}} ).itcount() );
}
assert.eq( 1, t.find( {a:{$type:9}} ).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() );
|