Github user vanzin commented on a diff in the pull request:
https://github.com/apache/spark/pull/5792#discussion_r31555906
--- Diff:
core/src/test/scala/org/apache/spark/deploy/history/FsHistoryProviderSuite.scala
---
@@ -335,6 +337,53 @@ class FsHistoryProviderSuite extends FunSuite with
BeforeAndAfter with Matchers
assert(!log2.exists())
}
+ test("Event log copy") {
+ val provider = new FsHistoryProvider(createTestConf())
+ val logs = (1 to 2).map { i =>
+ val log = newLogFile("downloadApp1", Some(s"attempt$i"), inProgress
= false)
+ writeFile(log, true, None,
+ SparkListenerApplicationStart(
+ "downloadApp1", Some("downloadApp1"), 5000 * i, "test",
Some(s"attempt$i")),
+ SparkListenerApplicationEnd(5001 * i)
+ )
+ log
+ }
+ provider.checkForLogs()
+
+ (1 to 2).foreach { i =>
+ val outDir = Utils.createTempDir()
+ val unzipDir = Utils.createTempDir()
+ try {
+ Utils.chmod700(outDir)
+ Utils.chmod700(unzipDir)
+ val outFile = new File(outDir, s"file$i.zip")
+ val outputStream = new ZipOutputStream(new
FileOutputStream(outFile))
+ provider.writeEventLogs("downloadApp1", Some(s"attempt$i"),
outputStream)
+ HistoryTestUtils.unzipToDir(new FileInputStream(outFile), unzipDir)
--- End diff --
Not a big deal, but I wonder if this test would be simpler if you read from
the zip file directly, instead of having this other method to unzip it.
You could use `new String(ByteStreams.readFully(blah), UTF_8)` to read
files from the zip into Strings directly.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]