credentials.getAuthorizedRoles().add("test/testrole");
N3AuthStrategy n3auth = new FakeN3AuthStrategy();
n3auth.setWsEndpoint("internal://");
//n3auth = new N3AuthStrategy();
final TokenService ts = ((FakeN3AuthStrategy)n3auth).connect2tokenService();
expect.that(new Expectations(){{
Property[] p = new Property[2];
p[0] = new Property( AuthenticationConstants.PROPERTY_USER, "test/system-test");
p[1] = new Property(AuthenticationConstants.PROPERTY_ROLES, "test/testrole");
one(ts).getTokenProperties(SYSTEM_TEST_TOKEN);will(returnValue(p));