Search in sources :

Example 1 with Saml10ObjectBuilder

use of org.apereo.cas.support.saml.util.Saml10ObjectBuilder in project cas by apereo.

the class Saml10FailureResponseViewTests method setUp.

@Before
public void setUp() throws Exception {
    final Saml10ObjectBuilder builder = new Saml10ObjectBuilder(this.configBean);
    view = new Saml10FailureResponseView(null, null, "attribute", builder, new DefaultArgumentExtractor(new SamlServiceFactory()), StandardCharsets.UTF_8.name(), 0);
}
Also used : DefaultArgumentExtractor(org.apereo.cas.web.support.DefaultArgumentExtractor) SamlServiceFactory(org.apereo.cas.support.saml.authentication.principal.SamlServiceFactory) Saml10ObjectBuilder(org.apereo.cas.support.saml.util.Saml10ObjectBuilder) Before(org.junit.Before)

Example 2 with Saml10ObjectBuilder

use of org.apereo.cas.support.saml.util.Saml10ObjectBuilder in project cas by apereo.

the class Saml10SuccessResponseViewTests method setUp.

@Before
public void setUp() throws Exception {
    final List<RegisteredService> list = new ArrayList<>();
    list.add(RegisteredServiceTestUtils.getRegisteredService("https://.+"));
    final InMemoryServiceRegistry dao = new InMemoryServiceRegistry();
    dao.setRegisteredServices(list);
    final DefaultServicesManager mgmr = new DefaultServicesManager(dao);
    mgmr.load();
    this.response = new Saml10SuccessResponseView(new DefaultCasProtocolAttributeEncoder(mgmr, NoOpCipherExecutor.getInstance()), mgmr, "attribute", new Saml10ObjectBuilder(configBean), new DefaultArgumentExtractor(new SamlServiceFactory()), StandardCharsets.UTF_8.name(), 1000, "testIssuer", "whatever");
}
Also used : RegisteredService(org.apereo.cas.services.RegisteredService) DefaultArgumentExtractor(org.apereo.cas.web.support.DefaultArgumentExtractor) SamlServiceFactory(org.apereo.cas.support.saml.authentication.principal.SamlServiceFactory) ArrayList(java.util.ArrayList) DefaultCasProtocolAttributeEncoder(org.apereo.cas.authentication.support.DefaultCasProtocolAttributeEncoder) DefaultServicesManager(org.apereo.cas.services.DefaultServicesManager) Saml10ObjectBuilder(org.apereo.cas.support.saml.util.Saml10ObjectBuilder) InMemoryServiceRegistry(org.apereo.cas.services.InMemoryServiceRegistry) Before(org.junit.Before)

Aggregations

SamlServiceFactory (org.apereo.cas.support.saml.authentication.principal.SamlServiceFactory)2 Saml10ObjectBuilder (org.apereo.cas.support.saml.util.Saml10ObjectBuilder)2 DefaultArgumentExtractor (org.apereo.cas.web.support.DefaultArgumentExtractor)2 Before (org.junit.Before)2 ArrayList (java.util.ArrayList)1 DefaultCasProtocolAttributeEncoder (org.apereo.cas.authentication.support.DefaultCasProtocolAttributeEncoder)1 DefaultServicesManager (org.apereo.cas.services.DefaultServicesManager)1 InMemoryServiceRegistry (org.apereo.cas.services.InMemoryServiceRegistry)1 RegisteredService (org.apereo.cas.services.RegisteredService)1