@Ignore
  // TODO test in besDAO
  @Test(expected = ConfigurationException.class)
  public void testAuthenticateTMForInstance_SSO_withoutConfiguredPassword() throws Throwable {

    proxyConfigSettings.put(PlatformConfigurationKey.BSS_AUTH_MODE.name(), "SAML_SP");
    VOUserDetails supplier = createVOUserDetails(10000, "supplier", "tp123");
    controllerConfigSettings.put(ControllerConfigurationKey.BSS_USER_PWD.name(), null);
    // do not add instance specific TP credentials
    createServiceInstance(ProvisioningStatus.COMPLETED, InstanceParameter.PUBLIC_IP);

    authenticateTMForInstance(CTRL_ID, "appInstanceId", supplier.getUserId(), "secret");
    UserBase userBase = new UserBase();
    userBase.addUser(supplier, "secret");
    identityService = userBase.mockIdentityService();
  }