Lines Matching defs:mockAuthSession

50     private InternalSession mockAuthSession;
71 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
74 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
83 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
86 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
96 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(sessionProperties));
97 given(mockAuthSession.getProperty("one")).willReturn("a");
98 given(mockAuthSession.getProperty("two")).willReturn("b");
99 given(mockAuthSession.getProperty("three")).willReturn("c");
102 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
115 given(mockAuthSession.getID()).willReturn(authSessionID);
116 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
119 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
128 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
131 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
140 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
143 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
155 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
158 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, subject);