[DUMP CSV] test and resources for the SelectResultAndDumpRelation job

This commit is contained in:
Miriam Baglioni 2023-05-16 14:21:39 +02:00
parent 2ed76d4662
commit f79c06209e
6 changed files with 168 additions and 0 deletions

View File

@ -0,0 +1,160 @@
package eu.dnetlib.dhp.oa.graph.dump.csv;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.HashMap;
import eu.dnetlib.dhp.oa.graph.dump.csv.model.CSVRELCommunityResult;
import eu.dnetlib.dhp.utils.DHPUtils;
import org.apache.commons.io.FileUtils;
import org.apache.spark.SparkConf;
import org.apache.spark.api.java.JavaRDD;
import org.apache.spark.api.java.JavaSparkContext;
import org.apache.spark.api.java.function.ForeachFunction;
import org.apache.spark.sql.Dataset;
import org.apache.spark.sql.Encoders;
import org.apache.spark.sql.Row;
import org.apache.spark.sql.SparkSession;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.databind.ObjectMapper;
import eu.dnetlib.dhp.oa.graph.dump.complete.SelectRelationTest;
import eu.dnetlib.dhp.oa.graph.dump.complete.SparkSelectValidRelationsJob;
import eu.dnetlib.dhp.schema.oaf.Relation;
/**
* @author miriam.baglioni
* @Date 11/05/23
*/
public class SelectResultAndDumpRelationTest {
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
private static SparkSession spark;
private static Path workingDir;
private static final Logger log = LoggerFactory
.getLogger(SelectResultAndDumpRelationTest.class);
private static HashMap<String, String> map = new HashMap<>();
@BeforeAll
public static void beforeAll() throws IOException {
workingDir = Files
.createTempDirectory(SelectResultAndDumpRelationTest.class.getSimpleName());
log.info("using work dir {}", workingDir);
SparkConf conf = new SparkConf();
conf.setAppName(SelectResultAndDumpRelationTest.class.getSimpleName());
conf.setMaster("local[*]");
conf.set("spark.driver.host", "localhost");
conf.set("hive.metastore.local", "true");
conf.set("spark.ui.enabled", "false");
conf.set("spark.sql.warehouse.dir", workingDir.toString());
conf.set("hive.metastore.warehouse.dir", workingDir.resolve("warehouse").toString());
spark = SparkSession
.builder()
.appName(SelectResultAndDumpRelationTest.class.getSimpleName())
.config(conf)
.getOrCreate();
}
@AfterAll
public static void afterAll() throws IOException {
FileUtils.deleteDirectory(workingDir.toFile());
spark.stop();
}
@Test
public void test1() throws Exception {
final String sourcePath = getClass()
.getResource("/eu/dnetlib/dhp/oa/graph/dump/csv/input/")
.getPath();
SparkSelectResultsAndDumpRelations.main(new String[] {
"-isSparkSessionManaged", Boolean.FALSE.toString(),
"-outputPath", workingDir.toString() + "/output",
"-workingPath", workingDir.toString() + "/working",
"-communities", "enermaps;dh-ch",
"-sourcePath", sourcePath
});
final JavaSparkContext sc = JavaSparkContext.fromSparkContext(spark.sparkContext());
Assertions.assertEquals(2,sc.textFile(workingDir.toString() + "/working/communityResultIds").count());
Assertions.assertEquals(1, sc.textFile(workingDir.toString() + "/working/communityResultIds")
.filter(v -> v.equals("50|DansKnawCris::0224aae28af558f21768dbc6439c7a95")).count());
Assertions.assertEquals(1, sc.textFile(workingDir.toString() + "/working/communityResultIds")
.filter(v -> v.equals("50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9")).count());
//verify that the association is correct with the communityid and result id
spark.read().option("header", "true").option("delimiter",Constants.SEP).csv(workingDir.toString() + "/output/result_community")
.createOrReplaceTempView("result_community");
Assertions.assertEquals(3, spark.sql("SELECT * FROM result_community").count());
Assertions.assertEquals(1, spark.sql("SELECT * " +
"FROM result_community " +
"WHERE community_id = '" + DHPUtils.md5("dh-ch") + "'").count());
Assertions.assertEquals(1, spark.sql("SELECT * " +
"FROM result_community" +
" WHERE result_id = '50|DansKnawCris::0224aae28af558f21768dbc6439c7a95' " +
"AND community_id = '" + DHPUtils.md5("dh-ch") + "'").count());
Assertions.assertEquals(2, spark.sql("SELECT * " +
"FROM result_community " +
"WHERE community_id = '" + DHPUtils.md5("enermaps") + "'").count());
Assertions.assertEquals(1, spark.sql("SELECT * " +
"FROM result_community " +
"WHERE result_id = '50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9' " +
"AND community_id = '" + DHPUtils.md5("enermaps") + "'").count());
Assertions.assertEquals(1, spark.sql("SELECT * " +
"FROM result_community " +
"WHERE result_id = '50|DansKnawCris::0224aae28af558f21768dbc6439c7a95' " +
"AND community_id = '" + DHPUtils.md5("enermaps") + "'").count());
Assertions.assertEquals(3, spark.read().textFile(workingDir.toString() + "/working/resultIds").count());
Assertions.assertEquals(1, sc.textFile(workingDir.toString() + "/working/resultIds")
.filter(v -> v.equals("50|DansKnawCris::0224aae28af558f21768dbc6439c7a95")).count());
Assertions.assertEquals(1, sc.textFile(workingDir.toString() + "/working/resultIds")
.filter(v -> v.equals("50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9")).count());
Assertions.assertEquals(1, sc.textFile(workingDir.toString() + "/working/resultIds")
.filter(v -> v.equals("50|DansKnawCris::26780065282e607306372abd0d808245")).count());
spark.read().option("header", "true").option("delimiter",Constants.SEP).csv(workingDir.toString() + "/output/relation")
.createOrReplaceTempView("relation");
Assertions.assertEquals(2, spark.sql("SELECT * FROM relation").count());
Assertions.assertEquals(1, spark.sql("SELECT * FROM relation WHERE id = '" +
DHPUtils.md5(("50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9cites50|DansKnawCris::26780065282e607306372abd0d808245")) + "'").count());
Assertions.assertEquals(1, spark.sql("SELECT * FROM relation WHERE id = '" +
DHPUtils.md5(("50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9cites50|DansKnawCris::0224aae28af558f21768dbc6439c7a95")) + "'").count());
}
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,4 @@
{"collectedfrom":[{"key":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824","value":"DOAJ-Articles"}],"dataInfo":{"deletedbyinference":false,"inferred":false,"invisible":false,"provenanceaction":{"classid":"sysimport:crosswalk:entityregistry","classname":"Harvested","schemeid":"dnet:provenanceActions","schemename":"dnet:provenanceActions"},"trust":"0.9"},"lastupdatetimestamp":1592688952862,"properties":[],"relClass":"isProvidedBy","relType":"datasourceOrganization","source":"10|doajarticles::2baa9032dc058d3c8ff780c426b0c19f","subRelType":"provision","target":"20|dedup_wf_001::2899e571609779168222fdeb59cb916d"}
{"collectedfrom":[{"key":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824","value":"DOAJ-Articles"}],"dataInfo":{"deletedbyinference":false,"inferred":false,"invisible":false,"provenanceaction":{"classid":"sysimport:crosswalk:entityregistry","classname":"Harvested","schemeid":"dnet:provenanceActions","schemename":"dnet:provenanceActions"},"trust":"0.9"},"lastupdatetimestamp":1592688952862,"properties":[],"relClass":"Cites","relType":"datasourceOrganization","source":"50|DansKnawCris::26780065282e607306372abd0d808245","subRelType":"provision","target":"50|DansKnawCris::26780065282e607306372abd0d808246"}
{"collectedfrom":[{"key":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824","value":"DOAJ-Articles"}],"dataInfo":{"deletedbyinference":false,"inferred":false,"invisible":false,"provenanceaction":{"classid":"sysimport:crosswalk:entityregistry","classname":"Harvested","schemeid":"dnet:provenanceActions","schemename":"dnet:provenanceActions"},"trust":"0.9"},"lastupdatetimestamp":1592688952862,"properties":[],"relClass":"Cites","relType":"datasourceOrganization","source":"50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9","subRelType":"provision","target":"50|DansKnawCris::26780065282e607306372abd0d808245"}
{"collectedfrom":[{"key":"10|driver______::bee53aa31dc2cbb538c10c2b65fa5824","value":"DOAJ-Articles"}],"dataInfo":{"deletedbyinference":false,"inferred":false,"invisible":false,"provenanceaction":{"classid":"sysimport:crosswalk:entityregistry","classname":"Harvested","schemeid":"dnet:provenanceActions","schemename":"dnet:provenanceActions"},"trust":"0.9"},"lastupdatetimestamp":1592688952862,"properties":[],"relClass":"Cites","relType":"datasourceOrganization","source":"50|DansKnawCris::20c414a3b1c742d5dd3851f1b67df2d9","subRelType":"provision","target":"50|DansKnawCris::0224aae28af558f21768dbc6439c7a95"}