/*
* 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.commons.io.output;
import java.io.File;
import java.io.IOException;
import java.io.Writer;
import java.nio.charset.StandardCharsets;
import java.nio.charset.UnsupportedCharsetException;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.testtools.FileBasedTestCase;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
/**
* Tests that files really lock, although no writing is done as
* the locking is tested only on construction.
*
*/
public class LockableFileWriterTest extends FileBasedTestCase {
private File file;
private File lockDir;
private File lockFile;
private File altLockDir;
private File altLockFile;
@Before
public void setUp() {
file = new File(getTestDirectory(), "testlockfile");
lockDir = new File(System.getProperty("java.io.tmpdir"));
lockFile = new File(lockDir, file.getName() + ".lck");
altLockDir = getTestDirectory();
altLockFile = new File(altLockDir, file.getName() + ".lck");
}
@After
public void tearDown() throws IOException {
file.delete();
lockFile.delete();
altLockFile.delete();
FileUtils.deleteDirectory(altLockDir);
}
//-----------------------------------------------------------------------
@Test public void testFileLocked() throws IOException {
// open a valid locakable writer
try (LockableFileWriter lfw1 = new LockableFileWriter(file)) {
assertTrue(file.exists());
assertTrue(lockFile.exists());
// try to open a second writer
try (LockableFileWriter lfw2 = new LockableFileWriter(file)) {
fail("Somehow able to open a locked file. ");
} catch(final IOException ioe) {
final String msg = ioe.getMessage();
assertTrue( "Exception message does not start correctly. ",
msg.startsWith("Can't write file, lock ") );
assertTrue(file.exists());
assertTrue(lockFile.exists());
}
// try to open a third writer
try (LockableFileWriter lfw3 = new LockableFileWriter(file)) {
fail("Somehow able to open a locked file. ");
} catch(final IOException ioe) {
final String msg = ioe.getMessage();
assertTrue( "Exception message does not start correctly. ",
msg.startsWith("Can't write file, lock ") );
assertTrue(file.exists());
assertTrue(lockFile.exists());
}
}
assertTrue(file.exists());
assertFalse(lockFile.exists());
}
//-----------------------------------------------------------------------
@Test public void testAlternateLockDir() throws IOException {
// open a valid locakable writer
try (LockableFileWriter lfw1 = new LockableFileWriter(file, "UTF-8" ,true, altLockDir.getAbsolutePath())){
assertTrue(file.exists());
assertTrue(altLockFile.exists());
// try to open a second writer
try (LockableFileWriter lfw2 = new LockableFileWriter(file, StandardCharsets.UTF_8, true, altLockDir.getAbsolutePath())){
fail("Somehow able to open a locked file. ");
} catch(final IOException ioe) {
final String msg = ioe.getMessage();
assertTrue( "Exception message does not start correctly. ",
msg.startsWith("Can't write file, lock ") );
assertTrue(file.exists());
assertTrue(altLockFile.exists());
}
}
assertTrue(file.exists());
assertFalse(altLockFile.exists());
}
//-----------------------------------------------------------------------
@Test public void testFileNotLocked() throws IOException {
// open a valid lockable writer
try (LockableFileWriter lfw1 = new LockableFileWriter(file)) {
assertTrue(file.exists());
assertTrue(lockFile.exists());
}
assertTrue(file.exists());
assertFalse(lockFile.exists());
// open a second valid writer on the same file
try (LockableFileWriter lfw2 = new LockableFileWriter(file)) {
assertTrue(file.exists());
assertTrue(lockFile.exists());
}
assertTrue(file.exists());
assertFalse(lockFile.exists());
}
//-----------------------------------------------------------------------
@Test public void testConstructor_File_encoding_badEncoding() throws IOException {
try (Writer writer = new LockableFileWriter(file, "BAD-ENCODE")) {
fail();
} catch (final UnsupportedCharsetException ex) {
// expected
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
//-----------------------------------------------------------------------
@Test public void testConstructor_File_directory() {
try (Writer writer = new LockableFileWriter(getTestDirectory())) {
fail();
} catch (final IOException ex) {
// expected
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
//-----------------------------------------------------------------------
@Test public void testConstructor_File_nullFile() throws IOException {
try (Writer writer = new LockableFileWriter((File) null)) {
fail();
} catch (final NullPointerException ex) {
// expected
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
//-----------------------------------------------------------------------
@Test public void testConstructor_fileName_nullFile() throws IOException {
try (Writer writer = new LockableFileWriter((String) null)) {
fail();
} catch (final NullPointerException ex) {
// expected
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
assertFalse(file.exists());
assertFalse(lockFile.exists());
}
}