Search in sources :

Example 6 with TestSessionController

use of uk.ac.ed.ph.jqtiplus.running.TestSessionController in project openolat by klemens.

the class AssessmentTreeComponentRenderer method renderAssessmentItemLink.

/**
 * @param sb
 * @param component
 * @param itemNode
 * @return The event used or null
 */
private Event renderAssessmentItemLink(StringOutput sb, AssessmentTreeComponent component, TestPlanNode itemNode, Translator translator) {
    String key = itemNode.getKey().toString();
    Form form = component.getQtiItem().getRootForm();
    String dispatchId = component.getQtiItem().getFormDispatchId();
    TestSessionController testSessionController = component.getTestSessionController();
    TestSessionState testSessionState = testSessionController.getTestSessionState();
    TestPart testPart = testSessionController.getCurrentTestPart();
    TestPlanNodeKey currentTestPartKey = testSessionState.getCurrentTestPartKey();
    TestPartSessionState currentTestPartSessionState = testSessionState.getTestPartSessionStates().get(currentTestPartKey);
    Event event;
    if (testPart == null || testPart.getNavigationMode() == NavigationMode.NONLINEAR) {
        if (testSessionState.isEnded() || currentTestPartSessionState.isEnded()) {
            if (itemNode.getEffectiveItemSessionControl().isAllowReview() || itemNode.getEffectiveItemSessionControl().isShowFeedback()) {
                event = Event.reviewItem;
            } else {
                event = null;
            }
        } else {
            event = Event.selectItem;
        }
    } else {
        event = null;
    }
    if (event == null) {
        sb.append("<span class='o_assessmentitem_nav_disabled'>");
    } else {
        sb.append("<a href='javascript:;' onclick=\"").append(FormJSHelper.getXHRFnCallFor(form, dispatchId, 1, true, true, new NameValuePair("cid", event.name()), new NameValuePair("item", key))).append(";\" class='o_sel_assessmentitem'>");
    }
    String title;
    if (component.isShowTitles()) {
        title = StringHelper.escapeHtml(itemNode.getSectionPartTitle());
    } else {
        int num = component.getCandidateSessionContext().getNumber(itemNode);
        title = translator.translate("question.title", new String[] { Integer.toString(num) });
    }
    sb.append("<span class='questionTitle'>").append(title).append("</span>");
    if (event == null) {
        sb.append("</span>");
    } else {
        sb.append("</a>");
    }
    return event;
}
Also used : NameValuePair(org.olat.core.gui.components.form.flexible.impl.NameValuePair) TestSessionState(uk.ac.ed.ph.jqtiplus.state.TestSessionState) Form(org.olat.core.gui.components.form.flexible.impl.Form) TestPart(uk.ac.ed.ph.jqtiplus.node.test.TestPart) TestSessionController(uk.ac.ed.ph.jqtiplus.running.TestSessionController) Event(org.olat.ims.qti21.ui.QTIWorksAssessmentTestEvent.Event) CandidateEvent(org.olat.ims.qti21.model.audit.CandidateEvent) TestPartSessionState(uk.ac.ed.ph.jqtiplus.state.TestPartSessionState) TestPlanNodeKey(uk.ac.ed.ph.jqtiplus.state.TestPlanNodeKey)

Example 7 with TestSessionController

use of uk.ac.ed.ph.jqtiplus.running.TestSessionController in project openolat by klemens.

the class AssessmentTreeComponentRenderer method renderNavigationAssessmentItem.

