You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Kamil (JIRA)" <ji...@apache.org> on 2017/08/13 13:11:02 UTC

[jira] [Commented] (WICKET-6441) MockHttpSession doesn't call onInvalidate() on invalidate()

    [ https://issues.apache.org/jira/browse/WICKET-6441?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16124918#comment-16124918 ] 

Kamil commented on WICKET-6441:
-------------------------------

[~mgrigorov] - but you can (or actually can't) see it in source code - it's just not being called at all

> MockHttpSession doesn't call onInvalidate() on invalidate()
> -----------------------------------------------------------
>
>                 Key: WICKET-6441
>                 URL: https://issues.apache.org/jira/browse/WICKET-6441
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 8.0.0-M6
>            Reporter: Kamil
>
> org.apache.wicket.protocol.http.mock.MockHttpSession on invalidate calls just:
> {code}
> @Override
> public void invalidate()
> {
> 	attributes.clear();
> 	id = generateSessionId();
> }
> {code}
> while org.apache.wicket.session.HttpSessionStore valueUnbound calls
> {code}
> public void valueUnbound(final HttpSessionBindingEvent evt)
> {
> 	String sessionId = evt.getSession().getId();
> 	log.debug("Session unbound: {}", sessionId);
> 	if (wicketSession != null)
> 	{
> 		wicketSession.onInvalidate();
> 	}
> ...
> }
> {code}
> (valueUnbound is called on org.apache.catalina.session.StandardSession.invalidate)
> this causes to be impossible to properly test what happens on invalidation of the session.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)