forked from D-Net/dnet-hadoop
Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Michele De Bonis | 70b6e58914 | |
Michele Artini | 4752d60421 | |
Michele Artini | 7a934affd8 |
|
@ -8,9 +8,9 @@ import java.util.Map;
|
||||||
|
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
|
|
||||||
import eu.dnetlib.pace.model.Person;
|
import eu.dnetlib.pace.model.Person;
|
||||||
import jdk.nashorn.internal.ir.annotations.Ignore;
|
|
||||||
|
|
||||||
public class UtilTest {
|
public class UtilTest {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ public class UtilTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Ignore
|
@Disabled
|
||||||
public void paceResolverTest() {
|
public void paceResolverTest() {
|
||||||
PaceResolver paceResolver = new PaceResolver();
|
PaceResolver paceResolver = new PaceResolver();
|
||||||
paceResolver.getComparator("keywordMatch", params);
|
paceResolver.getComparator("keywordMatch", params);
|
||||||
|
|
|
@ -59,7 +59,6 @@ base_dc:global_id (I used oai:identifier)
|
||||||
base_dc:collection/text()
|
base_dc:collection/text()
|
||||||
|
|
||||||
base_dc:continent
|
base_dc:continent
|
||||||
base_dc:country
|
|
||||||
base_dc:year (I used dc:date)
|
base_dc:year (I used dc:date)
|
||||||
dc:coverage
|
dc:coverage
|
||||||
dc:language (I used base_dc:lang)
|
dc:language (I used base_dc:lang)
|
||||||
|
@ -256,6 +255,11 @@ base_dc:link (I used dc:identifier)
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</oaf:relation>
|
</oaf:relation>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<xsl:for-each select="//base_dc:country">
|
||||||
|
<oaf:country><xsl:value-of select="vocabulary:clean(., 'dnet:countries')" /></oaf:country>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
</metadata>
|
</metadata>
|
||||||
<xsl:copy-of select="//*[local-name() = 'about']" />
|
<xsl:copy-of select="//*[local-name() = 'about']" />
|
||||||
</record>
|
</record>
|
||||||
|
|
|
@ -42,7 +42,6 @@
|
||||||
base_dc:global_id (I used oai:identifier)
|
base_dc:global_id (I used oai:identifier)
|
||||||
base_dc:collection/text()
|
base_dc:collection/text()
|
||||||
base_dc:continent
|
base_dc:continent
|
||||||
base_dc:country
|
|
||||||
dc:coverage
|
dc:coverage
|
||||||
dc:source
|
dc:source
|
||||||
dc:relation
|
dc:relation
|
||||||
|
@ -290,6 +289,11 @@
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</oaf:relation>
|
</oaf:relation>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<xsl:for-each select="//base_dc:country">
|
||||||
|
<oaf:country><xsl:value-of select="vocabulary:clean(., 'dnet:countries')" /></oaf:country>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
</metadata>
|
</metadata>
|
||||||
<xsl:copy-of select="//*[local-name() = 'about']" />
|
<xsl:copy-of select="//*[local-name() = 'about']" />
|
||||||
</record>
|
</record>
|
||||||
|
|
|
@ -8,7 +8,6 @@ import org.apache.spark.SparkConf;
|
||||||
import org.apache.spark.util.LongAccumulator;
|
import org.apache.spark.util.LongAccumulator;
|
||||||
import org.dom4j.io.SAXReader;
|
import org.dom4j.io.SAXReader;
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
import org.junit.jupiter.api.Disabled;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.extension.ExtendWith;
|
import org.junit.jupiter.api.extension.ExtendWith;
|
||||||
import org.mockito.junit.jupiter.MockitoExtension;
|
import org.mockito.junit.jupiter.MockitoExtension;
|
||||||
|
@ -20,7 +19,7 @@ import eu.dnetlib.dhp.schema.mdstore.Provenance;
|
||||||
import eu.dnetlib.dhp.transformation.xslt.XSLTTransformationFunction;
|
import eu.dnetlib.dhp.transformation.xslt.XSLTTransformationFunction;
|
||||||
import eu.dnetlib.enabling.is.lookup.rmi.ISLookUpException;
|
import eu.dnetlib.enabling.is.lookup.rmi.ISLookUpException;
|
||||||
|
|
||||||
@Disabled
|
// @Disabled
|
||||||
@ExtendWith(MockitoExtension.class)
|
@ExtendWith(MockitoExtension.class)
|
||||||
public class BaseTransfomationTest extends AbstractVocabularyTest {
|
public class BaseTransfomationTest extends AbstractVocabularyTest {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue