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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
'use strict';
/**
* rename_collection_droptarget.js
*
* Creates a collection and then repeatedly executes the renameCollection
* command against it. Inserts documents into the "to" namespace and specifies
* dropTarget=true.
*/
load('jstests/concurrency/fsm_workload_helpers/drop_utils.js'); // for dropCollections
var $config = (function() {
var data = {
// Use the workload name as a prefix for the collection name,
// since the workload name is assumed to be unique.
prefix: 'rename_collection_droptarget'
};
var states = (function() {
function uniqueCollectionName(prefix, tid, num) {
return prefix + tid + '_' + num;
}
function insert(db, collName, numDocs) {
for (var i = 0; i < numDocs; ++i) {
var res = db[collName].insert({});
assertAlways.writeOK(res);
assertAlways.eq(1, res.nInserted);
}
}
function init(db, collName) {
var num = 0;
this.fromCollName = uniqueCollectionName(this.prefix, this.tid, num++);
this.toCollName = uniqueCollectionName(this.prefix, this.tid, num++);
assertAlways.commandWorked(db.createCollection(this.fromCollName));
}
function rename(db, collName) {
// Clear out the "from" collection and insert 'fromCollCount' documents
var fromCollCount = 7;
assertWhenOwnDB(db[this.fromCollName].drop());
assertAlways.commandWorked(db.createCollection(this.fromCollName));
insert(db, this.fromCollName, fromCollCount);
var toCollCount = 4;
assertAlways.commandWorked(db.createCollection(this.toCollName));
insert(db, this.toCollName, toCollCount);
// Verify that 'fromCollCount' documents exist in the "to" collection
// after the rename occurs
var res =
db[this.fromCollName].renameCollection(this.toCollName, true /* dropTarget */);
assertWhenOwnDB.commandWorked(res);
assertWhenOwnDB.eq(fromCollCount, db[this.toCollName].find().itcount());
assertWhenOwnDB.eq(0, db[this.fromCollName].find().itcount());
// Swap "to" and "from" collections for next execution
var temp = this.fromCollName;
this.fromCollName = this.toCollName;
this.toCollName = temp;
}
return {
init: init,
rename: rename
};
})();
var transitions = {
init: {rename: 1},
rename: {rename: 1}
};
function teardown(db, collName, cluster) {
var pattern = new RegExp('^' + this.prefix + '\\d+_\\d+$');
dropCollections(db, pattern);
}
return {
threadCount: 10,
iterations: 20,
data: data,
states: states,
transitions: transitions,
teardown: teardown
};
})();
|