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 181 182 183 184 185 186
|
--TEST--
MongoCollection::findAndModify() helper
--SKIPIF--
<?php require "tests/utils/standalone.inc"; ?>
--FILE--
<?php
require "tests/utils/server.inc";
function dumpDoc($doc) {
/* Make the dumped doc consistent as MongoDB sometimes reorders the fields */
$dup = array();
foreach(array("_id", "inprogress", "name", "priority", "started", "tasks") as $k) {
if (isset($doc[$k])) {
$dup[$k] = $doc[$k];
}
}
var_dump($dup);
}
$m = mongo_standalone();
$col = $m->selectDB(dbname())->jobs;
$col->remove();
$col->insert(array(
"name" => "Next promo",
"inprogress" => false,
"priority" => 0,
"tasks" => array( "select product", "add inventory", "do placement"),
) );
$col->insert(array(
"name" => "Biz report",
"inprogress" => false,
"priority" => 1,
"tasks" => array( "run sales report", "email report" )
) );
$col->insert(array(
"name" => "Biz report",
"inprogress" => false,
"priority" => 2,
"tasks" => array( "run marketing report", "email report" )
),
array("w" => true)
);
$retval = $col->findAndModify(
array("inprogress" => false, "name" => "Biz report"),
array('$set' => array('inprogress' => true, "started" => new MongoDate())),
null,
array(
"sort" => array("priority" => -1),
"new" => true,
)
);
dumpDoc($retval);
$retval = $col->findAndModify(
array("inprogress" => false, "name" => "Next promo"),
array('$pop' => array("tasks" => -1)),
array("tasks" => 1),
array("new" => false)
);
dumpDoc($retval);
$col->findAndModify(
null,
null,
null,
array("sort" => array("priority" => -1), "remove" => true)
);
$retval = $col->find();
foreach($retval as $ret) {
dumpDoc($ret);
}
$col->remove();
try {
$retval = $col->findAndModify(null);
var_dump($retval);
} catch(MongoResultException $e) {
printf("exception message: %s\n", $e->getMessage());
printf("exception code: %d\n", $e->getCode());
$err = $e->getDocument();
dump_these_keys($err, array('ok', 'errmsg'));
}
?>
--EXPECTF--
array(6) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
["inprogress"]=>
bool(true)
["name"]=>
string(10) "Biz report"
["priority"]=>
int(2)
["started"]=>
object(MongoDate)#%d (2) {
["sec"]=>
int(%d)
["usec"]=>
int(%d)
}
["tasks"]=>
array(2) {
[0]=>
string(20) "run marketing report"
[1]=>
string(12) "email report"
}
}
array(2) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
["tasks"]=>
array(3) {
[0]=>
string(14) "select product"
[1]=>
string(13) "add inventory"
[2]=>
string(12) "do placement"
}
}
array(5) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
["inprogress"]=>
bool(false)
["name"]=>
string(10) "Next promo"
["priority"]=>
int(0)
["tasks"]=>
array(2) {
[0]=>
string(13) "add inventory"
[1]=>
string(12) "do placement"
}
}
array(5) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
["inprogress"]=>
bool(false)
["name"]=>
string(10) "Biz report"
["priority"]=>
int(1)
["tasks"]=>
array(2) {
[0]=>
string(16) "run sales report"
[1]=>
string(12) "email report"
}
}
exception message: %s:%d: need remove or update
exception code: 2
array(2) {
["ok"]=>
float(0)
["errmsg"]=>
string(21) "need remove or update"
}
|