summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js
diff options
context:
space:
mode:
authorRamon Fernandez <ramon@mongodb.com>2016-08-25 16:34:34 -0400
committerRamon Fernandez <ramon@mongodb.com>2016-08-25 16:54:18 -0400
commitc330c9991ab45e7d0685d53e699ef26dba065660 (patch)
tree3dc5cd06b5f6c7eaaa4cb20cbe763504c14a772b /src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js
parenteb62b862d5ebf179a1bcd9f394070e69c30188ab (diff)
downloadmongo-c330c9991ab45e7d0685d53e699ef26dba065660.tar.gz
Import tools: 5b883d86fdb4df55036d5dba2ca6f9dfa0750b44 from branch v3.3
ref: 1ac1389bda..5b883d86fd for: 3.3.12 SERVER-25814 Initial vendor import: tools
Diffstat (limited to 'src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js')
-rw-r--r--src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js b/src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js
new file mode 100644
index 00000000000..9024096ca18
--- /dev/null
+++ b/src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js
@@ -0,0 +1,44 @@
+(function() {
+ // skip this test where NumberDecimal is unsupported (3.2 and earlier)
+ if (typeof NumberDecimal === 'undefined') {
+ return;
+ }
+
+ if (typeof getToolTest === 'undefined') {
+ load('jstests/configs/plain_28.config.js');
+ }
+ jsTest.log('Testing running import with various data types');
+
+ var toolTest = getToolTest('import');
+ var db1 = toolTest.db;
+ var commonToolArgs = getCommonToolArguments();
+
+ var testDoc = {
+ _id: "foo",
+ x: NumberDecimal("124124"),
+ };
+
+ // Make a dummy file to import by writing a test collection and exporting it
+ assert.eq(0, db1.c.count(), "initial collection is not empty");
+ db1.c.save(testDoc);
+ toolTest.runTool.apply(toolTest, ["export",
+ "--out", toolTest.extFile,
+ "-d", toolTest.baseName,
+ "-c", db1.c.getName()]
+ .concat(commonToolArgs));
+
+ toolTest.runTool.apply(toolTest, ["import",
+ "--file", toolTest.extFile,
+ "--db", "imported",
+ "--collection", "dec128"]
+ .concat(commonToolArgs));
+ var importedDocs = db1.c.getDB().getSiblingDB("imported").dec128.find().toArray();
+
+ assert.eq(importedDocs.length, 1, "incorrect # of docs imported");
+
+ var importedDoc = importedDocs[0];
+
+ assert.eq(importedDoc, testDoc, "imported doc and test doc do not match");
+
+ toolTest.stop();
+}());