aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorhyukjinkwon <gurwls223@gmail.com>2016-11-18 21:45:18 +0000
committerSean Owen <sowen@cloudera.com>2016-11-18 21:45:18 +0000
commit40d59ff5eaac6df237fe3d50186695c3806b268c (patch)
treee1d615cbd256ef2adef060c09741e11012ab1703 /core/src
parent795e9fc9213cb9941ae131aadcafddb94bde5f74 (diff)
downloadspark-40d59ff5eaac6df237fe3d50186695c3806b268c.tar.gz
spark-40d59ff5eaac6df237fe3d50186695c3806b268c.tar.bz2
spark-40d59ff5eaac6df237fe3d50186695c3806b268c.zip
[SPARK-18422][CORE] Fix wholeTextFiles test to pass on Windows in JavaAPISuite
## What changes were proposed in this pull request? This PR fixes the test `wholeTextFiles` in `JavaAPISuite.java`. This is failed due to the different path format on Windows. For example, the path in `container` was ``` C:\projects\spark\target\tmp\1478967560189-0/part-00000 ``` whereas `new URI(res._1()).getPath()` was as below: ``` /C:/projects/spark/target/tmp/1478967560189-0/part-00000 ``` ## How was this patch tested? Tests in `JavaAPISuite.java`. Tested via AppVeyor. **Before** Build: https://ci.appveyor.com/project/spark-test/spark/build/63-JavaAPISuite-1 Diff: https://github.com/apache/spark/compare/master...spark-test:JavaAPISuite-1 ``` [info] Test org.apache.spark.JavaAPISuite.wholeTextFiles started [error] Test org.apache.spark.JavaAPISuite.wholeTextFiles failed: java.lang.AssertionError: expected:<spark is easy to use. [error] > but was:<null>, took 0.578 sec [error] at org.apache.spark.JavaAPISuite.wholeTextFiles(JavaAPISuite.java:1089) ... ``` **After** Build started: [CORE] `org.apache.spark.JavaAPISuite` [![PR-15866](https://ci.appveyor.com/api/projects/status/github/spark-test/spark?branch=198DDA52-F201-4D2B-BE2F-244E0C1725B2&svg=true)](https://ci.appveyor.com/project/spark-test/spark/branch/198DDA52-F201-4D2B-BE2F-244E0C1725B2) Diff: https://github.com/apache/spark/compare/master...spark-test:198DDA52-F201-4D2B-BE2F-244E0C1725B2 ``` [info] Test org.apache.spark.JavaAPISuite.wholeTextFiles started ... ``` Author: hyukjinkwon <gurwls223@gmail.com> Closes #15866 from HyukjinKwon/SPARK-18422.
Diffstat (limited to 'core/src')
-rw-r--r--core/src/test/java/org/apache/spark/JavaAPISuite.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/core/src/test/java/org/apache/spark/JavaAPISuite.java b/core/src/test/java/org/apache/spark/JavaAPISuite.java
index 533025ba83..7bebe0612f 100644
--- a/core/src/test/java/org/apache/spark/JavaAPISuite.java
+++ b/core/src/test/java/org/apache/spark/JavaAPISuite.java
@@ -20,7 +20,6 @@ package org.apache.spark;
import java.io.*;
import java.nio.channels.FileChannel;
import java.nio.ByteBuffer;
-import java.net.URI;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
@@ -46,6 +45,7 @@ import com.google.common.collect.Iterators;
import com.google.common.collect.Lists;
import com.google.common.base.Throwables;
import com.google.common.io.Files;
+import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.io.compress.DefaultCodec;
@@ -1075,18 +1075,23 @@ public class JavaAPISuite implements Serializable {
byte[] content2 = "spark is also easy to use.\n".getBytes(StandardCharsets.UTF_8);
String tempDirName = tempDir.getAbsolutePath();
- Files.write(content1, new File(tempDirName + "/part-00000"));
- Files.write(content2, new File(tempDirName + "/part-00001"));
+ String path1 = new Path(tempDirName, "part-00000").toUri().getPath();
+ String path2 = new Path(tempDirName, "part-00001").toUri().getPath();
+
+ Files.write(content1, new File(path1));
+ Files.write(content2, new File(path2));
Map<String, String> container = new HashMap<>();
- container.put(tempDirName+"/part-00000", new Text(content1).toString());
- container.put(tempDirName+"/part-00001", new Text(content2).toString());
+ container.put(path1, new Text(content1).toString());
+ container.put(path2, new Text(content2).toString());
JavaPairRDD<String, String> readRDD = sc.wholeTextFiles(tempDirName, 3);
List<Tuple2<String, String>> result = readRDD.collect();
for (Tuple2<String, String> res : result) {
- assertEquals(res._2(), container.get(new URI(res._1()).getPath()));
+ // Note that the paths from `wholeTextFiles` are in URI format on Windows,
+ // for example, file:/C:/a/b/c.
+ assertEquals(res._2(), container.get(new Path(res._1()).toUri().getPath()));
}
}