/sitebricks-test-support/src/main/java/com/google/sitebricks/acceptance/util/SitebricksServiceTest.java

http://github.com/dhanji/sitebricks · Java · 141 lines · 77 code · 26 blank · 38 comment · 2 complexity · bd989ecc8be94ef1595b0d6269dd9856 MD5 · raw file

  1. package com.google.sitebricks.acceptance.util;
  2. import java.io.File;
  3. import java.lang.annotation.Annotation;
  4. import java.util.Properties;
  5. import org.junit.After;
  6. import org.junit.Before;
  7. import org.testng.annotations.AfterMethod;
  8. import org.testng.annotations.AfterSuite;
  9. import org.testng.annotations.BeforeMethod;
  10. import org.testng.annotations.BeforeSuite;
  11. import com.google.inject.Binder;
  12. import com.google.inject.Guice;
  13. import com.google.inject.Injector;
  14. import com.google.inject.Key;
  15. import com.google.inject.Module;
  16. import com.google.inject.name.Names;
  17. import com.google.sitebricks.SitebricksModule;
  18. /**
  19. * Abstract TestNG/JUnit4 test that automatically binds and injects itself.
  20. */
  21. public abstract class SitebricksServiceTest implements Module {
  22. // ----------------------------------------------------------------------
  23. // Implementation fields
  24. // ----------------------------------------------------------------------
  25. private String basedir;
  26. private Injector injector;
  27. private Jetty server;
  28. // ----------------------------------------------------------------------
  29. // Setup
  30. // ----------------------------------------------------------------------
  31. @BeforeSuite
  32. public void beforeSuite() throws Exception {
  33. //
  34. // Find a free port for the tests
  35. //
  36. server = new Jetty("src/test/webapp", 0);
  37. server.start();
  38. }
  39. @AfterSuite
  40. public void afterSuite() throws Exception {
  41. server.stop();
  42. }
  43. @Before
  44. @BeforeMethod
  45. public void setUp() {
  46. injector = Guice.createInjector(new SetUpModule(), sitebricksModule());
  47. }
  48. protected SitebricksModule sitebricksModule() {
  49. return new SitebricksModule();
  50. }
  51. @After
  52. @AfterMethod
  53. public void tearDown() {
  54. }
  55. final class SetUpModule implements Module {
  56. public void configure(final Binder binder) {
  57. binder.install(SitebricksServiceTest.this);
  58. binder.requestInjection(SitebricksServiceTest.this);
  59. }
  60. }
  61. // ----------------------------------------------------------------------
  62. // Container configuration methods
  63. // ----------------------------------------------------------------------
  64. /**
  65. * Custom injection bindings.
  66. *
  67. * @param binder
  68. * The Guice binder
  69. */
  70. public void configure(final Binder binder) {
  71. // place any per-test bindings here...
  72. }
  73. /**
  74. * Custom property values.
  75. *
  76. * @param properties
  77. * The test properties
  78. */
  79. public void configure(final Properties properties) {
  80. // put any per-test properties here...
  81. }
  82. // ----------------------------------------------------------------------
  83. // Container lookup methods
  84. // ----------------------------------------------------------------------
  85. public final <T> T lookup(final Class<T> type) {
  86. return lookup(Key.get(type));
  87. }
  88. public final <T> T lookup(final Class<T> type, final String name) {
  89. return lookup(type, Names.named(name));
  90. }
  91. public final <T> T lookup(final Class<T> type, final Class<? extends Annotation> qualifier) {
  92. return lookup(Key.get(type, qualifier));
  93. }
  94. public final <T> T lookup(final Class<T> type, final Annotation qualifier) {
  95. return lookup(Key.get(type, qualifier));
  96. }
  97. // ----------------------------------------------------------------------
  98. // Container resource methods
  99. // ----------------------------------------------------------------------
  100. public final String getBasedir() {
  101. if (null == basedir) {
  102. basedir = System.getProperty("basedir", new File("").getAbsolutePath());
  103. }
  104. return basedir;
  105. }
  106. // ----------------------------------------------------------------------
  107. // Implementation methods
  108. // ----------------------------------------------------------------------
  109. private final <T> T lookup(final Key<T> key) {
  110. return injector.getInstance(key);
  111. }
  112. protected String baseUrl() {
  113. return "http://localhost:" + server.getListeningPort() + "/sitebricks";
  114. }
  115. }