You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Martin Grigorov (JIRA)" <ji...@apache.org> on 2010/11/09 21:00:12 UTC

[jira] Updated: (WICKET-3145) MockWebApplication does not allow to manually clear cookiesOfThisSession

     [ https://issues.apache.org/jira/browse/WICKET-3145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Grigorov updated WICKET-3145:
------------------------------------

    Description: 
MockWebApplication does not allow to manually clear cookiesOfThisSession

Often it is needed for testing various cookie scenarios to have the ability to clear cookiesOfThisSession and sort of start fresh. Especially when reusing WicketTester between junit tests for faster performance and less initialization overhead.

Workaround:
      Collection<?> cookiesOfThisSession = Utils.getFieldValue("cookiesOfThisSession", Collection.class, wicketTester);
      cookiesOfThisSession.clear();


  was:
MockHttpServletResponse does not allow to manually clear cookiesOfThisSession

Often it is needed for testing various cookie scenarios to have the ability to clear cookiesOfThisSession and sort of start fresh. Especially when reusing WicketTester between junit tests for faster performance and less initialization overhead.

Workaround:
      Collection<?> cookiesOfThisSession = Utils.getFieldValue("cookiesOfThisSession", Collection.class, wicketTester);
      cookiesOfThisSession.clear();


        Summary: MockWebApplication does not allow to manually clear cookiesOfThisSession  (was: MockHttpServletResponse does not allow to manually clear cookiesOfThisSession)

This variable is a member of MockWebApplication, not MockHttpServletResponse.

> MockWebApplication does not allow to manually clear cookiesOfThisSession
> ------------------------------------------------------------------------
>
>                 Key: WICKET-3145
>                 URL: https://issues.apache.org/jira/browse/WICKET-3145
>             Project: Wicket
>          Issue Type: Improvement
>          Components: wicket
>    Affects Versions: 1.4.12
>            Reporter: Martin Makundi
>            Priority: Minor
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> MockWebApplication does not allow to manually clear cookiesOfThisSession
> Often it is needed for testing various cookie scenarios to have the ability to clear cookiesOfThisSession and sort of start fresh. Especially when reusing WicketTester between junit tests for faster performance and less initialization overhead.
> Workaround:
>       Collection<?> cookiesOfThisSession = Utils.getFieldValue("cookiesOfThisSession", Collection.class, wicketTester);
>       cookiesOfThisSession.clear();

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.