summaryrefslogtreecommitdiff
path: root/share/www
diff options
context:
space:
mode:
authorDamien F. Katz <damien@apache.org>2008-07-29 16:40:41 +0000
committerDamien F. Katz <damien@apache.org>2008-07-29 16:40:41 +0000
commitb0a8ce34c118b1e0ef3e1e080cb70d3c9b91902f (patch)
tree60414c4325e8f1e62a873b7a8e6ff0fc83f1391f /share/www
parent96aaee3666626459ec091ee7e1a65e32b3b9afa6 (diff)
Test changes I forgot to check in earlier. Contains a formatting change and a bug fix in the test itself.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@680763 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r--share/www/script/couch_tests.js58
1 files changed, 35 insertions, 23 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index 852f9cfe..8b0cb398 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -290,6 +290,10 @@ var tests = {
result = db.query(map, reduce, {startkey: 4, endkey: 6});
T(result.rows[0].value == 15);
+ result = db.query(map, reduce, {count: 3});
+ console.log(result.rows[0].value);
+ T(result.rows[0].value == 6);
+
for(var i=1; i<numDocs/2; i+=30) {
result = db.query(map, reduce, {startkey: i, endkey: numDocs - i});
T(result.rows[0].value == summate(numDocs-i) - summate(i-1));
@@ -356,13 +360,13 @@ var tests = {
db.createDb();
- var map = function (doc) {emit(null, doc.val)};
+ var map = function (doc) {emit(doc.val, doc.val)};
var reduceCombine = function (keys, values, rereduce) {
// This computes the standard deviation of the mapped results
- var stdDeviation=0;
+ var stdDeviation=0.0;
var count=0;
- var total=0;
- var sqrTotal=0;
+ var total=0.0;
+ var sqrTotal=0.0;
if (!rereduce) {
// This is the reduce phase, we are reducing over emitted values from
@@ -379,7 +383,7 @@ var tests = {
for(var i in values) {
count = count + values[i].count;
total = total + values[i].total;
- sqrTotal = sqrTotal + (values[i].sqrTotal * values[i].sqrTotal);
+ sqrTotal = sqrTotal + values[i].sqrTotal;
}
}
@@ -393,26 +397,34 @@ var tests = {
};
// Save a bunch a docs.
+ for(var i=0; i < 10; i++) {
+ var docs = [];
+ docs.push({val:10});
+ docs.push({val:20});
+ docs.push({val:30});
+ docs.push({val:40});
+ docs.push({val:50});
+ docs.push({val:60});
+ docs.push({val:70});
+ docs.push({val:80});
+ docs.push({val:90});
+ docs.push({val:100});
+ T(db.bulkSave(docs).ok);
+ }
+
+ var results = db.query(map, reduceCombine);
+
+ var difference = results.rows[0].value.stdDeviation - 28.722813232690143;
+ // account for floating point rounding error
+ T(Math.abs(difference) < 0.0000000001);
+
+ var rows = db.query(map).rows;
+ console.log(JSON.stringify(rows))
+ for(var i=0; i < 10; i++) {
for(var j=0; j < 10; j++) {
- var docs = [];
- docs.push({val:10});
- docs.push({val:20});
- docs.push({val:30});
- docs.push({val:40});
- docs.push({val:50});
- docs.push({val:60});
- docs.push({val:70});
- docs.push({val:80});
- docs.push({val:90});
- docs.push({val:100});
- T(db.bulkSave(docs).ok);
+ T(rows[(i*10) + j].value == (i+1)*10);
}
-
- var results = db.query(map, reduceCombine);
-
- var difference = results.rows[0].value.stdDeviation - 28.722813232690143;
- // account for floating point rounding error
- T(Math.abs(difference) < 0.0000000001);
+ }
},