/jOOQ-examples/jOOQ-spring-guice-example/src/test/java/org/jooq/example/guice/test/Tests.java

http://github.com/jOOQ/jOOQ · Java · 101 lines · 45 code · 13 blank · 43 comment · 0 complexity · a24f88d18612fcf41d2a98a417977c5f MD5 · raw file

  1. /*
  2. * Licensed under the Apache License, Version 2.0 (the "License");
  3. * you may not use this file except in compliance with the License.
  4. * You may obtain a copy of the License at
  5. *
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * Other licenses:
  15. * -----------------------------------------------------------------------------
  16. * Commercial licenses for this work are available. These replace the above
  17. * ASL 2.0 and offer limited warranties, support, maintenance, and commercial
  18. * database integrations.
  19. *
  20. * For more information, please visit: http://www.jooq.org/licenses
  21. *
  22. *
  23. *
  24. *
  25. *
  26. *
  27. *
  28. *
  29. *
  30. *
  31. *
  32. *
  33. *
  34. *
  35. *
  36. *
  37. */
  38. package org.jooq.example.guice.test;
  39. import static com.google.inject.Guice.createInjector;
  40. import static org.junit.Assert.assertEquals;
  41. import static org.junit.Assert.fail;
  42. import org.jooq.example.db.h2.tables.pojos.Author;
  43. import org.jooq.example.guice.Module;
  44. import org.jooq.example.guice.Service;
  45. import org.junit.Test;
  46. import org.springframework.dao.DataAccessException;
  47. /**
  48. * @author Lukas Eder
  49. */
  50. public class Tests {
  51. Service service = createInjector(new Module()).getInstance(Service.class);
  52. @Test
  53. public void testSize() {
  54. assertEquals(2, service.getAuthors().size());
  55. }
  56. @Test
  57. public void testName() {
  58. Author author = service.getAuthor(1);
  59. assertEquals("George", author.getFirstName());
  60. assertEquals("Orwell", author.getLastName());
  61. }
  62. @Test
  63. public void testTransaction() {
  64. try {
  65. service.transactional(new Runnable() {
  66. @Override
  67. public void run() {
  68. // This should work normally
  69. Author author = service.getAuthor(1);
  70. author.setFirstName("John");
  71. author.setLastName("Smith");
  72. assertEquals(1, service.mergeNames(author));
  73. author = service.getAuthor(1);
  74. assertEquals("John", author.getFirstName());
  75. assertEquals("Smith", author.getLastName());
  76. // But this shouldn't work. Authors have books, and there is no cascade delete
  77. service.deleteAuthor(1);
  78. fail();
  79. }
  80. });
  81. fail();
  82. }
  83. catch (DataAccessException expected) {}
  84. // The database should be at its original state
  85. testSize();
  86. testName();
  87. }
  88. }