/core/src/test/java/hudson/util/FormValidationTest.java

http://github.com/jenkinsci/jenkins · Java · 118 lines · 74 code · 17 blank · 27 comment · 0 complexity · 4bf621b7f75397ccf9ed869f79209a75 MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2010, Seiji Sogabe
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package hudson.util;
  25. import static org.hamcrest.CoreMatchers.containsString;
  26. import static org.hamcrest.CoreMatchers.not;
  27. import static org.hamcrest.MatcherAssert.assertThat;
  28. import static org.junit.Assert.assertEquals;
  29. import static org.junit.Assert.assertNotNull;
  30. import static org.junit.Assert.assertTrue;
  31. import java.util.Arrays;
  32. import org.junit.Test;
  33. /**
  34. * @author sogabe
  35. */
  36. public class FormValidationTest {
  37. @Test
  38. public void testValidateRequired_OK() {
  39. FormValidation actual = FormValidation.validateRequired("Name");
  40. assertEquals(FormValidation.ok(), actual);
  41. }
  42. @Test
  43. public void testValidateRequired_Null() {
  44. FormValidation actual = FormValidation.validateRequired(null);
  45. assertNotNull(actual);
  46. assertEquals(FormValidation.Kind.ERROR, actual.kind);
  47. }
  48. @Test
  49. public void testValidateRequired_Empty() {
  50. FormValidation actual = FormValidation.validateRequired(" ");
  51. assertNotNull(actual);
  52. assertEquals(FormValidation.Kind.ERROR, actual.kind);
  53. }
  54. // @Issue("JENKINS-7438")
  55. @Test
  56. public void testMessage() {
  57. assertEquals("test msg", FormValidation.errorWithMarkup("test msg").getMessage());
  58. }
  59. @Test
  60. public void aggregateZeroValidations() {
  61. assertEquals(FormValidation.ok(), aggregate());
  62. }
  63. @Test
  64. public void aggregateSingleValidations() {
  65. FormValidation ok = FormValidation.ok();
  66. FormValidation warning = FormValidation.warning("");
  67. FormValidation error = FormValidation.error("");
  68. assertEquals(ok, aggregate(ok));
  69. assertEquals(warning, aggregate(warning));
  70. assertEquals(error, aggregate(error));
  71. }
  72. @Test
  73. public void aggregateSeveralValidations() {
  74. FormValidation ok = FormValidation.ok("ok_message");
  75. FormValidation warning = FormValidation.warning("warning_message");
  76. FormValidation error = FormValidation.error("error_message");
  77. final FormValidation ok_ok = aggregate(ok, ok);
  78. assertEquals(FormValidation.Kind.OK, ok_ok.kind);
  79. assertTrue(ok_ok.renderHtml().contains(ok.getMessage()));
  80. final FormValidation ok_warning = aggregate(ok, warning);
  81. assertEquals(FormValidation.Kind.WARNING, ok_warning.kind);
  82. assertTrue(ok_warning.renderHtml().contains(ok.getMessage()));
  83. assertTrue(ok_warning.renderHtml().contains(warning.getMessage()));
  84. final FormValidation ok_error = aggregate(ok, error);
  85. assertEquals(FormValidation.Kind.ERROR, ok_error.kind);
  86. assertTrue(ok_error.renderHtml().contains(ok.getMessage()));
  87. assertTrue(ok_error.renderHtml().contains(error.getMessage()));
  88. final FormValidation warning_error = aggregate(warning, error);
  89. assertEquals(FormValidation.Kind.ERROR, warning_error.kind);
  90. assertTrue(warning_error.renderHtml().contains(error.getMessage()));
  91. assertTrue(warning_error.renderHtml().contains(warning.getMessage()));
  92. }
  93. private FormValidation aggregate(FormValidation... fvs) {
  94. return FormValidation.aggregate(Arrays.asList(fvs));
  95. }
  96. @Test
  97. public void formValidationException() {
  98. FormValidation fv = FormValidation.error(new Exception("<html"), "Message<html");
  99. assertThat(fv.renderHtml(), not(containsString("<html")));
  100. }
  101. }