Files
mongo/jstests/gle/updated_existing.js
Kaloian Manassiev 3db9d1338c SERVER-21009 Remove usages of the multi-argument ShardingTest constructor
No functional changes, just converting everything to use the JSON-based
constructor.

Also moves some sharding-specific tests out of noPassthroughWithMongod and
under the sharding suite.
2015-10-23 09:50:35 -04:00

30 lines
923 B
JavaScript

/**
* SERVER-5872 : This test checks that the return message "updatedExisting" of
* an upsert is not missing when autosplit takes place.
*/
var st = new ShardingTest({ shards : 1, mongos : 1, verbose : 1, chunkSize: 1 });
var testDB = st.getDB("test");
var coll = "foo";
testDB[coll].drop();
st.adminCommand({ enablesharding : 'test' });
st.adminCommand({ shardcollection : 'test.' + coll, key : { "shardkey2" : 1, "shardkey1" : 1 } });
var bigString = "";
while ( bigString.length < 1024 * 50 )
bigString += "asocsancdnsjfnsdnfsjdhfasdfasdfasdfnsadofnsadlkfnsaldknfsad";
for (var i = 0; i < 10000; ++i) {
testDB[coll].update({ "shardkey1" : "test" + i, "shardkey2" : "test" + i },
{ $set : { "test_upsert": bigString } },
true, // upsert
false); // multi
assert.eq(testDB.getLastErrorObj().updatedExisting, false);
}
st.stop();