summaryrefslogtreecommitdiff
path: root/jstests/tool/exportimport3.js
blob: 481db7979647d21992786f34b0d03df5c7ecc77f (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
// exportimport3.js

t = new ToolTest("exportimport3");

c = t.startDB("foo");
assert.eq(0, c.count(), "setup1");
c.save({a: 1});
c.save({a: 2});
c.save({a: 3});
c.save({a: 4});
c.save({a: 5});

assert.eq(5, c.count(), "setup2");

t.runTool("export", "--jsonArray", "--out", t.extFile, "-d", t.baseName, "-c", "foo");

c.drop();
assert.eq(0, c.count(), "after drop", "-d", t.baseName, "-c", "foo");

t.runTool("import", "--jsonArray", "--file", t.extFile, "-d", t.baseName, "-c", "foo");

assert.soon("c.findOne()", "no data after sleep");
assert.eq(5, c.count(), "after restore 2");

t.stop();