blob: c2d8c3476424debdb174477e892f6431f448794b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.testing.client.runner.fixture;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.scout.rt.client.IClientSession;
import org.eclipse.scout.testing.client.DefaultTestClientSessionProvider;
public class LoginTestSessionProvider extends DefaultTestClientSessionProvider {
private static IClientSession s_currentSession;
private static List<String> s_beforeStartRunAs;
private static List<String> s_afterStartRunAs;
public LoginTestSessionProvider() {
clearProtocol();
}
@Override
public <T extends IClientSession> T getOrCreateClientSession(Class<T> clazz, String runAs, boolean createNew) {
T clientSession = super.getOrCreateClientSession(clazz, runAs, createNew);
s_currentSession = clientSession;
return clientSession;
}
@Override
protected void beforeStartSession(IClientSession clientSession, String runAs) {
s_beforeStartRunAs.add(runAs);
}
@Override
protected void afterStartSession(IClientSession clientSession, String runAs) {
s_afterStartRunAs.add(runAs);
}
public static void clearProtocol() {
s_beforeStartRunAs = new ArrayList<String>();
s_afterStartRunAs = new ArrayList<String>();
s_currentSession = null;
}
public static IClientSession getCurrentSession() {
return s_currentSession;
}
public static List<String> getBeforeStartRunAs() {
return s_beforeStartRunAs;
}
public static List<String> getAfterStartRunAs() {
return s_afterStartRunAs;
}
}