-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completed tests for existing features.
- Loading branch information
Showing
10 changed files
with
231 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# Nim-RocksDB | ||
# Copyright 2024 Status Research & Development GmbH | ||
# Licensed under either of | ||
# | ||
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) | ||
# * GPL license, version 2.0, ([LICENSE-GPLv2](LICENSE-GPLv2) or https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) | ||
# | ||
# at your option. This file may not be copied, modified, or distributed except according to those terms. | ||
|
||
{.used.} | ||
|
||
import | ||
std/os, | ||
tempfile, | ||
unittest2, | ||
../rocksdb/backup, | ||
./test_helper | ||
|
||
suite "BackupEngineRef Tests": | ||
|
||
let | ||
key = @[byte(1), 2, 3, 4, 5] | ||
val = @[byte(1), 2, 3, 4, 5] | ||
|
||
setup: | ||
let | ||
dbPath = mkdtemp() / "data" | ||
dbBackupPath = mkdtemp() / "backup" | ||
dbRestorePath = mkdtemp() / "restore" | ||
|
||
var | ||
db = initReadWriteDb(dbPath) | ||
|
||
teardown: | ||
|
||
db.close() | ||
removeDir($dbPath) | ||
removeDir($dbBackupPath) | ||
|
||
|
||
test "Test backup": | ||
var engine = initBackupEngine(dbBackupPath) | ||
|
||
check: | ||
db.put(key, val).isOk() | ||
db.keyExists(key).value() | ||
|
||
check engine.createNewBackup(db, true).isOk() | ||
|
||
check: | ||
db.delete(key).isOk() | ||
not db.keyExists(key).value() | ||
|
||
check engine.restoreDbFromLatestBackup(dbRestorePath).isOk() | ||
|
||
let db2 = initReadWriteDb(dbRestorePath) | ||
check db2.keyExists(key).value() | ||
|
||
engine.close() | ||
|
||
test "Test close": | ||
let res = openBackupEngine(dbPath) | ||
doAssert res.isOk() | ||
var engine = res.get() | ||
|
||
check not engine.isClosed() | ||
engine.close() | ||
check engine.isClosed() | ||
engine.close() | ||
check engine.isClosed() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Nim-RocksDB | ||
# Copyright 2024 Status Research & Development GmbH | ||
# Licensed under either of | ||
# | ||
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) | ||
# * GPL license, version 2.0, ([LICENSE-GPLv2](LICENSE-GPLv2) or https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) | ||
# | ||
# at your option. This file may not be copied, modified, or distributed except according to those terms. | ||
|
||
{.used.} | ||
|
||
import | ||
std/sequtils, | ||
../rocksdb/backup, | ||
../rocksdb/rocksdb | ||
|
||
|
||
proc initReadWriteDb*( | ||
path: string, | ||
columnFamilyNames = @["default"]): RocksDbReadWriteRef = | ||
|
||
let res = openRocksDb( | ||
path, | ||
columnFamilies = columnFamilyNames.mapIt(initColFamilyDescriptor(it))) | ||
if res.isErr(): | ||
echo res.error() | ||
doAssert res.isOk() | ||
res.value() | ||
|
||
proc initReadOnlyDb*( | ||
path: string, | ||
columnFamilyNames = @["default"]): RocksDbReadOnlyRef = | ||
|
||
let res = openRocksDbReadOnly( | ||
path, | ||
columnFamilies = columnFamilyNames.mapIt(initColFamilyDescriptor(it))) | ||
if res.isErr(): | ||
echo res.error() | ||
doAssert res.isOk() | ||
res.value() | ||
|
||
proc initBackupEngine*(path: string): BackupEngineRef = | ||
|
||
let res = openBackupEngine(path) | ||
doAssert res.isOk() | ||
res.value() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters