Skip to content

Commit 3bd741d

Browse files
authored
Fix false difference detected with CachingOutputStream/CachingWriter when streams are flushed (#252)
1 parent b4ee91f commit 3bd741d

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

src/main/java/org/codehaus/plexus/util/io/CachingOutputStream.java

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ private void flushBuffer( ByteBuffer writeBuffer ) throws IOException
123123
{
124124
readBuffer = this.readBuffer;
125125
( ( Buffer ) readBuffer ).clear();
126+
readBuffer.limit( len );
126127
}
127128
else
128129
{

src/test/java/org/codehaus/plexus/util/io/CachingWriterTest.java

+27
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818

1919
import java.io.IOException;
20+
import java.io.Writer;
2021
import java.nio.charset.StandardCharsets;
2122
import java.nio.file.Files;
2223
import java.nio.file.Path;
@@ -63,6 +64,32 @@ private void waitLastModified() throws IOException, InterruptedException
6364
}
6465
}
6566

67+
@Test
68+
public void testNoOverwriteWithFlush() throws IOException, InterruptedException
69+
{
70+
String data = "Hello world!";
71+
Path path = tempDir.resolve("file-bigger.txt");
72+
assertFalse( Files.exists(path));
73+
74+
try (Writer w = Files.newBufferedWriter(path, StandardCharsets.UTF_8)) {
75+
for (int i = 0; i < 10; i++) {
76+
w.write(data);
77+
}
78+
}
79+
FileTime modified = Files.getLastModifiedTime(path);
80+
81+
waitLastModified();
82+
83+
try (Writer w = new CachingWriter(path, StandardCharsets.UTF_8)) {
84+
for (int i = 0; i < 10; i++) {
85+
w.write(data);
86+
w.flush();
87+
}
88+
}
89+
FileTime newModified = Files.getLastModifiedTime(path);
90+
assertEquals(modified, newModified);
91+
}
92+
6693
@Test
6794
public void testWriteNoExistingFile() throws IOException, InterruptedException
6895
{

0 commit comments

Comments
 (0)