summaryrefslogtreecommitdiff
path: root/jstests/repl/basic1.js
blob: 515667c48e498c3302b54f98432dbb86ff985bfb (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180

// test repl basics
// data on master/slave is the same

var rt = new ReplTest("basic1");

m = rt.start(true);
s = rt.start(false);

function block() {
    am.runCommand({getlasterror: 1, w: 2, wtimeout: 3000});
}

am = m.getDB("foo");
as = s.getDB("foo");

function check(note) {
    var start = new Date();
    var x, y;
    while ((new Date()).getTime() - start.getTime() < 30000) {
        x = am.runCommand("dbhash");
        y = as.runCommand("dbhash");
        if (x.md5 == y.md5)
            return;
        sleep(200);
    }
    lastOpLogEntry =
        m.getDB("local").oplog.$main.find({op: {$ne: "n"}}).sort({$natural: -1}).limit(-1).next();
    note = note + tojson(am.a.find().toArray()) + " != " + tojson(as.a.find().toArray()) +
        "last oplog:" + tojson(lastOpLogEntry);
    assert.eq(x.md5, y.md5, note);
}

am.a.save({x: 1});
check("A");

am.a.save({x: 5});

am.a.update({}, {$inc: {x: 1}});
check("B");

am.a.update({}, {$inc: {x: 1}}, false, true);
check("C");

// -----   check features -------

// map/reduce
assert.writeOK(am.mr.insert({tags: ["a"]}));
assert.writeOK(am.mr.insert({tags: ["a", "b"]}));
check("mr setup");

m = function() {
    for (var i = 0; i < this.tags.length; i++) {
        print("\t " + i);
        emit(this.tags[i], 1);
    }
};

r = function(key, v) {
    return Array.sum(v);
};

correct = {
    a: 2,
    b: 1
};

function checkMR(t) {
    var res = t.mapReduce(m, r, {out: {inline: 1}});
    assert.eq(correct, res.convertToSingleObject(), "checkMR: " + tojson(t));
}

function checkNumCollections(msg, diff) {
    if (!diff)
        diff = 0;
    var m = am.getCollectionNames();
    var s = as.getCollectionNames();
    assert.eq(m.length + diff, s.length, msg + " lengths bad \n" + tojson(m) + "\n" + tojson(s));
}

checkNumCollections("MR1");
checkMR(am.mr);
checkMR(as.mr);
checkNumCollections("MR2");

block();
checkNumCollections("MR3");

var res = am.mr.mapReduce(m, r, {out: "xyz"});
block();

checkNumCollections("MR4");

var t = am.rpos;
var writeOption = {
    writeConcern: {w: 2, wtimeout: 3000}
};
t.insert({_id: 1, a: [{n: "a", c: 1}, {n: "b", c: 1}, {n: "c", c: 1}], b: [1, 2, 3]}, writeOption);
check("after pos 1 ");

t.update({"a.n": "b"}, {$inc: {"a.$.c": 1}}, writeOption);
check("after pos 2 ");

t.update({b: 2}, {$inc: {"b.$": 1}}, writeOption);
check("after pos 3 ");

t.update({b: 3}, {$set: {"b.$": 17}}, writeOption);
check("after pos 4 ");

printjson(am.rpos.findOne());
printjson(as.rpos.findOne());

// am.getSisterDB( "local" ).getCollection( "oplog.$main" ).find().limit(10).sort( { $natural : -1 }
// ).forEach( printjson )

t = am.b;
var updateOption = {
    upsert: true,
    multi: false,
    writeConcern: {w: 2, wtimeout: 3000}
};
t.update({_id: "fun"}, {$inc: {"a.b.c.x": 6743}}, updateOption);
check("b 1");

t.update({_id: "fun"}, {$inc: {"a.b.c.x": 5}}, updateOption);
check("b 2");

t.update({_id: "fun"}, {$inc: {"a.b.c.x": 100, "a.b.c.y": 911}}, updateOption);
assert.eq({_id: "fun", a: {b: {c: {x: 6848, y: 911}}}}, as.b.findOne(), "b 3");
check("b 4");

// lots of indexes

am.lotOfIndexes.insert({x: 1});
for (i = 0; i < 200; i++) {
    var idx = {};
    idx["x" + i] = 1;
    am.lotOfIndexes.ensureIndex(idx);
}

assert.soon(function() {
    return am.lotOfIndexes.getIndexes().length == as.lotOfIndexes.getIndexes().length;
}, "lots of indexes a");

assert.eq(am.lotOfIndexes.getIndexes().length,
          as.lotOfIndexes.getIndexes().length,
          "lots of indexes b");

// multi-update with $inc

am.mu1.update({_id: 1, $atomic: 1}, {$inc: {x: 1}}, true, true);
x = {
    _id: 1,
    x: 1
};
assert.eq(x, am.mu1.findOne(), "mu1");
assert.soon(function() {
    z = as.mu1.findOne();
    printjson(z);
    return friendlyEqual(x, z);
}, "mu2");

// profiling - this should be last

am.setProfilingLevel(2);
am.foo.insert({x: 1}, writeOption);
am.foo.findOne();
assert.eq(2, am.system.profile.count(), "P1");
assert.eq(0, as.system.profile.count(), "P2");

assert.eq(1, as.foo.findOne().x, "P3");
assert.eq(0, as.system.profile.count(), "P4");

assert(as.getCollectionNames().indexOf("system.profile") < 0, "P4.5");

as.setProfilingLevel(2);
as.foo.findOne();
assert.eq(1, as.system.profile.count(), "P5");

rt.stop();