use of org.olat.resource.accesscontrol.provider.auto.IdentifierKey in project openolat by klemens.
the class AdvanceOrderDAOTest method shouldFindPendingAdvaceOrderForIdentifiers.
@Test
public void shouldFindPendingAdvaceOrderForIdentifiers() {
AdvanceOrder aoMatchingInternalId = sut.create(identity, IdentifierKey.internalId, IDENTIFIER_VALUE, freeMethod);
sut.save(aoMatchingInternalId);
AdvanceOrder aoMatchingExternalId = sut.create(identity, IdentifierKey.externalId, IDENTIFIER_VALUE, freeMethod);
sut.save(aoMatchingExternalId);
AdvanceOrder aoNotMatchingRef = sut.create(identity, IdentifierKey.externalRef, IDENTIFIER_VALUE, freeMethod);
sut.save(aoNotMatchingRef);
AdvanceOrder aoNotMatchingValue = sut.create(identity, IdentifierKey.internalId, "not matching", freeMethod);
sut.save(aoNotMatchingValue);
dbInstance.commitAndCloseSession();
Map<IdentifierKey, String> identifiers = new HashMap<>();
identifiers.put(IdentifierKey.internalId, IDENTIFIER_VALUE);
identifiers.put(IdentifierKey.externalId, IDENTIFIER_VALUE);
Collection<AdvanceOrder> advanceOrders = sut.loadPendingAdvanceOrders(identifiers);
assertThat(advanceOrders).hasSize(2).contains(aoMatchingInternalId, aoMatchingExternalId);
}
use of org.olat.resource.accesscontrol.provider.auto.IdentifierKey in project openolat by klemens.
the class AdvanceOrderDAOTest method shouldFindPendingAdvaceOrderForIdentifiersIfNullValues.
@Test
public void shouldFindPendingAdvaceOrderForIdentifiersIfNullValues() {
AdvanceOrder aoMatchingInternalId = sut.create(identity, IdentifierKey.internalId, IDENTIFIER_VALUE, freeMethod);
sut.save(aoMatchingInternalId);
AdvanceOrder aoMatchingExternalId = sut.create(identity, IdentifierKey.externalId, IDENTIFIER_VALUE, freeMethod);
sut.save(aoMatchingExternalId);
AdvanceOrder aoNotMatchingRef = sut.create(identity, IdentifierKey.externalRef, IDENTIFIER_VALUE, freeMethod);
sut.save(aoNotMatchingRef);
AdvanceOrder aoNotMatchingValue = sut.create(identity, IdentifierKey.internalId, "not matching", freeMethod);
sut.save(aoNotMatchingValue);
dbInstance.commitAndCloseSession();
Map<IdentifierKey, String> identifiers = new HashMap<>();
identifiers.put(IdentifierKey.internalId, IDENTIFIER_VALUE);
identifiers.put(null, IDENTIFIER_VALUE);
identifiers.put(IdentifierKey.externalId, "");
Collection<AdvanceOrder> advanceOrders = sut.loadPendingAdvanceOrders(identifiers);
assertThat(advanceOrders).hasSize(1).contains(aoMatchingInternalId);
}
Aggregations