/grails-validation/src/test/groovy/org/grails/validation/ScaleConstraintTests.java

http://github.com/grails/grails-core · Java · 136 lines · 86 code · 28 blank · 22 comment · 0 complexity · 8c81bebaa03003c8883ed6355bf75108 MD5 · raw file

  1. package org.grails.validation;
  2. import grails.validation.AbstractConstraintTests;
  3. import grails.validation.ConstrainedProperty;
  4. import grails.validation.Constraint;
  5. import grails.validation.TestClass;
  6. import java.math.BigDecimal;
  7. import org.springframework.beans.BeanWrapper;
  8. import org.springframework.beans.BeanWrapperImpl;
  9. import org.springframework.validation.BindException;
  10. import org.springframework.validation.Errors;
  11. /**
  12. * Test cases for 'scale' constraint.
  13. *
  14. * @author Sergey Nebolsin (<a href="mailto:nebolsin@gmail.com"/>)
  15. */
  16. public class ScaleConstraintTests extends AbstractConstraintTests {
  17. @Override
  18. protected Class<?> getConstraintClass() {
  19. return ScaleConstraint.class;
  20. }
  21. public void testValidation() {
  22. testFloat(3, 0.1234f, 0.123f);
  23. // test a Float value that should round up
  24. testFloat(3, 0.1235f, 0.124f);
  25. // test a Float value that should not change (i.e., should require no rounding)
  26. testFloat(3, 0.12f, 0.120f);
  27. // test an integral value masquerading as a Float
  28. testFloat(3, 47f, 47.000f);
  29. // test a scale of zero applied to a Float
  30. testFloat(0, 0.123f, 0f);
  31. // test a Double value that should round down
  32. testDouble(3, 0.1234, 0.123);
  33. // test a Double value that should round up
  34. testDouble(3, 0.1235, 0.124);
  35. // test a Double value that should not change (i.e., should require no rounding)
  36. testDouble(3, 0.12, 0.120);
  37. // test an integral value masquerading as a Double
  38. testDouble(3, 47d, 47.000);
  39. // test a scale of zero applied to a Double
  40. testDouble(0, 0.123, 0d);
  41. // test a BigDecimal value that should round down
  42. testBigDecimal(3, "0.1234", "0.123");
  43. // test a BigDecimal value that should round up
  44. testBigDecimal(3, "0.1235", "0.124");
  45. // test a BigDecimal value that should not change (i.e., should require no rounding)
  46. testBigDecimal(3, "0.12", "0.120");
  47. // test an integral value masquerading as a BigDecimal
  48. testBigDecimal(3, "47", "47.000");
  49. // test a scale of zero applied to a BigDecimal
  50. testBigDecimal(0, "0.123", "0");
  51. }
  52. public void testNullPasses() {
  53. Constraint constraint = getConstraint("testBigDecimal", 2);
  54. assertEquals(null, proceedValidation(constraint, null));
  55. }
  56. public void testValidationOnInvalidField() {
  57. Constraint constraint = getConstraint("testString", 2);
  58. try {
  59. proceedValidation(constraint, "123");
  60. fail("ScaleConstraint must throw an exception when applied to field with unsupported type");
  61. } catch (IllegalArgumentException iae) {
  62. // Great
  63. }
  64. }
  65. public void testCreation() {
  66. ScaleConstraint constraint = (ScaleConstraint) getConstraint("testFloat", 2);
  67. assertEquals(ConstrainedProperty.SCALE_CONSTRAINT, constraint.getName());
  68. assertTrue(constraint.supports(BigDecimal.class));
  69. assertTrue(constraint.supports(Float.class));
  70. assertTrue(constraint.supports(Double.class));
  71. assertFalse(constraint.supports(String.class));
  72. assertFalse(constraint.supports(Object.class));
  73. assertFalse(constraint.supports(null));
  74. assertEquals(2, constraint.getScale());
  75. try {
  76. getConstraint("testFloat", "wrong");
  77. fail("EmailConstraint must throw an exception for non-integer parameters.");
  78. } catch (IllegalArgumentException iae) {
  79. // Great
  80. }
  81. try {
  82. getConstraint("testFloat", -1);
  83. fail("EmailConstraint must throw an exception for negative parameters.");
  84. } catch (IllegalArgumentException iae) {
  85. // Great
  86. }
  87. }
  88. private void testFloat(int scale, float value, float result) {
  89. Constraint constraint = getConstraint("testFloat", scale);
  90. assertEquals(result, proceedValidation(constraint, value));
  91. }
  92. private void testDouble(int scale, double value, double result) {
  93. Constraint constraint = getConstraint("testDouble", scale);
  94. assertEquals(Double.valueOf(result), proceedValidation(constraint, value));
  95. }
  96. private void testBigDecimal(int scale, String value, String result) {
  97. Constraint constraint = getConstraint("testBigDecimal", scale);
  98. assertEquals(new BigDecimal(result), proceedValidation(constraint, new BigDecimal(value)));
  99. }
  100. private Object proceedValidation(Constraint constraint, Object value) {
  101. BeanWrapper constrainedBean = new BeanWrapperImpl(new TestClass());
  102. constrainedBean.setPropertyValue(constraint.getPropertyName(), value);
  103. Errors errors = new BindException(constrainedBean.getWrappedInstance(), constrainedBean.getWrappedClass().getName());
  104. assertFalse(errors.hasErrors());
  105. constraint.validate(constrainedBean.getWrappedInstance(), value, errors);
  106. return constrainedBean.getPropertyValue(constraint.getPropertyName());
  107. }
  108. }