/test/com/wideplay/warp/widgets/binding/MvelRequestBinderTest.java

https://github.com/arnihermann/warp-core · Java · 208 lines · 158 code · 46 blank · 4 comment · 6 complexity · a824b4d075b116f21571e2f1586b4682 MD5 · raw file

  1. package com.wideplay.warp.widgets.binding;
  2. import com.google.inject.Guice;
  3. import com.google.inject.Provider;
  4. import com.wideplay.warp.widgets.Evaluator;
  5. import static org.easymock.EasyMock.*;
  6. import org.testng.annotations.Test;
  7. import javax.servlet.http.HttpServletRequest;
  8. import java.util.Arrays;
  9. import java.util.HashMap;
  10. /**
  11. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  12. */
  13. public class MvelRequestBinderTest {
  14. @Test
  15. public final void bindRequestToPrimitives() {
  16. final HttpServletRequest request = createMock(HttpServletRequest.class);
  17. expect(request.getParameterMap())
  18. .andReturn(new HashMap<String, String[]>() {{
  19. put("name", new String[] { "Dhanji" });
  20. put("age", new String[] { "27" });
  21. put("alive", new String[] { "true" });
  22. put("id", new String[] { "12" });
  23. put("height", new String[] { "6.0" });
  24. }});
  25. replay(request);
  26. final AnObject o = new AnObject();
  27. final Evaluator evaluator = Guice.createInjector()
  28. .getInstance(Evaluator.class);
  29. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  30. public FlashCache get() {
  31. return new BindingFlashCache();
  32. }
  33. })
  34. .bind(request, o);
  35. assert "Dhanji".equals(o.getName());
  36. assert 27 == (o.getAge());
  37. assert 12L == (o.getId());
  38. assert 6.0 == (o.getHeight());
  39. assert (o.isAlive());
  40. verify(request);
  41. }
  42. @Test
  43. public final void bindRequestToCollections() {
  44. final HttpServletRequest request = createMock(HttpServletRequest.class);
  45. final String choice = "AChoice";
  46. //setup preliminary request
  47. final BindingFlashCache cache = new BindingFlashCache();
  48. cache.put("names", Arrays.asList("First", choice, "BobLee", "JasonLee", "Mowglee"));
  49. expect(request.getParameterMap())
  50. .andReturn(new HashMap<String, String[]>() {{
  51. put("select", new String[] { RequestBinder.COLLECTION_BIND_PREFIX + "names/" + choice.hashCode() });
  52. }});
  53. replay(request);
  54. final AnObject o = new AnObject();
  55. final Evaluator evaluator = Guice.createInjector()
  56. .getInstance(Evaluator.class);
  57. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  58. public FlashCache get() {
  59. return cache;
  60. }
  61. })
  62. .bind(request, o);
  63. assert choice.equals(o.getSelect()) : "Collection selectee was not bound: " + o.getSelect();
  64. verify(request);
  65. }
  66. @Test
  67. public final void bindRequestToPrimitivesAndIgnoreExtras() {
  68. final HttpServletRequest request = createMock(HttpServletRequest.class);
  69. expect(request.getParameterMap())
  70. .andReturn(new HashMap<String, String[]>() {{
  71. put("name", new String[] { "Dhanji" });
  72. put("age", new String[] { "27" });
  73. put("alive", new String[] { "true" });
  74. put("id", new String[] { "12" });
  75. put("height", new String[] { "6.0" });
  76. put("weight", new String[] { "6.0" });
  77. put("hiphop", new String[] { "6.0" });
  78. }});
  79. replay(request);
  80. final AnObject o = new AnObject();
  81. final Evaluator evaluator = Guice.createInjector()
  82. .getInstance(Evaluator.class);
  83. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  84. public FlashCache get() {
  85. return new BindingFlashCache();
  86. }
  87. })
  88. .bind(request, o);
  89. assert "Dhanji".equals(o.getName());
  90. assert 27 == (o.getAge());
  91. assert 12L == (o.getId());
  92. assert 6.0 == (o.getHeight());
  93. assert (o.isAlive());
  94. verify(request);
  95. }
  96. @Test(expectedExceptions = InvalidBindingException.class)
  97. public final void bindRequestDetectInvalid() {
  98. final HttpServletRequest request = createMock(HttpServletRequest.class);
  99. expect(request.getParameterMap())
  100. .andReturn(new HashMap<String, String[]>() {{
  101. put("name.toString()", new String[] { "Dhanji" });
  102. put("2 + 12", new String[] { "27" });
  103. put("#@!*^&", new String[] { "true" });
  104. put("id", new String[] { "12" });
  105. put("height", new String[] { "6.0" });
  106. }});
  107. replay(request);
  108. final AnObject o = new AnObject();
  109. final Evaluator evaluator = Guice.createInjector()
  110. .getInstance(Evaluator.class);
  111. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  112. public FlashCache get() {
  113. return new BindingFlashCache();
  114. }
  115. })
  116. .bind(request, o);
  117. }
  118. public static class AnObject {
  119. private String name;
  120. private int age;
  121. private boolean alive;
  122. private Long id;
  123. private double height;
  124. private String select;
  125. public String getSelect() {
  126. return select;
  127. }
  128. public void setSelect(String select) {
  129. this.select = select;
  130. }
  131. public double getHeight() {
  132. return height;
  133. }
  134. public void setHeight(double height) {
  135. this.height = height;
  136. }
  137. public Long getId() {
  138. return id;
  139. }
  140. public void setId(Long id) {
  141. this.id = id;
  142. }
  143. public boolean isAlive() {
  144. return alive;
  145. }
  146. public void setAlive(boolean alive) {
  147. this.alive = alive;
  148. }
  149. public String getName() {
  150. return name;
  151. }
  152. public void setName(String name) {
  153. this.name = name;
  154. }
  155. public int getAge() {
  156. return age;
  157. }
  158. public void setAge(int age) {
  159. this.age = age;
  160. }
  161. }
  162. }