private void renderNavigationAssessmentItem(StringOutput sb, AssessmentTreeComponent component, TestPlanNode itemNode, Translator translator, RenderingRequest options) {
    // check if currently rendered item is the active item
    boolean active = false;
    TestSessionController sessionCtr = component.getTestSessionController();
    if (sessionCtr != null && itemNode != null) {
        TestSessionState sessionState = sessionCtr.getTestSessionState();
        if (sessionState != null && sessionState.getCurrentItemKey() != null) {
            TestPlanNodeKey testPlanNodeKey = sessionState.getCurrentItemKey();
            active = (testPlanNodeKey.getIdentifier().equals(itemNode.getIdentifier()));
        }
    }
    sb.append("<li class='o_assessmentitem").append(" active", active).append("'>");
    try {
        renderAssessmentItemMark(sb, component, itemNode, translator);
        renderAssessmentItemAttempts(sb, component, itemNode, translator);
        renderItemStatus(sb, component, itemNode, translator, options);
        renderAssessmentItemLink(sb, component, itemNode, translator);
    } catch (IllegalStateException ex) {
        log.error("", ex);
        sb.append("<span class='o_danger'>ERROR</span>");
    }
    sb.append("</li>");
}
Also used : TestSessionState(uk.ac.ed.ph.jqtiplus.state.TestSessionState) TestSessionController(uk.ac.ed.ph.jqtiplus.running.TestSessionController) TestPlanNodeKey(uk.ac.ed.ph.jqtiplus.state.TestPlanNodeKey)

Example 8 with TestSessionController

use of uk.ac.ed.ph.jqtiplus.running.TestSessionController in project OpenOLAT by OpenOLAT.

the class AssessmentTestDisplayController method resumeSession.

private TestSessionController resumeSession(UserRequest ureq) {
    Date requestTimestamp = ureq.getRequestTimestamp();
    final NotificationRecorder notificationRecorder = new NotificationRecorder(NotificationLevel.INFO);
    TestSessionController controller = createTestSessionController(notificationRecorder);
    if (!controller.getTestSessionState().isEnded() && !controller.getTestSessionState().isExited()) {
        controller.unsuspendTestSession(requestTimestamp);
        TestSessionState testSessionState = controller.getTestSessionState();
        TestPlanNodeKey currentItemKey = testSessionState.getCurrentItemKey();
        if (currentItemKey != null) {
            TestPlanNode currentItemNode = testSessionState.getTestPlan().getNode(currentItemKey);
            ItemProcessingContext itemProcessingContext = controller.getItemProcessingContext(currentItemNode);
            ItemSessionState itemSessionState = itemProcessingContext.getItemSessionState();
            if (itemProcessingContext instanceof ItemSessionController && itemSessionState.isSuspended()) {
                ItemSessionController itemSessionController = (ItemSessionController) itemProcessingContext;
                itemSessionController.unsuspendItemSession(requestTimestamp);
            }
        }
    }
    return controller;
}
Also used : TestPlanNode(uk.ac.ed.ph.jqtiplus.state.TestPlanNode) TestSessionState(uk.ac.ed.ph.jqtiplus.state.TestSessionState) ItemSessionState(uk.ac.ed.ph.jqtiplus.state.ItemSessionState) NotificationRecorder(uk.ac.ed.ph.jqtiplus.notification.NotificationRecorder) TestSessionController(uk.ac.ed.ph.jqtiplus.running.TestSessionController) ItemSessionController(uk.ac.ed.ph.jqtiplus.running.ItemSessionController) Date(java.util.Date) TestPlanNodeKey(uk.ac.ed.ph.jqtiplus.state.TestPlanNodeKey) ItemProcessingContext(uk.ac.ed.ph.jqtiplus.running.ItemProcessingContext)

Example 9 with TestSessionController

use of uk.ac.ed.ph.jqtiplus.running.TestSessionController in project OpenOLAT by OpenOLAT.

the class AssessmentTestDisplayController method createTestSessionController.

public TestSessionController createTestSessionController(TestSessionState testSessionState, NotificationRecorder notificationRecorder) {
    /* Try to resolve the underlying JQTI+ object */
    final TestProcessingMap testProcessingMap = getTestProcessingMap();
    if (testProcessingMap == null) {
        return null;
    }
    /* Create config for TestSessionController */
    final TestSessionControllerSettings testSessionControllerSettings = new TestSessionControllerSettings();
    testSessionControllerSettings.setTemplateProcessingLimit(computeTemplateProcessingLimit());
    /* Create controller and wire up notification recorder (if passed) */
    final TestSessionController result = new TestSessionController(qtiService.jqtiExtensionManager(), testSessionControllerSettings, testProcessingMap, testSessionState);
    if (notificationRecorder != null) {
        result.addNotificationListener(notificationRecorder);
    }
    return result;
}
Also used : TestSessionControllerSettings(uk.ac.ed.ph.jqtiplus.running.TestSessionControllerSettings) TestProcessingMap(uk.ac.ed.ph.jqtiplus.state.TestProcessingMap) TestSessionController(uk.ac.ed.ph.jqtiplus.running.TestSessionController)

