/sitebricks/src/test/java/com/google/sitebricks/binding/MvelRequestBinderTest.java

http://github.com/dhanji/sitebricks · Java · 275 lines · 212 code · 59 blank · 4 comment · 31 complexity · b8ce2784d25a0bb3cfd45f8ade3f18bf MD5 · raw file

  1. package com.google.sitebricks.binding;
  2. import com.google.inject.Guice;
  3. import com.google.inject.Provider;
  4. import com.google.sitebricks.Evaluator;
  5. import com.google.sitebricks.TestRequestCreator;
  6. import org.testng.annotations.Test;
  7. import javax.servlet.http.HttpServletRequest;
  8. import java.util.Arrays;
  9. import java.util.HashMap;
  10. import static org.easymock.EasyMock.*;
  11. /**
  12. * @author Dhanji R. Prasanna (dhanji@gmail.com)
  13. */
  14. public class MvelRequestBinderTest {
  15. @Test
  16. public final void bindRequestToPrimitives() {
  17. final HttpServletRequest request = createMock(HttpServletRequest.class);
  18. expect(request.getParameterMap())
  19. .andReturn(new HashMap<String, String[]>() {{
  20. put("name", new String[]{"Dhanji"});
  21. put("age", new String[]{"27"});
  22. put("alive", new String[]{"true"});
  23. put("id", new String[]{"12"});
  24. put("height", new String[]{"6.0"});
  25. }});
  26. replay(request);
  27. final AnObject o = new AnObject();
  28. final Evaluator evaluator = Guice.createInjector()
  29. .getInstance(Evaluator.class);
  30. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  31. public FlashCache get() {
  32. return new HttpSessionFlashCache();
  33. }
  34. }).bind(TestRequestCreator.from(request, null), 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 HttpSessionFlashCache cache = new HttpSessionFlashCache();
  48. cache.put("names", Arrays.asList("First", choice, "BobLee", "JasonLee", "Mowglee"));
  49. expect(request.getParameterMap())
  50. .andReturn(new HashMap<String, String[]>() {{
  51. put("select",
  52. new String[]{RequestBinder.COLLECTION_BIND_PREFIX + "names/" + choice.hashCode()});
  53. }});
  54. replay(request);
  55. final AnObject o = new AnObject();
  56. final Evaluator evaluator = Guice.createInjector()
  57. .getInstance(Evaluator.class);
  58. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  59. public FlashCache get() {
  60. return cache;
  61. }
  62. })
  63. .bind(TestRequestCreator.from(request, null), o);
  64. assert choice.equals(o.getSelect()) : "Collection selectee was not bound: " + o.getSelect();
  65. verify(request);
  66. }
  67. @Test
  68. public final void bindRequestToPrimitivesAndIgnoreExtras() {
  69. final HttpServletRequest request = createMock(HttpServletRequest.class);
  70. expect(request.getParameterMap())
  71. .andReturn(new HashMap<String, String[]>() {{
  72. put("name", new String[]{"Dhanji"});
  73. put("age", new String[]{"27"});
  74. put("alive", new String[]{"true"});
  75. put("id", new String[]{"12"});
  76. put("height", new String[]{"6.0"});
  77. put("weight", new String[]{"6.0"});
  78. put("hiphop", new String[]{"6.0"});
  79. }});
  80. replay(request);
  81. final AnObject o = new AnObject();
  82. final Evaluator evaluator = Guice.createInjector()
  83. .getInstance(Evaluator.class);
  84. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  85. public FlashCache get() {
  86. return new HttpSessionFlashCache();
  87. }
  88. })
  89. .bind(TestRequestCreator.from(request, null), o);
  90. assert "Dhanji".equals(o.getName());
  91. assert 27 == (o.getAge());
  92. assert 12L == (o.getId());
  93. assert 6.0 == (o.getHeight());
  94. assert (o.isAlive());
  95. verify(request);
  96. }
  97. @Test
  98. public final void bindRequestDetectPartiallyInvalid() {
  99. final HttpServletRequest request = createMock(HttpServletRequest.class);
  100. expect(request.getParameterMap())
  101. .andReturn(new HashMap<String, String[]>() {{
  102. put("name.toString()", new String[]{"Dhanji"});
  103. put("2 + 12", new String[]{"27"});
  104. put("#@!*^&", new String[]{"true"});
  105. put("id", new String[]{"12"});
  106. put("heig-ht", new String[]{"6.0"});
  107. }});
  108. replay(request);
  109. final AnObject o = new AnObject();
  110. final AnObject expected = new AnObject();
  111. expected.setId(12L);
  112. final Evaluator evaluator = Guice.createInjector()
  113. .getInstance(Evaluator.class);
  114. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  115. public FlashCache get() {
  116. return new HttpSessionFlashCache();
  117. }
  118. }).bind(TestRequestCreator.from(request, null), o);
  119. System.out.println(o.getId());
  120. assert expected.equals(o) : "Invalid binding was allowed!";
  121. }
  122. @Test
  123. public final void bindRequestDetectTotallyInvalid() {
  124. final HttpServletRequest request = createMock(HttpServletRequest.class);
  125. expect(request.getParameterMap())
  126. .andReturn(new HashMap<String, String[]>() {{
  127. put("name.toString()", new String[]{"Dhanji"});
  128. put("2 + 12", new String[]{"27"});
  129. put("#@!*^&", new String[]{"true"});
  130. put("i.d", new String[]{"12"});
  131. put("hei-ght", new String[]{"6.0"});
  132. }});
  133. replay(request);
  134. final AnObject o = new AnObject();
  135. final Evaluator evaluator = Guice.createInjector()
  136. .getInstance(Evaluator.class);
  137. new MvelRequestBinder(evaluator, new Provider<FlashCache>() {
  138. public FlashCache get() {
  139. return new HttpSessionFlashCache();
  140. }
  141. })
  142. .bind(TestRequestCreator.from(request, null), o);
  143. assert new AnObject().equals(o) : "Invalid binding was allowed!";
  144. }
  145. @SuppressWarnings({"UnusedDeclaration"})
  146. public static class AnObject {
  147. private String name;
  148. private int age;
  149. private boolean alive;
  150. private Long id;
  151. private double height;
  152. private String select;
  153. public String getSelect() {
  154. return select;
  155. }
  156. public void setSelect(String select) {
  157. this.select = select;
  158. }
  159. public double getHeight() {
  160. return height;
  161. }
  162. public void setHeight(double height) {
  163. this.height = height;
  164. }
  165. public Long getId() {
  166. return id;
  167. }
  168. public void setId(Long id) {
  169. this.id = id;
  170. }
  171. public boolean isAlive() {
  172. return alive;
  173. }
  174. public void setAlive(boolean alive) {
  175. this.alive = alive;
  176. }
  177. public String getName() {
  178. return name;
  179. }
  180. public void setName(String name) {
  181. this.name = name;
  182. }
  183. public int getAge() {
  184. return age;
  185. }
  186. public void setAge(int age) {
  187. this.age = age;
  188. }
  189. @Override
  190. public boolean equals(Object o) {
  191. if (this == o) return true;
  192. if (o == null || getClass() != o.getClass()) return false;
  193. AnObject anObject = (AnObject) o;
  194. if (age != anObject.age) return false;
  195. if (alive != anObject.alive) return false;
  196. if (Double.compare(anObject.height, height) != 0) return false;
  197. if (id != null ? !id.equals(anObject.id) : anObject.id != null) return false;
  198. if (name != null ? !name.equals(anObject.name) : anObject.name != null) return false;
  199. if (select != null ? !select.equals(anObject.select) : anObject.select != null) return false;
  200. return true;
  201. }
  202. @Override
  203. public int hashCode() {
  204. int result;
  205. long temp;
  206. result = name != null ? name.hashCode() : 0;
  207. result = 31 * result + age;
  208. result = 31 * result + (alive ? 1 : 0);
  209. result = 31 * result + (id != null ? id.hashCode() : 0);
  210. temp = height != +0.0d ? Double.doubleToLongBits(height) : 0L;
  211. result = 31 * result + (int) (temp ^ (temp >>> 32));
  212. result = 31 * result + (select != null ? select.hashCode() : 0);
  213. return result;
  214. }
  215. }
  216. }