Files
mongo/jstests/core/update_currentdate_examples.js
Siyuan Zhou 3660343e0b SERVER-12127 migrate js tests to jscore suite when not related to writes
Migrate js tests starting from j-z.
Include SERVER-12920 Update use_power_of_2.js

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-03-03 22:54:10 -05:00

26 lines
679 B
JavaScript

// Basic examples for $currentDate
var res;
var coll = db.update_currentdate;
coll.drop();
// $currentDate default
coll.remove({})
coll.save({_id:1, a:2});
res = coll.update({}, {$currentDate: {a: true}})
assert.writeOK(res);
assert(coll.findOne().a.constructor == Date)
// $currentDate type = date
coll.remove({})
coll.save({_id:1, a:2});
res = coll.update({}, {$currentDate: {a: {$type: "date"}}})
assert.writeOK(res);
assert(coll.findOne().a.constructor == Date)
// $currentDate type = timestamp
coll.remove({})
coll.save({_id:1, a:2});
res = coll.update({}, {$currentDate: {a: {$type: "timestamp"}}})
assert.writeOK(res);
assert(coll.findOne().a.constructor == Timestamp)