Example 10 with TestSessionController

use of uk.ac.ed.ph.jqtiplus.running.TestSessionController in project OpenOLAT by OpenOLAT.

the class AssessmentTestComponentRenderer method render.

@Override
public void render(Renderer renderer, StringOutput sb, Component source, URLBuilder ubu, Translator translator, RenderResult renderResult, String[] args) {
    AssessmentTestComponent cmp = (AssessmentTestComponent) source;
    TestSessionController testSessionController = cmp.getTestSessionController();
    if (testSessionController.getTestSessionState().isEnded()) {
        renderTerminated(sb, translator);
    } else {
        /* Create appropriate options that link back to this controller */
        TestSessionState testSessionState = testSessionController.getTestSessionState();
        CandidateSessionContext candidateSessionContext = cmp.getCandidateSessionContext();
        final AssessmentTestSession candidateSession = candidateSessionContext.getCandidateSession();
        if (candidateSession.isExploded()) {
            renderExploded(sb, translator);
        } else if (candidateSessionContext.isTerminated()) {
            renderTerminated(sb, translator);
        } else {
            /* Touch the session's duration state if appropriate */
            if (testSessionState.isEntered() && !testSessionState.isEnded()) {
                final Date timestamp = candidateSessionContext.getCurrentRequestTimestamp();
                testSessionController.touchDurations(timestamp);
            }
            /* Render event */
            AssessmentRenderer renderHints = new AssessmentRenderer(renderer);
            renderTestEvent(testSessionController, renderHints, sb, cmp, ubu, translator);
        }
    }
}
Also used : CandidateSessionContext(org.olat.ims.qti21.ui.CandidateSessionContext) AssessmentTestSession(org.olat.ims.qti21.AssessmentTestSession) TestSessionState(uk.ac.ed.ph.jqtiplus.state.TestSessionState) TestSessionController(uk.ac.ed.ph.jqtiplus.running.TestSessionController) Date(java.util.Date)

Aggregations

TestSessionController (uk.ac.ed.ph.jqtiplus.running.TestSessionController)18 TestSessionState (uk.ac.ed.ph.jqtiplus.state.TestSessionState)12 NameValuePair (org.olat.core.gui.components.form.flexible.impl.NameValuePair)6 TestPlanNodeKey (uk.ac.ed.ph.jqtiplus.state.TestPlanNodeKey)6 Date (java.util.Date)4 Form (org.olat.core.gui.components.form.flexible.impl.Form)4 AssessmentTestSession (org.olat.ims.qti21.AssessmentTestSession)4 CandidateEvent (org.olat.ims.qti21.model.audit.CandidateEvent)4 CandidateSessionContext (org.olat.ims.qti21.ui.CandidateSessionContext)4 AssessmentRenderFunctions.contentAsString (org.olat.ims.qti21.ui.components.AssessmentRenderFunctions.contentAsString)4 TestSessionControllerSettings (uk.ac.ed.ph.jqtiplus.running.TestSessionControllerSettings)4 ItemSessionState (uk.ac.ed.ph.jqtiplus.state.ItemSessionState)4 TestPlanNode (uk.ac.ed.ph.jqtiplus.state.TestPlanNode)4 TestProcessingMap (uk.ac.ed.ph.jqtiplus.state.TestProcessingMap)4 Component (org.olat.core.gui.components.Component)2 RenderResult (org.olat.core.gui.render.RenderResult)2 CandidateTestEventType (org.olat.ims.qti21.model.audit.CandidateTestEventType)2 Event (org.olat.ims.qti21.ui.QTIWorksAssessmentTestEvent.Event)2 TestPart (uk.ac.ed.ph.jqtiplus.node.test.TestPart)2 NotificationRecorder (uk.ac.ed.ph.jqtiplus.notification.NotificationRecorder)2