/glazedlists-1.8.0/test/ca/odell/glazedlists/EventListTest.java

# · Java · 670 lines · 464 code · 91 blank · 115 comment · 30 complexity · 15636854f8b8bbe16689432fb6085aa2 MD5 · raw file

  1. /* Glazed Lists (c) 2003-2006 */
  2. /* http://publicobject.com/glazedlists/ publicobject.com,*/
  3. /* O'Dell Engineering Ltd.*/
  4. package ca.odell.glazedlists;
  5. import ca.odell.glazedlists.event.ListEvent;
  6. import ca.odell.glazedlists.event.ListEventListener;
  7. import ca.odell.glazedlists.impl.testing.GlazedListsTests;
  8. import ca.odell.glazedlists.impl.testing.ListConsistencyListener;
  9. import ca.odell.glazedlists.matchers.Matchers;
  10. import junit.framework.TestCase;
  11. import java.util.ArrayList;
  12. import java.util.Arrays;
  13. import java.util.Collection;
  14. import java.util.Collections;
  15. import java.util.HashSet;
  16. import java.util.Iterator;
  17. import java.util.List;
  18. import java.util.Set;
  19. /**
  20. * Verifies that EventList matches the List API.
  21. *
  22. * @author <a href="mailto:jesse@swank.ca">Jesse Wilson</a>
  23. */
  24. public class EventListTest extends TestCase {
  25. /**
  26. * Validates that removeAll() works.
  27. *
  28. * @see <a href="https://glazedlists.dev.java.net/issues/show_bug.cgi?id=169">Bug 169</a>
  29. */
  30. public void testRemoveAll() {
  31. List<String> jesse = GlazedListsTests.stringToList("JESSE");
  32. List<String> wilson = GlazedListsTests.stringToList("WILSON");
  33. // create the reference list
  34. List<String> jesseArrayList = new ArrayList<String>();
  35. jesseArrayList.addAll(jesse);
  36. jesseArrayList.removeAll(wilson);
  37. // test the BasicEventList list
  38. List<String> jesseBasicEventList = new BasicEventList<String>();
  39. installConsistencyListener(jesseBasicEventList);
  40. jesseBasicEventList.addAll(jesse);
  41. jesseBasicEventList.removeAll(wilson);
  42. assertEquals(jesseArrayList, jesseBasicEventList);
  43. // test the SortedList list
  44. List<String> jesseSortedList = new SortedList<String>(new BasicEventList<String>(), null);
  45. jesseSortedList.addAll(jesse);
  46. jesseSortedList.removeAll(wilson);
  47. assertEquals(jesseArrayList, jesseSortedList);
  48. List<String> removeMultipleTestList = GlazedListsTests.stringToList("booblah");
  49. removeMultipleTestList.removeAll(GlazedListsTests.stringToList("bo"));
  50. assertEquals(GlazedListsTests.stringToList("lah"), removeMultipleTestList);
  51. }
  52. /**
  53. * Validates that retainAll() works.
  54. */
  55. public void testRetainAll() {
  56. List<String> jesse = GlazedListsTests.stringToList("JESSE");
  57. List<String> wilson = GlazedListsTests.stringToList("WILSON");
  58. // create the reference list
  59. List<String> jesseArrayList = new ArrayList<String>();
  60. jesseArrayList.addAll(jesse);
  61. jesseArrayList.retainAll(wilson);
  62. // test the BasicEventList list
  63. List<String> jesseBasicEventList = new BasicEventList<String>();
  64. installConsistencyListener(jesseBasicEventList);
  65. jesseBasicEventList.addAll(jesse);
  66. jesseBasicEventList.retainAll(wilson);
  67. assertEquals(jesseArrayList, jesseBasicEventList);
  68. // test the SortedList list
  69. List<String> jesseSortedList = new SortedList<String>(new BasicEventList<String>(), null);
  70. jesseSortedList.addAll(jesse);
  71. jesseSortedList.retainAll(wilson);
  72. assertEquals(jesseArrayList, jesseSortedList);
  73. }
  74. /**
  75. * Validates that contains() works with null.
  76. */
  77. public void testContainsNull() {
  78. // get all different list types
  79. List<List<String>> listTypes = new ArrayList<List<String>>();
  80. listTypes.add(new ArrayList<String>());
  81. listTypes.add(new BasicEventList<String>());
  82. listTypes.add(SortedList.create(new BasicEventList<String>()));
  83. // test all different list types
  84. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  85. List<String> list = i.next();
  86. // test a list that doesn't contain nulls
  87. list.clear();
  88. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  89. assertEquals(false, list.contains(null));
  90. assertEquals(true, list.contains("Western"));
  91. // test a list that does contain nulls
  92. list.clear();
  93. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  94. assertEquals(true, list.contains(null));
  95. assertEquals(true, list.contains("Western"));
  96. assertEquals(false, list.contains("Molson"));
  97. }
  98. }
  99. /**
  100. * Validates that containsAll() works with null.
  101. */
  102. public void testContainsAllNull() {
  103. // get all different list types
  104. List<List<String>> listTypes = new ArrayList<List<String>>();
  105. listTypes.add(new ArrayList<String>());
  106. listTypes.add(new BasicEventList<String>());
  107. listTypes.add(SortedList.create(new BasicEventList<String>()));
  108. // test all different list types
  109. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  110. List<String> list = i.next();
  111. // test a list that doesn't contain nulls
  112. list.clear();
  113. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  114. assertEquals(true, list.containsAll(Arrays.asList(new String[] { "Sleeman", "Molson" })));
  115. assertEquals(false, list.containsAll(Arrays.asList(new String[] { "Molson", null })));
  116. assertEquals(false, list.containsAll(Arrays.asList(new String[] { "Molson", "Busch" })));
  117. // test a list that does contain nulls
  118. list.clear();
  119. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  120. assertEquals(false, list.containsAll(Arrays.asList(new String[] { "Sleeman", "Molson" })));
  121. assertEquals(true, list.containsAll(Arrays.asList(new String[] { "Sleeman", "Western" })));
  122. assertEquals(true, list.containsAll(Arrays.asList(new String[] { "Western", null })));
  123. assertEquals(true, list.containsAll(Arrays.asList(new String[] { null, null })));
  124. }
  125. }
  126. /**
  127. * Validates that indexOf() works with null.
  128. */
  129. public void testIndexOfNull() {
  130. // get all different list types
  131. List<List<String>> listTypes = new ArrayList<List<String>>();
  132. listTypes.add(new ArrayList<String>());
  133. listTypes.add(new BasicEventList<String>());
  134. listTypes.add(SortedList.create(new BasicEventList<String>()));
  135. // test all different list types
  136. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  137. List<String> list = i.next();
  138. // test a list that doesn't contain nulls
  139. list.clear();
  140. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  141. assertTrue(-1 == list.indexOf(null));
  142. assertTrue(-1 != list.indexOf("Western"));
  143. // test a list that does contain nulls
  144. list.clear();
  145. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  146. assertTrue(-1 != list.indexOf(null));
  147. assertTrue(-1 != list.indexOf("Western"));
  148. assertTrue(-1 == list.indexOf("Molson"));
  149. }
  150. }
  151. /**
  152. * Validates that lastIndexOf() works with null.
  153. */
  154. public void testLastIndexOfNull() {
  155. // get all different list types
  156. List<List<String>> listTypes = new ArrayList<List<String>>();
  157. listTypes.add(new ArrayList<String>());
  158. listTypes.add(new BasicEventList<String>());
  159. listTypes.add(SortedList.create(new BasicEventList<String>()));
  160. // test all different list types
  161. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  162. List<String> list = i.next();
  163. // test a list that doesn't contain nulls
  164. list.clear();
  165. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  166. assertTrue(-1 == list.lastIndexOf(null));
  167. assertTrue(-1 != list.lastIndexOf("Western"));
  168. // test a list that does contain nulls
  169. list.clear();
  170. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  171. assertTrue(-1 != list.lastIndexOf(null));
  172. assertTrue(-1 != list.lastIndexOf("Western"));
  173. assertTrue(-1 == list.lastIndexOf("Molson"));
  174. }
  175. }
  176. /**
  177. * Validates that remove() works with null.
  178. */
  179. public void testRemoveNull() {
  180. // get all different list types
  181. List<List<String>> listTypes = new ArrayList<List<String>>();
  182. listTypes.add(new ArrayList<String>());
  183. listTypes.add(new BasicEventList<String>());
  184. listTypes.add(SortedList.create(new BasicEventList<String>()));
  185. // test all different list types
  186. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  187. List<String> list = i.next();
  188. installConsistencyListener(list);
  189. // test a list that doesn't contain nulls
  190. list.clear();
  191. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  192. assertEquals(false, list.remove(null));
  193. assertEquals(true, list.remove("Sleeman"));
  194. // test a list that does contain nulls
  195. list.clear();
  196. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  197. assertEquals(true, list.remove(null));
  198. assertEquals(true, list.remove("Western"));
  199. assertEquals(false, list.remove("Molson"));
  200. }
  201. }
  202. /**
  203. * Validates that removeAll() works with null.
  204. */
  205. public void testRemoveAllNull() {
  206. // get all different list types
  207. List<List<String>> listTypes = new ArrayList<List<String>>();
  208. listTypes.add(new ArrayList<String>());
  209. listTypes.add(new BasicEventList<String>());
  210. listTypes.add(SortedList.create(new BasicEventList<String>()));
  211. // test all different list types
  212. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  213. List<String> list = i.next();
  214. // test a list that doesn't contain nulls
  215. list.clear();
  216. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  217. assertEquals(true, list.removeAll(Arrays.asList(new String[] { "Western", null })));
  218. assertEquals(false, list.removeAll(Arrays.asList(new String[] { null, "Busch" })));
  219. // test a list that does contain nulls
  220. list.clear();
  221. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  222. assertEquals(true, list.removeAll(Arrays.asList(new String[] { "Western", "Busch" })));
  223. assertEquals(true, list.removeAll(Arrays.asList(new String[] { "Sleeman", null })));
  224. assertEquals(false, list.removeAll(Arrays.asList(new String[] { "Western", null })));
  225. }
  226. }
  227. /**
  228. * Validates that retainAll() works with null.
  229. */
  230. public void testRetainAllNull() {
  231. // get all different list types
  232. List<List<String>> listTypes = new ArrayList<List<String>>();
  233. listTypes.add(new ArrayList<String>());
  234. listTypes.add(new BasicEventList<String>());
  235. listTypes.add(SortedList.create(new BasicEventList<String>()));
  236. // test all different list types
  237. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  238. List<String> list = i.next();
  239. // test a list that doesn't contain nulls
  240. list.clear();
  241. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  242. assertEquals(true, list.retainAll(Arrays.asList(new String[] { "Western", null })));
  243. assertEquals(true, list.retainAll(Arrays.asList(new String[] { "Moslon", null })));
  244. // test a list that does contain nulls
  245. list.clear();
  246. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  247. assertEquals(true, list.retainAll(Arrays.asList(new String[] { "Western", null })));
  248. assertEquals(true, list.retainAll(Arrays.asList(new String[] { "Moslon", null })));
  249. }
  250. }
  251. /**
  252. * Validates that hashCode() works with null.
  253. */
  254. public void testHashCodeNull() {
  255. // get all different list types
  256. List<List<String>> listTypes = new ArrayList<List<String>>();
  257. listTypes.add(new ArrayList<String>());
  258. listTypes.add(new BasicEventList<String>());
  259. listTypes.add(SortedList.create(new BasicEventList<String>()));
  260. // test all different list types
  261. for(Iterator<List<String>> i = listTypes.iterator(); i.hasNext();) {
  262. List<String> list = i.next();
  263. List<String> copy = new ArrayList<String>();
  264. // test a list that doesn't contain nulls
  265. list.clear();
  266. copy.clear();
  267. list.addAll(Arrays.asList(new String[] { "Molson", "Sleeman", "Labatts", "Western" }));
  268. copy.addAll(list);
  269. assertEquals(copy.hashCode(), list.hashCode());
  270. assertTrue(list.equals(copy));
  271. copy.set(0, "Busch");
  272. assertFalse(list.equals(copy));
  273. // test a list that does contain nulls
  274. list.clear();
  275. copy.clear();
  276. list.addAll(Arrays.asList(new String[] { null, "Sleeman", null, "Western" }));
  277. copy.addAll(list);
  278. assertEquals(copy.hashCode(), list.hashCode());
  279. assertTrue(list.equals(copy));
  280. copy.set(0, "Busch");
  281. assertFalse(list.equals(copy));
  282. }
  283. }
  284. /**
  285. * Test that the {@link GlazedLists#eventListOf(Object[])} factory
  286. * method works.
  287. */
  288. public void testGlazedListsEventListUsingVarArgs() {
  289. // make sure they have different backing stores
  290. EventList<String> eventList = GlazedLists.eventListOf(new String[] {"A", "B"});
  291. assertEquals(Arrays.asList(new String[] {"A", "B"}), eventList);
  292. // make sure null is supported
  293. EventList<String> empty = GlazedLists.eventListOf((String[]) null);
  294. assertEquals(Collections.EMPTY_LIST, empty);
  295. }
  296. /**
  297. * Test that the {@link GlazedLists#eventList(java.util.Collection)} factory
  298. * method works.
  299. *
  300. * @see <a href="https://glazedlists.dev.java.net/issues/show_bug.cgi?id=234">Bug 234</a>
  301. */
  302. public void testGlazedListsEventList() {
  303. // make sure they have different backing stores
  304. List<String> list = new ArrayList<String>();
  305. EventList<String> eventList = GlazedLists.eventList(list);
  306. assertEquals(list, eventList);
  307. list.add("A");
  308. assertTrue(!list.equals(eventList));
  309. eventList.add("B");
  310. assertTrue(!list.equals(eventList));
  311. // make sure null is supported
  312. EventList<String> empty = GlazedLists.eventList((Collection) null);
  313. assertEquals(Collections.EMPTY_LIST, empty);
  314. }
  315. /**
  316. * Tests the {@link GlazedLists#syncEventListToList(EventList, List)}
  317. * factory method.
  318. */
  319. public void testGlazedListsSync() {
  320. EventList<String> source = new BasicEventList<String>();
  321. source.add("McCallum");
  322. source.add("Keith");
  323. List<String> target = new ArrayList<String>();
  324. target.add("Greene");
  325. ListEventListener<String> listener = GlazedLists.syncEventListToList(source, target);
  326. assertEquals(source, target);
  327. source.add("Szakra");
  328. assertEquals(source, target);
  329. source.addAll(Arrays.asList(new String[] { "Moore", "Holmes" }));
  330. assertEquals(source, target);
  331. source.add(1, "Burris");
  332. assertEquals(source, target);
  333. source.set(1, "Crandell");
  334. assertEquals(source, target);
  335. Collections.sort(source);
  336. assertEquals(source, target);
  337. source.clear();
  338. assertEquals(source, target);
  339. source.removeListEventListener(listener);
  340. source.add("Davis");
  341. assertFalse(source.equals(target));
  342. }
  343. public void testEventListTypeSafety() {
  344. EventList<Object> source = new BasicEventList<Object>();
  345. final Set<Class> acceptedTypes = new HashSet<Class>();
  346. acceptedTypes.add(null);
  347. acceptedTypes.add(Integer.class);
  348. acceptedTypes.add(String.class);
  349. ListEventListener typeSafetyListener = GlazedLists.typeSafetyListener(source, acceptedTypes);
  350. source.add(null);
  351. source.add(new Integer(0));
  352. source.add("Testing");
  353. try {
  354. source.add(new Long(23));
  355. fail("Expected an IllegalArgumentException for disallowed type");
  356. } catch (IllegalArgumentException e) {
  357. // expected
  358. }
  359. // the source list is in an inconsistent state so we rebuild the list
  360. source = new BasicEventList<Object>();
  361. typeSafetyListener = GlazedLists.typeSafetyListener(source, acceptedTypes);
  362. source.add(null);
  363. try {
  364. source.set(0, new Long(23));
  365. fail("Expected an IllegalArgumentException for disallowed type");
  366. } catch (IllegalArgumentException e) {
  367. // expected
  368. }
  369. // recover from the exception
  370. source.clear();
  371. source.removeListEventListener(typeSafetyListener);
  372. // these should now succeed now that we're not using the type safety checker any longer
  373. source.add(new Long(23));
  374. source.set(0, new Long(23));
  375. }
  376. public void testEventListLock() {
  377. final EventList<String> source = new BasicEventList<String>();
  378. // asymmetric unlocking of the readlock should fail-fast
  379. try {
  380. source.getReadWriteLock().readLock().unlock();
  381. fail("failed to receive an IllegalStateException when unlocking and unlocked readlock");
  382. } catch (IllegalMonitorStateException iae) {}
  383. // asymmetric unlocking of the writelock should fail-fast
  384. try {
  385. source.getReadWriteLock().writeLock().unlock();
  386. fail("failed to receive an IllegalStateException when unlocking and unlocked writelock");
  387. } catch (IllegalMonitorStateException iae) {}
  388. // symmetric locking/unlocking of the readlock should succeed
  389. source.getReadWriteLock().readLock().lock();
  390. source.getReadWriteLock().readLock().unlock();
  391. // symmetric locking/unlocking of the writelock should succeed
  392. source.getReadWriteLock().writeLock().lock();
  393. source.getReadWriteLock().writeLock().unlock();
  394. }
  395. public void testRemoveAllOnView() {
  396. EventList<String> original = new BasicEventList<String>();
  397. original.addAll(GlazedListsTests.stringToList("ABCDE"));
  398. FilterList<String> filtered = new FilterList<String>(original, Matchers.trueMatcher());
  399. filtered.removeAll(filtered);
  400. assertEquals(Collections.EMPTY_LIST, original);
  401. }
  402. public void testRetainAllOnSelf() {
  403. EventList<String> original = new BasicEventList<String>();
  404. original.addAll(GlazedListsTests.stringToList("ABCDE"));
  405. original.retainAll(original);
  406. assertEquals(GlazedListsTests.stringToList("ABCDE"), original);
  407. }
  408. public void testSublistClear() {
  409. EventList<String> original = new BasicEventList<String>();
  410. original.addAll(GlazedListsTests.stringToList("ABCDE"));
  411. Iterator<String> iterator = original.subList(2, 4).iterator();
  412. iterator.next();
  413. iterator.remove();
  414. iterator.next();
  415. iterator.remove();
  416. assertEquals(GlazedListsTests.stringToList("ABE"), original);
  417. }
  418. public void testAddAllFromView() {
  419. EventList<Integer> original = new BasicEventList<Integer>();
  420. original.addAll(Arrays.asList(new Integer[] { new Integer(0), new Integer(10), new Integer(20), new Integer(30), new Integer(40) }));
  421. FilterList<Integer> filtered = new FilterList<Integer>(original, GlazedListsTests.matchAtLeast(20));
  422. original.addAll(filtered);
  423. assertEquals(Arrays.asList(new Integer[] { new Integer(0), new Integer(10), new Integer(20), new Integer(30), new Integer(40), new Integer(20), new Integer(30), new Integer(40) }), original);
  424. }
  425. public void testSimpleAddAll() {
  426. EventList<String> source = new BasicEventList<String>();
  427. installConsistencyListener(source);
  428. FilterList<String> filterList = new FilterList<String>(source, Matchers.trueMatcher());
  429. filterList.addAll(GlazedListsTests.stringToList("JESSE"));
  430. assertEquals(GlazedListsTests.stringToList("JESSE"), source);
  431. assertEquals(GlazedListsTests.stringToList("JESSE"), filterList);
  432. }
  433. public void testReplace() {
  434. EventList<String> source = new BasicEventList<String>();
  435. installConsistencyListener(source);
  436. source.addAll(GlazedListsTests.stringToList("ROUGHRIDERS"));
  437. source.set(2, "G");
  438. source.set(0, "T");
  439. source.set(4, "R");
  440. source.set(1, "I");
  441. source.set(3, "E");
  442. assertEquals(GlazedListsTests.stringToList("TIGERRIDERS"), source);
  443. }
  444. /**
  445. * This test case was generated from a problem that we received in the field.
  446. * It occured when a crazy amount of list events were being combined into one,
  447. * and we failed to create a simpler test case that still demonstrated the
  448. * problematic behaviour. This is probably due to the way that we sort list
  449. * events while processing them.
  450. */
  451. public void testCombineEvents() {
  452. TransactionList<Object> list = new TransactionList<Object>(new BasicEventList<Object>(), true);
  453. for (int i = 0; i < 16; i++)
  454. list.add(new Integer(0));
  455. ListConsistencyListener.install(list);
  456. list.beginEvent();
  457. for(int i = 0; i < 4; i++) list.add(8, new Object());
  458. for(int j = 7; j >= 0; j--) {
  459. for(int i = 0; i < 10; i++) list.add(j, new Object());
  460. }
  461. list.remove(55);
  462. list.remove(95);
  463. list.remove(14);
  464. list.remove(22);
  465. list.remove(27);
  466. list.remove(78);
  467. list.remove(1);
  468. list.remove(85);
  469. list.remove(52);
  470. list.remove(14);
  471. list.remove(39);
  472. list.remove(38);
  473. list.remove(61);
  474. list.remove(69);
  475. list.remove(8);
  476. list.remove(57);
  477. list.remove(10);
  478. list.remove(5);
  479. list.remove(71);
  480. list.remove(60);
  481. list.remove(42);
  482. list.remove(21);
  483. list.remove(15);
  484. list.remove(59);
  485. list.remove(15);
  486. list.remove(14);
  487. list.remove(24);
  488. list.remove(43);
  489. list.remove(35);
  490. list.remove(12);
  491. list.remove(11);
  492. list.remove(34);
  493. list.remove(42);
  494. list.remove(32);
  495. list.remove(19);
  496. list.add(32, new Integer(92));
  497. list.remove(44);
  498. list.remove(19);
  499. list.remove(45);
  500. list.remove(55);
  501. list.remove(23);
  502. list.remove(11);
  503. list.remove(8);
  504. list.remove(50);
  505. list.remove(29);
  506. list.remove(31);
  507. list.remove(33);
  508. list.remove(45);
  509. list.remove(15);
  510. list.remove(25);
  511. list.remove(8);
  512. list.add(40, new Integer(95));
  513. list.remove(32);
  514. list.remove(3);
  515. list.remove(26);
  516. list.remove(14);
  517. list.remove(36);
  518. list.add(39, new Integer(96));
  519. list.remove(34);
  520. list.remove(21);
  521. list.remove(13);
  522. list.remove(32);
  523. list.remove(30);
  524. list.add(36, new Integer(97));
  525. list.remove(43);
  526. list.remove(2);
  527. list.remove(34);
  528. list.remove(35);
  529. list.remove(17);
  530. list.add(39, new Integer(98));
  531. for(int i = 0; i < 5; i++) {
  532. list.remove(list.size() - 1);
  533. }
  534. list.add(29, new Integer(99));
  535. for(int i = 0; i < 5; i++) {
  536. list.remove(list.size() - 1);
  537. }
  538. list.add(22, new Integer(100));
  539. for(int i = 0; i < 5; i++) {
  540. list.remove(list.size() - 1);
  541. }
  542. list.set(25, new Integer(101)); // critical
  543. for(int j = 0; j < 4; j++) {
  544. for(int i = 0; i < 5; i++) list.remove(0);
  545. list.add(0, new Integer(102));
  546. }
  547. for(int i = 0; i < 10; i++) list.remove(0);
  548. list.add(0, new Integer(107));
  549. for(int i = 0; i < 2; i++) list.remove(0);
  550. list.commitEvent();
  551. }
  552. public void testGenericsOfListEvent() {
  553. final EventList<? extends String> source = GlazedLists.eventListOf((String[]) null);
  554. source.addListEventListener(new ListEventListener<Object>() {
  555. public void listChanged(ListEvent<Object> listChanges) {
  556. listChanges.next();
  557. Object o = listChanges.getSourceList().get(listChanges.getIndex());
  558. assertEquals(String.class, o.getClass());
  559. }
  560. });
  561. source.addListEventListener(new ListEventListener<String>() {
  562. public void listChanged(ListEvent<String> listChanges) {
  563. listChanges.next();
  564. String s = listChanges.getSourceList().get(listChanges.getIndex());
  565. assertEquals(String.class, s.getClass());
  566. }
  567. });
  568. ((EventList)source).add("Test");
  569. }
  570. /**
  571. * Install a consistency listener to the specified list.
  572. */
  573. private static void installConsistencyListener(List list) {
  574. if(list instanceof BasicEventList) {
  575. ListConsistencyListener<String> listConsistencyListener = ListConsistencyListener.install((BasicEventList)list);
  576. listConsistencyListener.setPreviousElementTracked(true);
  577. }
  578. }
  579. }