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
|
--TEST--
MongoCollection::findAndModify() helper
--SKIPIF--
<?php require "tests/utils/standalone.inc"; ?>
--FILE--
<?php
require "tests/utils/server.inc";
$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("safe" => true)
);
try {
$retval = $col->findAndModify(
array("inprogress" => false, "name" => "Biz report"),
array('$set' => array('$set' => array('inprogress' => true, "started" => new MongoDate()))),
null,
array(
"sort" => array("priority" => -1),
"new" => true,
)
);
} catch(MongoResultException $e) {
echo $e->getCode(), " : ", $e->getMessage(), "\n";
$res = $e->getDocument();
var_dump($res["lastErrorObject"], $res["errmsg"], $res["ok"]);
}
try {
$retval = $col->findAndModify(
array("inprogress" => false, "name" => "Next promo"),
array('$pop' => array("tasks" => -1)),
array("tasks" => array('$pop' => array("stuff"))),
array("new" => true)
);
} catch(MongoResultException $e) {
echo $e->getCode(), " : ", $e->getMessage(), "\n";
var_dump($e->getDocument());
}
try {
$col->findAndModify(
null,
array("asdf"),
null,
array("sort" => array("priority" => -1), "remove" => true)
);
$retval = $col->find();
var_dump(iterator_to_array($retval));
$col->remove();
} catch(MongoResultException $e) {
echo $e->getCode(), " : ", $e->getMessage(), "\n";
var_dump($e->getDocument());
}
try {
$retval = $col->findAndModify(null);
var_dump($retval);
} catch(MongoResultException $e) {
echo $e->getCode(), " : ", $e->getMessage(), "\n";
$res = $e->getDocument();
var_dump($res["errmsg"], $res["ok"]);
}
?>
--EXPECTF--
0 : %s
array(5) {
["err"]=>
string(%d) "%s"
["code"]=>
int(%d)
["n"]=>
int(0)
["connectionId"]=>
int(%d)
["ok"]=>
float(1)
}
string(%d) "%s"
float(0)
13097 : exception: Unsupported projection option: $pop
array(3) {
["errmsg"]=>
string(46) "exception: Unsupported projection option: $pop"
["code"]=>
int(13097)
["ok"]=>
float(0)
}
12515 : exception: can't remove and update
array(3) {
["errmsg"]=>
string(34) "exception: can't remove and update"
["code"]=>
int(12515)
["ok"]=>
float(0)
}
0 : need remove or update
string(21) "need remove or update"
float(0)
|