How do you feel about using Reflection?
$r = new ReflectionClass('MyClass');
$props = $r->getDefaultProperties();
$mock = new stdClass;
foreach ($props as $prop => $value) {
$mock->$prop = $value;
}
I've not used Reflection a whole lot myself, only for basic introspection. I'm not sure if you'll be able to fully mimic visibility etc. using it, but I don't see why not if you continue down the route of writing to a string and evaling.
Edit:
Scanned through the Reflection functions out of curiosity, it is totally possible to fully mimic the class with dummy methods, implementing full visibility constraints, constants, and static elements where appropriate if you dynamically build the class in a string and eval it.
However it looks like it will be a complete mission to really fully support every possibility when it comes down to getting data types correct (you'll need code to rebuild an array constructor from an array for example)
Best of luck if you go down this route, it requires more brain power than I'm willing to spare right now :)
Here's a little bit of code, you can do the same thing with constants, and create empty methods in a similar way.
class Test
{
private static $privates = 'priv';
protected $protected = 'prot';
public $public = 'pub';
}
$r = new ReflectionClass('Test');
$props = $r->getDefaultProperties();
$mock = 'class MockTest {';
foreach ($props as $prop => $value) {
$rProp = $r->getProperty($prop);
if ($rProp->isPrivate()) {
$mock .= 'private ';
}
elseif ($rProp->isProtected()) {
$mock .= 'protected ';
}
elseif ($rProp->isPublic()) {
$mock .= 'public ';
}
if ($rProp->isStatic()) {
$mock .= 'static ';
}
$mock .= "$$prop = ";
switch (gettype($value)) {
case "boolean":
case "integer":
case "double":
$mock .= $value;
break;
case "string":
$mock .= "'$value'";
break;
/*
"array"
"object"
"resource"
*/
case "NULL":
$mock .= 'null';
break;
}
$mock .= ';';
}
$mock .= '}';
eval($mock);
var_dump(new MockTest);
$fieldsso it will behave like a real model. I know PHPUnit creates mocks by writing the code into a string and evaling() it. I just don't know how to include property declarations in that process. – Mike B Feb 17 '12 at 15:34