forked from openrs2/openrs2
This commit fixes some bugs in FlatFileStore at the same time. Signed-off-by: Graham <gpe@openrs2.dev>bzip2
parent
8c93b4623d
commit
3f8e1a1951
@ -0,0 +1,276 @@ |
|||||||
|
package dev.openrs2.cache |
||||||
|
|
||||||
|
import com.google.common.jimfs.Configuration |
||||||
|
import com.google.common.jimfs.Jimfs |
||||||
|
import dev.openrs2.buffer.use |
||||||
|
import dev.openrs2.util.io.recursiveCopy |
||||||
|
import dev.openrs2.util.io.recursiveEquals |
||||||
|
import io.netty.buffer.Unpooled |
||||||
|
import org.junit.jupiter.api.Test |
||||||
|
import org.junit.jupiter.api.assertThrows |
||||||
|
import java.io.FileNotFoundException |
||||||
|
import java.nio.file.Path |
||||||
|
import java.nio.file.Paths |
||||||
|
import kotlin.test.assertEquals |
||||||
|
import kotlin.test.assertFalse |
||||||
|
import kotlin.test.assertTrue |
||||||
|
|
||||||
|
object FlatFileStoreTest { |
||||||
|
private val IGNORE_GIT_EMPTY = { path: Path -> path.fileName.toString() != ".gitempty" } |
||||||
|
private val root = Paths.get(FlatFileStoreTest::class.java.getResource("flat-file-store").toURI()) |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testBounds() { |
||||||
|
readTest("empty") { store -> |
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.exists(-1) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.exists(256) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.list(-1) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.list(256) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.exists(-1, 0) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.exists(256, 0) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.exists(0, -1) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.read(-1, 0).release() |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.read(256, 0).release() |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.read(0, -1).release() |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
writeTest("empty") { store -> |
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.create(-1) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.create(256) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.write(-1, 0, Unpooled.EMPTY_BUFFER) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.write(256, 0, Unpooled.EMPTY_BUFFER) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.write(0, -1, Unpooled.EMPTY_BUFFER) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.remove(-1) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.remove(256) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.remove(-1, 0) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.remove(256, 0) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<IllegalArgumentException> { |
||||||
|
store.remove(0, -1) |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testExists() { |
||||||
|
readTest("multiple-groups") { store -> |
||||||
|
assertTrue(store.exists(0)) |
||||||
|
assertFalse(store.exists(1)) |
||||||
|
assertFalse(store.exists(254)) |
||||||
|
assertTrue(store.exists(255)) |
||||||
|
|
||||||
|
assertTrue(store.exists(0, 0)) |
||||||
|
assertTrue(store.exists(0, 1)) |
||||||
|
assertFalse(store.exists(0, 2)) |
||||||
|
|
||||||
|
assertFalse(store.exists(1, 0)) |
||||||
|
assertFalse(store.exists(254, 0)) |
||||||
|
|
||||||
|
assertTrue(store.exists(255, 0)) |
||||||
|
assertFalse(store.exists(255, 1)) |
||||||
|
assertFalse(store.exists(255, 65535)) |
||||||
|
assertTrue(store.exists(255, 65536)) |
||||||
|
assertFalse(store.exists(255, 65537)) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testList() { |
||||||
|
readTest("empty") { store -> |
||||||
|
assertEquals(emptyList(), store.list()) |
||||||
|
} |
||||||
|
|
||||||
|
readTest("multiple-groups") { store -> |
||||||
|
assertEquals(listOf(0, 255), store.list()) |
||||||
|
|
||||||
|
assertEquals(listOf(0, 1), store.list(0)) |
||||||
|
assertEquals(listOf(0, 65536), store.list(255)) |
||||||
|
|
||||||
|
assertThrows<FileNotFoundException> { |
||||||
|
store.list(1) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<FileNotFoundException> { |
||||||
|
store.list(254) |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testCreate() { |
||||||
|
writeTest("empty-archive") { store -> |
||||||
|
store.create(255) |
||||||
|
} |
||||||
|
|
||||||
|
overwriteTest("empty-archive", "empty-archive") { store -> |
||||||
|
store.create(255) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testRead() { |
||||||
|
readTest("multiple-groups") { store -> |
||||||
|
store.read(0, 0).use { actual -> |
||||||
|
assertEquals(Unpooled.EMPTY_BUFFER, actual) |
||||||
|
} |
||||||
|
|
||||||
|
store.read(0, 1).use { actual -> |
||||||
|
assertEquals(Unpooled.EMPTY_BUFFER, actual) |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<FileNotFoundException> { |
||||||
|
store.read(0, 2).release() |
||||||
|
} |
||||||
|
|
||||||
|
assertThrows<FileNotFoundException> { |
||||||
|
store.read(1, 0).release() |
||||||
|
} |
||||||
|
|
||||||
|
Unpooled.wrappedBuffer("OpenRS2".toByteArray()).use { expected -> |
||||||
|
store.read(255, 0).use { actual -> |
||||||
|
assertEquals(expected, actual) |
||||||
|
} |
||||||
|
|
||||||
|
store.read(255, 65536).use { actual -> |
||||||
|
assertEquals(expected, actual) |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testWrite() { |
||||||
|
writeTest("single-group") { store -> |
||||||
|
Unpooled.wrappedBuffer("OpenRS2".toByteArray()).use { buf -> |
||||||
|
store.write(255, 0, buf) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
overwriteTest("empty-archive", "single-group") { store -> |
||||||
|
Unpooled.wrappedBuffer("OpenRS2".toByteArray()).use { buf -> |
||||||
|
store.write(255, 0, buf) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
overwriteTest("single-group", "single-group-overwritten") { store -> |
||||||
|
Unpooled.wrappedBuffer("Hello, world!".toByteArray()).use { buf -> |
||||||
|
store.write(255, 0, buf) |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testRemoveArchive() { |
||||||
|
overwriteTest("multiple-groups", "empty") { store -> |
||||||
|
store.remove(0) |
||||||
|
store.remove(255) |
||||||
|
} |
||||||
|
|
||||||
|
writeTest("empty") { store -> |
||||||
|
store.remove(0) |
||||||
|
store.remove(255) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
fun testRemoveGroup() { |
||||||
|
overwriteTest("single-group", "empty-archive") { store -> |
||||||
|
store.remove(255, 0) |
||||||
|
} |
||||||
|
|
||||||
|
overwriteTest("empty-archive", "empty-archive") { store -> |
||||||
|
store.remove(255, 0) |
||||||
|
} |
||||||
|
|
||||||
|
writeTest("empty") { store -> |
||||||
|
store.remove(255, 0) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private fun readTest(name: String, f: (Store) -> Unit) { |
||||||
|
FlatFileStore.open(root.resolve(name)).use { store -> |
||||||
|
f(store) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private fun writeTest(name: String, f: (Store) -> Unit) { |
||||||
|
Jimfs.newFileSystem(Configuration.unix()).use { fs -> |
||||||
|
val actual = fs.getPath("/cache") |
||||||
|
FlatFileStore.create(actual).use { store -> |
||||||
|
f(store) |
||||||
|
} |
||||||
|
|
||||||
|
val expected = root.resolve(name) |
||||||
|
assertTrue(expected.recursiveEquals(actual, filter = IGNORE_GIT_EMPTY)) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private fun overwriteTest(src: String, name: String, f: (Store) -> Unit) { |
||||||
|
Jimfs.newFileSystem(Configuration.unix()).use { fs -> |
||||||
|
val actual = fs.getPath("/cache") |
||||||
|
root.resolve(src).recursiveCopy(actual) |
||||||
|
|
||||||
|
FlatFileStore.open(actual).use { store -> |
||||||
|
f(store) |
||||||
|
} |
||||||
|
|
||||||
|
val expected = root.resolve(name) |
||||||
|
assertTrue(expected.recursiveEquals(actual, filter = IGNORE_GIT_EMPTY)) |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
OpenRS2 |
@ -0,0 +1 @@ |
|||||||
|
OpenRS2 |
@ -0,0 +1 @@ |
|||||||
|
Hello, world! |
@ -0,0 +1 @@ |
|||||||
|
OpenRS2 |
Loading…
Reference in new issue