2 Replies Latest reply on Sep 13, 2007 6:12 AM by pmuir

    SeamTest and JSF validation

    amashtakov

      Hi All,

      I have a web page with the following code:

      <h:inputSecret id="login"
      value="#{pcUserProfile.login}"
      validator="#{pcUserProfile.loginValidate}" />

      I noticed that loginValidate() method of pcUserProfile doesn't invoked
      in my testcase:

      new FacesRequest("/profile.xhtml") {
      @Override
      protected void processValidations() {
      validateValue("#{pcUserProfile.login}", "xyz");
      assert isValidationFailure();
      }
      }.run();

      Seems that SeamTest mock doesn't support this.

      Any ideas/workarounds, probably suggestions about other
      JSF testing framework wich can co-exist with Seam ?

      Thank you in advance,
      /Alexander