package com.vaadin.data.util; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.Map; import org.junit.Assert; import org.junit.Test; import com.vaadin.data.Property; /** * Test BeanItem specific features. * * Only public API is tested, not the methods with package visibility. * * See also {@link PropertySetItemTest}, which tests the base class. */ public class BeanItemTest { @SuppressWarnings("unused") protected static class MySuperClass { private int superPrivate = 1; private int superPrivate2 = 2; protected double superProtected = 3.0; private double superProtected2 = 4.0; public boolean superPublic = true; private boolean superPublic2 = true; public int getSuperPrivate() { return superPrivate; } public void setSuperPrivate(int superPrivate) { this.superPrivate = superPrivate; } public double getSuperProtected() { return superProtected; } public void setSuperProtected(double superProtected) { this.superProtected = superProtected; } public boolean isSuperPublic() { return superPublic; } public void setSuperPublic(boolean superPublic) { this.superPublic = superPublic; } } protected static class MyClass extends MySuperClass { private String name; public int value = 123; public MyClass(String name) { this.name = name; } public void setName(String name) { this.name = name; } public String getName() { return name; } public void setNoField(String name) { } public String getNoField() { return "no field backing this setter"; } public String getName2() { return name; } } protected static class MyClass2 extends MyClass { public MyClass2(String name) { super(name); } @Override public void setName(String name) { super.setName(name + "2"); } @Override public String getName() { return super.getName() + "2"; } @Override public String getName2() { return super.getName(); } public void setName2(String name) { super.setName(name); } } protected static interface MySuperInterface { public int getSuper1(); public void setSuper1(int i); public int getOverride(); } protected static interface MySuperInterface2 { public int getSuper2(); } protected static class Generic { public T getProperty() { return null; } public void setProperty(T t) { throw new UnsupportedOperationException(); } } protected static class SubClass extends Generic { @Override // Has a bridged method public String getProperty() { return ""; } @Override // Has a bridged method public void setProperty(String t) { } } protected static interface MySubInterface extends MySuperInterface, MySuperInterface2 { public int getSub(); public void setSub(int i); @Override public int getOverride(); public void setOverride(int i); } @Test public void testGetProperties() { BeanItem item = new BeanItem( new MySuperClass()); Collection itemPropertyIds = item.getItemPropertyIds(); Assert.assertEquals(3, itemPropertyIds.size()); Assert.assertTrue(itemPropertyIds.contains("superPrivate")); Assert.assertTrue(itemPropertyIds.contains("superProtected")); Assert.assertTrue(itemPropertyIds.contains("superPublic")); } @Test public void testGetSuperClassProperties() { BeanItem item = new BeanItem(new MyClass("bean1")); Collection itemPropertyIds = item.getItemPropertyIds(); Assert.assertEquals(6, itemPropertyIds.size()); Assert.assertTrue(itemPropertyIds.contains("superPrivate")); Assert.assertTrue(itemPropertyIds.contains("superProtected")); Assert.assertTrue(itemPropertyIds.contains("superPublic")); Assert.assertTrue(itemPropertyIds.contains("name")); Assert.assertTrue(itemPropertyIds.contains("noField")); Assert.assertTrue(itemPropertyIds.contains("name2")); } @Test public void testOverridingProperties() { BeanItem item = new BeanItem(new MyClass2("bean2")); Collection itemPropertyIds = item.getItemPropertyIds(); Assert.assertEquals(6, itemPropertyIds.size()); Assert.assertTrue(MyClass2.class.equals(item.getBean().getClass())); // check that name2 accessed via MyClass2, not MyClass Assert.assertFalse(item.getItemProperty("name2").isReadOnly()); } @Test public void testGetInterfaceProperties() throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException { Method method = BeanItem.class.getDeclaredMethod( "getPropertyDescriptors", Class.class); method.setAccessible(true); LinkedHashMap> propertyDescriptors = (LinkedHashMap>) method .invoke(null, MySuperInterface.class); Assert.assertEquals(2, propertyDescriptors.size()); Assert.assertTrue(propertyDescriptors.containsKey("super1")); Assert.assertTrue(propertyDescriptors.containsKey("override")); MethodProperty property = (MethodProperty) propertyDescriptors .get("override").createProperty(getClass()); Assert.assertTrue(property.isReadOnly()); } @Test public void testGetSuperInterfaceProperties() throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException { Method method = BeanItem.class.getDeclaredMethod( "getPropertyDescriptors", Class.class); method.setAccessible(true); LinkedHashMap> propertyDescriptors = (LinkedHashMap>) method .invoke(null, MySubInterface.class); Assert.assertEquals(4, propertyDescriptors.size()); Assert.assertTrue(propertyDescriptors.containsKey("sub")); Assert.assertTrue(propertyDescriptors.containsKey("super1")); Assert.assertTrue(propertyDescriptors.containsKey("super2")); Assert.assertTrue(propertyDescriptors.containsKey("override")); MethodProperty property = (MethodProperty) propertyDescriptors .get("override").createProperty(getClass()); Assert.assertFalse(property.isReadOnly()); } @Test public void testPropertyExplicitOrder() { Collection ids = new ArrayList(); ids.add("name"); ids.add("superPublic"); ids.add("name2"); ids.add("noField"); BeanItem item = new BeanItem(new MyClass("bean1"), ids); Iterator it = item.getItemPropertyIds().iterator(); Assert.assertEquals("name", it.next()); Assert.assertEquals("superPublic", it.next()); Assert.assertEquals("name2", it.next()); Assert.assertEquals("noField", it.next()); Assert.assertFalse(it.hasNext()); } @Test public void testPropertyExplicitOrder2() { BeanItem item = new BeanItem(new MyClass("bean1"), new String[] { "name", "superPublic", "name2", "noField" }); Iterator it = item.getItemPropertyIds().iterator(); Assert.assertEquals("name", it.next()); Assert.assertEquals("superPublic", it.next()); Assert.assertEquals("name2", it.next()); Assert.assertEquals("noField", it.next()); Assert.assertFalse(it.hasNext()); } @Test public void testPropertyBadPropertyName() { Collection ids = new ArrayList(); ids.add("name3"); ids.add("name"); // currently silently ignores non-existent properties BeanItem item = new BeanItem(new MyClass("bean1"), ids); Iterator it = item.getItemPropertyIds().iterator(); Assert.assertEquals("name", it.next()); Assert.assertFalse(it.hasNext()); } @Test public void testRemoveProperty() { BeanItem item = new BeanItem(new MyClass("bean1")); Collection itemPropertyIds = item.getItemPropertyIds(); Assert.assertEquals(6, itemPropertyIds.size()); item.removeItemProperty("name2"); Assert.assertEquals(5, itemPropertyIds.size()); Assert.assertFalse(itemPropertyIds.contains("name2")); } @Test public void testRemoveSuperProperty() { BeanItem item = new BeanItem(new MyClass("bean1")); Collection itemPropertyIds = item.getItemPropertyIds(); Assert.assertEquals(6, itemPropertyIds.size()); item.removeItemProperty("superPrivate"); Assert.assertEquals(5, itemPropertyIds.size()); Assert.assertFalse(itemPropertyIds.contains("superPrivate")); } @Test public void testPropertyTypes() { BeanItem item = new BeanItem(new MyClass("bean1")); Assert.assertTrue(Integer.class.equals(item.getItemProperty( "superPrivate").getType())); Assert.assertTrue(Double.class.equals(item.getItemProperty( "superProtected").getType())); Assert.assertTrue(Boolean.class.equals(item.getItemProperty( "superPublic").getType())); Assert.assertTrue(String.class.equals(item.getItemProperty("name") .getType())); } @Test public void testPropertyReadOnly() { BeanItem item = new BeanItem(new MyClass("bean1")); Assert.assertFalse(item.getItemProperty("name").isReadOnly()); Assert.assertTrue(item.getItemProperty("name2").isReadOnly()); } @Test public void testCustomProperties() throws Exception { LinkedHashMap> propertyDescriptors = new LinkedHashMap>(); propertyDescriptors.put( "myname", new MethodPropertyDescriptor("myname", MyClass.class, MyClass.class .getDeclaredMethod("getName"), MyClass.class .getDeclaredMethod("setName", String.class))); MyClass instance = new MyClass("bean1"); Constructor constructor = BeanItem.class .getDeclaredConstructor(Object.class, Map.class); constructor.setAccessible(true); BeanItem item = constructor.newInstance(instance, propertyDescriptors); Assert.assertEquals(1, item.getItemPropertyIds().size()); Assert.assertEquals("bean1", item.getItemProperty("myname").getValue()); } @Test public void testAddRemoveProperty() throws Exception { MethodPropertyDescriptor pd = new MethodPropertyDescriptor( "myname", MyClass.class, MyClass.class.getDeclaredMethod("getName"), MyClass.class.getDeclaredMethod("setName", String.class)); BeanItem item = new BeanItem(new MyClass("bean1")); Assert.assertEquals(6, item.getItemPropertyIds().size()); Assert.assertEquals(null, item.getItemProperty("myname")); item.addItemProperty("myname", pd.createProperty(item.getBean())); Assert.assertEquals(7, item.getItemPropertyIds().size()); Assert.assertEquals("bean1", item.getItemProperty("myname").getValue()); item.removeItemProperty("myname"); Assert.assertEquals(6, item.getItemPropertyIds().size()); Assert.assertEquals(null, item.getItemProperty("myname")); } @Test public void testOverridenGenericMethods() { BeanItem item = new BeanItem(new SubClass()); Property property = item.getItemProperty("property"); Assert.assertEquals("Unexpected class for property type", String.class, property.getType()); Assert.assertEquals("Unexpected property value", "", property.getValue()); // Should not be exception property.setValue(null); } } 84' href='#n284'>284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520