Open GoogleCodeExporter opened 9 years ago
I can write a naive replacement for hasProperty which works correctly for both
cases:
private void assertContainsPropertyTheHardWay(Object object, String propertyName, Matcher valueMatcher) throws Exception
{
for (PropertyDescriptor property : Introspector.getBeanInfo(object.getClass()).getPropertyDescriptors())
{
if (propertyName.equals(property.getName()))
{
Object actualValue = property.getReadMethod().invoke(object);
assertThat(actualValue, valueMatcher);
return;
}
}
fail("Couldn't find property " + propertyName);
}
Original comment by trejkaz
on 14 Jun 2012 at 12:09
And here's a drop-in replacement for hasProperty with a snarky method name.
private static <T> Matcher<T> hasPropertyWhichActuallyWorks(final String name, final Matcher<?> valueMatcher)
{
return new BaseMatcher<T>()
{
@Override
public boolean matches(Object o)
{
try
{
for (PropertyDescriptor property : Introspector.getBeanInfo(o.getClass()).getPropertyDescriptors())
{
if (name.equals(property.getName()))
{
Object actualValue = property.getReadMethod().invoke(o);
return valueMatcher.matches(actualValue);
}
}
return false;
}
catch (Exception e)
{
throw new RuntimeException("Unexpected error introspecting the bean", e);
}
}
@Override
public void describeTo(Description description)
{
description.appendText("hasProperty(");
description.appendValue(name);
description.appendText(")");
}
};
}
Original comment by trejkaz
on 14 Jun 2012 at 12:14
Original comment by t.denley
on 18 Jun 2012 at 9:56
I believe that this issue has been fixed on trunk, which we hope to release
from soon. The changes made in this check-in appear to have been responsible
for the resolution:
https://github.com/hamcrest/JavaHamcrest/commit/8e00b60beb6e13b9c476e5e45d159a9d
a646d7d1
Original comment by t.denley
on 18 Jun 2012 at 10:11
now that Hamcrest 1.3 has been released, please can you confirm whether this
issue still exists.
Original comment by t.denley
on 18 Jul 2012 at 4:20
Closing this as fixed, given the raising user has gone dark.
Original comment by t.denley
on 29 Jul 2012 at 5:20
Sorry for the delay... I had some other stuff to do. :(
The test code above still fails on Hamcrest 1.3.
Original comment by trejkaz
on 29 Jul 2012 at 11:06
OK, thanks for the feedback. I'll have another look at this.
Original comment by t.denley
on 30 Jul 2012 at 7:44
[deleted comment]
Confirming still an issue with hamcrest-1.3. Passing private implementations of
public interface beans will fail.
Original comment by mchen...@gmail.com
on 21 Jun 2015 at 9:18
Original issue reported on code.google.com by
trejkaz
on 14 Jun 2012 at 12:00