summaryrefslogtreecommitdiff
path: root/jstests/core/objid6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/objid6.js')
-rw-r--r--jstests/core/objid6.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/jstests/core/objid6.js b/jstests/core/objid6.js
new file mode 100644
index 00000000000..b90dc9e914e
--- /dev/null
+++ b/jstests/core/objid6.js
@@ -0,0 +1,16 @@
+o = new ObjectId();
+assert(o.getTimestamp);
+
+a = new ObjectId("4c17f616a707427266a2801a");
+b = new ObjectId("4c17f616a707428966a2801c");
+assert.eq(a.getTimestamp(), b.getTimestamp() , "A" );
+
+x = Math.floor( (new Date()).getTime() / 1000 );
+sleep(10/*ms*/)
+a = new ObjectId();
+sleep(10/*ms*/)
+z = Math.floor( (new Date()).getTime() / 1000 );
+y = a.getTimestamp().getTime() / 1000;
+
+assert.lte( x , y , "B" );
+assert.lte( y , z , "C" );