use of org.olat.modules.qpool.QuestionItem in project OpenOLAT by OpenOLAT.
the class PoolDAOTest method getPools_ofItem.
@Test
public void getPools_ofItem() {
// create a pool
String poolName = "NGC-" + UUID.randomUUID().toString();
Pool pool1 = poolDao.createPool(null, poolName, true);
Pool pool2 = poolDao.createPool(null, poolName + "-b", true);
QItemType mcType = qItemTypeDao.loadByType(QuestionType.MC.name());
QuestionItem item = questionItemDao.createAndPersist(null, "Galaxy", QTIConstants.QTI_12_FORMAT, Locale.ENGLISH.getLanguage(), null, null, null, mcType);
poolDao.addItemToPool(item, Collections.singletonList(pool1), false);
poolDao.addItemToPool(item, Collections.singletonList(pool2), true);
dbInstance.commitAndCloseSession();
// retrieve the pools
List<Pool> pools = poolDao.getPools(item);
Assert.assertNotNull(pools);
Assert.assertEquals(2, pools.size());
Assert.assertTrue(pools.contains(pool1));
Assert.assertTrue(pools.contains(pool2));
}
use of org.olat.modules.qpool.QuestionItem in project OpenOLAT by OpenOLAT.
the class PoolDAOTest method addItemToPool.
@Test
public void addItemToPool() {
// create a pool
String poolName = "NGC-" + UUID.randomUUID().toString();
Pool pool = poolDao.createPool(null, poolName, true);
Assert.assertNotNull(pool);
QItemType mcType = qItemTypeDao.loadByType(QuestionType.MC.name());
QuestionItem item = questionItemDao.createAndPersist(null, "Galaxy", QTIConstants.QTI_12_FORMAT, Locale.ENGLISH.getLanguage(), null, null, null, mcType);
Assert.assertNotNull(item);
dbInstance.commitAndCloseSession();
// get pools
poolDao.addItemToPool(item, Collections.singletonList(pool), false);
dbInstance.commit();
}
use of org.olat.modules.qpool.QuestionItem in project OpenOLAT by OpenOLAT.
the class PoolDAOTest method isMemberOfPrivatePools_groupOnly.
@Test
public void isMemberOfPrivatePools_groupOnly() {
Identity owner = JunitTestHelper.createAndPersistIdentityAsUser("Group-owner-" + UUID.randomUUID().toString());
Identity participant = JunitTestHelper.createAndPersistIdentityAsUser("Group-participant-" + UUID.randomUUID().toString());
// create a group to share 2 items
QItemType mcType = qItemTypeDao.loadByType(QuestionType.MC.name());
BusinessGroup group = businessGroupDao.createAndPersist(owner, "gdao", "gdao-desc", -1, -1, false, false, false, false, false);
QuestionItem item = questionDao.createAndPersist(owner, "Shared-Item-1", QTIConstants.QTI_12_FORMAT, Locale.ENGLISH.getLanguage(), null, null, null, mcType);
questionDao.share(item, group.getResource());
businessGroupRelationDao.addRole(participant, group, GroupRoles.participant.name());
dbInstance.commitAndCloseSession();
Assert.assertNotNull(item);
Assert.assertNotNull(group);
// retrieve them
boolean isOwnerMember = poolDao.isMemberOfPrivatePools(owner);
Assert.assertTrue(isOwnerMember);
boolean isParticipantMember = poolDao.isMemberOfPrivatePools(participant);
Assert.assertTrue(isParticipantMember);
}
use of org.olat.modules.qpool.QuestionItem in project OpenOLAT by OpenOLAT.
the class PoolDAOTest method removeItemFromPool_paranoid.
@Test
public void removeItemFromPool_paranoid() {
Identity id = JunitTestHelper.createAndPersistIdentityAsUser("Poolman-" + UUID.randomUUID().toString());
// create a pool
String name1 = "NGC-" + UUID.randomUUID().toString();
Pool pool1 = poolDao.createPool(null, name1, true);
String name2 = "NGC-" + UUID.randomUUID().toString();
Pool pool2 = poolDao.createPool(null, name2, true);
QItemType mcType = qItemTypeDao.loadByType(QuestionType.MC.name());
QuestionItem item1 = questionItemDao.createAndPersist(id, "Cluster of stars", QTIConstants.QTI_12_FORMAT, Locale.ENGLISH.getLanguage(), null, null, null, mcType);
QuestionItem item2 = questionItemDao.createAndPersist(id, "Nebula", QTIConstants.QTI_12_FORMAT, Locale.ENGLISH.getLanguage(), null, null, null, mcType);
poolDao.addItemToPool(item1, Collections.singletonList(pool1), false);
poolDao.addItemToPool(item1, Collections.singletonList(pool2), false);
poolDao.addItemToPool(item2, Collections.singletonList(pool1), false);
poolDao.addItemToPool(item2, Collections.singletonList(pool2), false);
dbInstance.commit();
SearchQuestionItemParams params1 = new SearchQuestionItemParams(id, null);
params1.setPoolKey(pool1.getKey());
SearchQuestionItemParams params2 = new SearchQuestionItemParams(id, null);
params2.setPoolKey(pool2.getKey());
// check
int numOfItems_1 = poolDao.countItemsInPool(params1);
Assert.assertEquals(2, numOfItems_1);
int numOfItems_2 = poolDao.countItemsInPool(params2);
Assert.assertEquals(2, numOfItems_2);
// remove
poolDao.removeFromPool(Collections.<QuestionItemShort>singletonList(item1), pool2);
dbInstance.commit();
// check empty pool
int numOfStayingItems_1 = poolDao.countItemsInPool(params1);
Assert.assertEquals(2, numOfStayingItems_1);
int numOfStayingItems_2 = poolDao.countItemsInPool(params2);
Assert.assertEquals(1, numOfStayingItems_2);
// check content
List<QuestionItemView> items_1 = qItemQueriesDao.getItemsOfPool(params1, null, 0, -1);
Assert.assertEquals(2, items_1.size());
List<QuestionItemView> items_2 = qItemQueriesDao.getItemsOfPool(params2, null, 0, -1);
Assert.assertEquals(1, items_2.size());
Assert.assertEquals(item2.getKey(), items_2.get(0).getKey());
// but item exists
QuestionItem reloadedItem = questionItemDao.loadById(item1.getKey());
Assert.assertNotNull(reloadedItem);
}
use of org.olat.modules.qpool.QuestionItem in project OpenOLAT by OpenOLAT.
the class PoolDAOTest method removeItemFromPools.
@Test
public void removeItemFromPools() {
Identity id = JunitTestHelper.createAndPersistIdentityAsUser("Poolman-" + UUID.randomUUID().toString());
// create a pool with an item
String poolName = "NGC-" + UUID.randomUUID().toString();
Pool pool = poolDao.createPool(null, poolName, true);
QItemType mcType = qItemTypeDao.loadByType(QuestionType.MC.name());
QuestionItem item = questionItemDao.createAndPersist(id, "Galaxy", QTIConstants.QTI_12_FORMAT, Locale.ENGLISH.getLanguage(), null, null, null, mcType);
poolDao.addItemToPool(item, Collections.singletonList(pool), false);
dbInstance.commitAndCloseSession();
SearchQuestionItemParams params = new SearchQuestionItemParams(id, null);
params.setPoolKey(pool.getKey());
// check the pool and remove the items
List<QuestionItemView> items = qItemQueriesDao.getItemsOfPool(params, null, 0, -1);
Assert.assertEquals(1, items.size());
List<QuestionItemShort> toDelete = Collections.<QuestionItemShort>singletonList(items.get(0));
int count = poolDao.removeFromPools(toDelete);
Assert.assertEquals(1, count);
dbInstance.commitAndCloseSession();
// check if the pool is empty
List<QuestionItemView> emptyItems = qItemQueriesDao.getItemsOfPool(params, null, 0, -1);
Assert.assertTrue(emptyItems.isEmpty());
}
Aggregations