summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/test/qa-tests/jstests/import/decimal128.js
blob: 9024096ca18579ab6c1bb53265c166657fa20c48 (plain)
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
(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();
}());