0 Replies Latest reply on Jan 20, 2009 4:30 PM by jvhnf92

    Nested conversations with seam integration testing

    jvhnf92

      Hello,


      I have a problem when I try to run Seam integration tests.
      What I want to do is the following: simulate a scenario of user interactions (so I use the FacesRequest).


      But it appears that the pages.xml snippet is not interpreted well.
      It does not nest the conversation within the existing one. Eventhough the outcome of the invokeApplication in the FacesRequest was set to 'showSomePage'.


      <page view-id="/home.xhtml" login-required="true">
           <navigation>
                <rule if-outcome="showSomePage">
                       <begin-conversation nested="true"/>
                             <redirect view-id="/some.xhtml" />
                </rule>     
               </navigation>
      </page>
      



      So, my question is... is it possible to use nested conversation declarations in pages.xml when using seam integration testing?