/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <p> * Licensed under the Apache License, Version 2.0 (the "License"); <br> * you may not use this file except in compliance with the License.<br> * You may obtain a copy of the License at the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <p> * Unless required by applicable law or agreed to in writing,<br> * software distributed under the License is distributed on an "AS IS" BASIS, <br> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> * See the License for the specific language governing permissions and <br> * limitations under the License. * <p> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.ims.qti21.model.xml; import java.io.File; import java.io.IOException; import java.net.URISyntaxException; import java.net.URL; import java.util.Arrays; import java.util.Collection; import javax.xml.parsers.ParserConfigurationException; import javax.xml.stream.XMLStreamException; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; import org.olat.core.logging.OLog; import org.olat.core.logging.Tracing; import org.olat.fileresource.types.ImsQTI21Resource.PathResourceLocator; import org.xml.sax.SAXException; import uk.ac.ed.ph.jqtiplus.JqtiExtensionManager; import uk.ac.ed.ph.jqtiplus.provision.BadResourceException; import uk.ac.ed.ph.jqtiplus.reading.AssessmentObjectXmlLoader; import uk.ac.ed.ph.jqtiplus.reading.QtiXmlReader; import uk.ac.ed.ph.jqtiplus.validation.ItemValidationResult; import uk.ac.ed.ph.jqtiplus.xmlutils.locators.ResourceLocator; /** * Only to play with * * * Initial date: 25.06.2015<br> * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com * */ @RunWith(Parameterized.class) public class OpenOLATAssessementItemsTest { private static final OLog log = Tracing.createLoggerFor(OpenOLATAssessementItemsTest.class); @Parameters public static Collection<Object[]> data() { return Arrays.asList(new Object[][] { { "mca8e3671bb142ba8dd96d574cf0d0e0.xml" }, { "essay3c2454b4c4dbd64347ea9df54cd.xml" } }); } private String xmlFilename; public OpenOLATAssessementItemsTest(String xmlFilename) { this.xmlFilename = xmlFilename; } @Test public void ourItem() throws IOException, XMLStreamException, SAXException, ParserConfigurationException, URISyntaxException { URL xmlUrl = OpenOLATAssessementItemsTest.class.getResource("resources/openolat/" + xmlFilename); File xmlFile = new File(xmlUrl.toURI()); QtiXmlReader qtiXmlReader = new QtiXmlReader(new JqtiExtensionManager()); ResourceLocator fileResourceLocator = new PathResourceLocator(xmlFile.toPath()); AssessmentObjectXmlLoader assessmentObjectXmlLoader = new AssessmentObjectXmlLoader(qtiXmlReader, fileResourceLocator); ItemValidationResult itemResult = assessmentObjectXmlLoader.loadResolveAndValidateItem(xmlFile.toURI()); BadResourceException e = itemResult.getResolvedAssessmentItem().getItemLookup().getBadResourceException(); if(e != null) { StringBuilder err = new StringBuilder(); BadRessourceHelper.extractMessage(e, err); log.error(err.toString()); } Assert.assertFalse(xmlFilename + " has errors", (itemResult.getModelValidationErrors().size() > 0)); } }