summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/test/qa-tests/jstests/files/mongofiles_replace.js
blob: 5fc3810b9f727ee636629edfcfc0faebf479bd32 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// mongofiles_replace.js; ensure that after putting a file once multiple times,
// on using --replace, any and all occurences of the given file is replaced in
// the GridFS collection - all other files are left as is
var testName = 'mongofiles_replace';
load('jstests/files/util/mongofiles_common.js');
(function() {
  jsTest.log('Testing mongofiles --replace option');

  var runTests = function(topology, passthrough) {
    var t = topology.init(passthrough);
    var conn = t.connection();
    var db = conn.getDB('test');

    jsTest.log('Running put on file with --replace with ' + passthrough.name + ' passthrough');

    // insert the same file a couple of times
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      'put', filesToInsert[0]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 1');
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      'put', filesToInsert[0]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 2');
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      'put', filesToInsert[0]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 3');

    // ensure that it is never overwritten
    db.fs.files.findOne({
      filename: filesToInsert[0]
    });

    assert.eq(db.fs.files.count(), 3, 'expected 3 files inserted but got ' + db.fs.files.count());

    // now run with --replace
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      '--replace',
      'put', filesToInsert[0]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 4');

    assert.eq(db.fs.files.count(), 1, 'expected 1 file inserted but got ' + db.fs.files.count());

    // insert other files but ensure only 1 is replaced
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      'put', filesToInsert[1]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 5');
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      'put', filesToInsert[2]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 6');
    assert.eq(runMongoProgram.apply(this, ['mongofiles',
      '--port', conn.port,
      '--replace',
      'put', filesToInsert[0]]
      .concat(passthrough.args)),
    0, 'put failed when it should have succeeded 7');

    assert.eq(db.fs.files.count(), 3, 'expected 3 files inserted but got ' + db.fs.files.count());

    t.stop();
  };

  // run with plain and auth passthroughs
  passthroughs.forEach(function(passthrough) {
    runTests(standaloneTopology, passthrough);
    runTests(replicaSetTopology, passthrough);
    runTests(shardedClusterTopology, passthrough);
  });
}());