/tests/ch/loway/oss/slicedbread/tasks/PlainPoolTest.java

http://github.com/l3nz/SlicedBread · Java · 134 lines · 76 code · 43 blank · 15 comment · 1 complexity · e5eccc3048dd8d222ce731b3f1b32a8e MD5 · raw file

  1. package ch.loway.oss.slicedbread.tasks;
  2. import ch.loway.oss.slicedbread.MessagingConsole;
  3. import ch.loway.oss.slicedbread.SbTools;
  4. import ch.loway.oss.slicedbread.containers.*;
  5. import ch.loway.oss.slicedbread.messages.Msg;
  6. import ch.loway.oss.slicedbread.messages.wd.MsgPoolRunnable;
  7. import ch.loway.oss.slicedbread.messages.wd.MsgPoolRunnable.RTask;
  8. import ch.loway.oss.slicedbread.messages.wd.MsgThreadPool;
  9. import org.junit.After;
  10. import org.junit.AfterClass;
  11. import org.junit.Before;
  12. import org.junit.BeforeClass;
  13. import org.junit.Test;
  14. import static org.junit.Assert.*;
  15. import org.slf4j.Logger;
  16. import org.slf4j.LoggerFactory;
  17. /**
  18. * Test message execution on a thread pool.
  19. *
  20. * @author lenz
  21. */
  22. public class PlainPoolTest {
  23. public static final Logger logger = LoggerFactory.getLogger(PlainPoolTest.class);
  24. public static final MessagingConsole mc = MessagingConsole.getConsole();
  25. PID me = null;
  26. public PlainPoolTest() {
  27. }
  28. @BeforeClass
  29. public static void setUpClass() throws Exception {
  30. }
  31. @AfterClass
  32. public static void tearDownClass() throws Exception {
  33. }
  34. @Before
  35. public void setUp() {
  36. // q = new MsgQueue();
  37. me = mc.registerExistingThreadByName("HELLO");
  38. }
  39. @After
  40. public void tearDown() {
  41. // q = null;
  42. me = null;
  43. mc.reset();
  44. }
  45. /**
  46. * Checks that messages are returned in the same order as they were built.
  47. */
  48. @Test
  49. public void testStartStopThreadPool() {
  50. // Starts a thread pool
  51. PID watchdog = WatchdogTask.up();
  52. mc.send( MsgThreadPool.build(me, watchdog, "MYPOOL", 5, 5));
  53. assertTrue( "Wait for MYPOOL to go up", SbTools.awaitMailboxUp("MYPOOL", 10000));
  54. System.out.println( "Threads up: " + mc.list() );
  55. // Active threads: 5x pool + 2 ctrl, 1x WD, 1x hello
  56. assertEquals("Threads attivi", 9, mc.list().size() );
  57. mc.send(MsgThreadPool.buildShutdown(me, watchdog, "MYPOOL"));
  58. assertTrue( "Wait for MYPOOL to go down", SbTools.awaitMailboxDown("MYPOOL", 3000));
  59. // Active threads: 1x WD, 1x hello
  60. assertEquals("Threads dopo shutdown", 2, mc.list().size() );
  61. SbTools.shutdown(watchdog);
  62. assertEquals("Threads dopo shutdown anche del WD", 1, mc.list().size() );
  63. }
  64. @Test
  65. public void testRunTasksOnThreadPool() {
  66. logger.error( "Run tasks on thread pool ");
  67. // Starts a thread pool
  68. PID watchdog = WatchdogTask.up();
  69. mc.send( MsgThreadPool.build(me, watchdog, "MYPOOL", 5, 5));
  70. assertTrue( "Pool should be up", SbTools.awaitMailboxUp("MYPOOL", 10000));
  71. logger.error("Current mailboxes: " + mc.list() );
  72. PID pool = mc.findByDescription( "MYPOOL");
  73. for ( int i = 0; i < 20; i++ ) {
  74. final String TASK = "Task/" + i;
  75. mc.send(MsgPoolRunnable.build(me, pool, new RTask() {
  76. public Msg process() {
  77. Logger ll = LoggerFactory.getLogger( TASK );
  78. ll.error( TASK + " - Starting task");
  79. SbTools.sleep(1000);
  80. ll.error( TASK + " - Ending task");
  81. return null;
  82. }
  83. }));
  84. }
  85. SbTools.sleep(10000);
  86. mc.send(MsgThreadPool.buildShutdown(me, watchdog, "MYPOOL"));
  87. assertTrue( "Pool should be down", SbTools.awaitMailboxDown("MYPOOL", 10000));
  88. // Active threads: 1x WD, 1x hello
  89. assertEquals("Threads dopo shutdown", 2, mc.list().size() );
  90. }
  91. }