AtomicFileWritingIdiomTest.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.zookeeper.common;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Writer;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import org.apache.zookeeper.ZKTestCase;
import org.apache.zookeeper.common.AtomicFileWritingIdiom.OutputStreamStatement;
import org.apache.zookeeper.common.AtomicFileWritingIdiom.WriterStatement;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;

public class AtomicFileWritingIdiomTest extends ZKTestCase {

    @Test
    public void testOutputStreamSuccess(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        new AtomicFileWritingIdiom(target, new OutputStreamStatement() {
            @Override
            public void write(OutputStream os) throws IOException {
                os.write("after".getBytes(StandardCharsets.US_ASCII));
                assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
            }
        });
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        // content changed
        assertEquals("after", getContent(target));
    }

    @Test
    public void testWriterSuccess(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        new AtomicFileWritingIdiom(target, new WriterStatement() {
            @Override
            public void write(Writer os) throws IOException {
                os.write("after");
                assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
            }
        });
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        // content changed
        assertEquals("after", getContent(target));
    }

    @Test
    public void testOutputStreamFailure(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new OutputStreamStatement() {
                @Override
                public void write(OutputStream os) throws IOException {
                    os.write("after".getBytes(StandardCharsets.US_ASCII));
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new RuntimeException();
                }
            });
        } catch (RuntimeException ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // content preserved
        assertEquals("before", getContent(target));
    }

    @Test
    public void testWriterFailure(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new WriterStatement() {
                @Override
                public void write(Writer os) throws IOException {
                    os.write("after");
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new RuntimeException();
                }
            });
        } catch (RuntimeException ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // content preserved
        assertEquals("before", getContent(target));
    }

    @Test
    public void testOutputStreamFailureIOException(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new OutputStreamStatement() {
                @Override
                public void write(OutputStream os) throws IOException {
                    os.write("after".getBytes(StandardCharsets.US_ASCII));
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new IOException();
                }
            });
        } catch (IOException ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // content preserved
        assertEquals("before", getContent(target));
    }

    @Test
    public void testWriterFailureIOException(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new WriterStatement() {
                @Override
                public void write(Writer os) throws IOException {
                    os.write("after");
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new IOException();
                }
            });
        } catch (IOException ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // content preserved
        assertEquals("before", getContent(target));
    }

    @Test
    public void testOutputStreamFailureError(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new OutputStreamStatement() {
                @Override
                public void write(OutputStream os) throws IOException {
                    os.write("after".getBytes(StandardCharsets.US_ASCII));
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new Error();
                }
            });
        } catch (Error ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // content preserved
        assertEquals("before", getContent(target));
    }

    @Test
    public void testWriterFailureError(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        createFile(target, "before");
        assertEquals("before", getContent(target));
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new WriterStatement() {
                @Override
                public void write(Writer os) throws IOException {
                    os.write("after");
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new Error();
                }
            });
        } catch (Error ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // content preserved
        assertEquals("before", getContent(target));
    }

    // ************** target file does not exist

    @Test
    public void testOutputStreamSuccessNE(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        target.delete();
        assertFalse(target.exists(), "file should not exist");
        new AtomicFileWritingIdiom(target, new OutputStreamStatement() {
            @Override
            public void write(OutputStream os) throws IOException {
                os.write("after".getBytes(StandardCharsets.US_ASCII));
                assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
            }
        });
        // content changed
        assertEquals("after", getContent(target));
    }

    @Test
    public void testWriterSuccessNE(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        target.delete();
        assertFalse(target.exists(), "file should not exist");
        new AtomicFileWritingIdiom(target, new WriterStatement() {
            @Override
            public void write(Writer os) throws IOException {
                os.write("after");
                assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
            }
        });
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        // content changed
        assertEquals("after", getContent(target));
    }

    @Test
    public void testOutputStreamFailureNE(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        target.delete();
        assertFalse(target.exists(), "file should not exist");
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new OutputStreamStatement() {
                @Override
                public void write(OutputStream os) throws IOException {
                    os.write("after".getBytes(StandardCharsets.US_ASCII));
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new RuntimeException();
                }
            });
        } catch (RuntimeException ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // file should not exist
        assertFalse(target.exists(), "file should not exist");
    }

    @Test
    public void testWriterFailureNE(@TempDir File tmpdir) throws IOException {
        File target = new File(tmpdir, "target.txt");
        final File tmp = new File(tmpdir, "target.txt.tmp");
        target.delete();
        assertFalse(target.exists(), "file should not exist");
        boolean exception = false;
        try {
            new AtomicFileWritingIdiom(target, new WriterStatement() {
                @Override
                public void write(Writer os) throws IOException {
                    os.write("after");
                    os.flush();
                    assertTrue(tmp.exists(), "implementation of AtomicFileOutputStream has changed, update the test");
                    throw new RuntimeException();
                }
            });
        } catch (RuntimeException ex) {
            exception = true;
        }
        assertFalse(tmp.exists(), "tmp file should have been deleted");
        assertTrue(exception, "should have raised an exception");
        // file should not exist
        assertFalse(target.exists(), "file should not exist");
    }

    private String getContent(File file, Charset encoding) throws IOException {
        StringBuilder result = new StringBuilder();
        FileInputStream fis = new FileInputStream(file);
        byte[] b = new byte[20];
        int nb;
        while ((nb = fis.read(b)) != -1) {
            result.append(new String(b, 0, nb, encoding));
        }
        fis.close();
        return result.toString();
    }

    private String getContent(File file) throws IOException {
        return getContent(file, StandardCharsets.US_ASCII);
    }

    private void createFile(File file, String content) throws IOException {
        FileOutputStream fos = new FileOutputStream(file);
        fos.write(content.getBytes(StandardCharsets.US_ASCII));
        fos.close();
    }

}