mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
30 lines
706 B
Go
30 lines
706 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestGetPath(t *testing.T) {
|
||
|
testPath, err := ioutil.TempDir("./", "")
|
||
|
require.NoError(t, err)
|
||
|
defer func() {
|
||
|
err := os.RemoveAll(testPath)
|
||
|
require.NoError(t, err)
|
||
|
}()
|
||
|
path, err := getPath(testPath, 123)
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, testPath+"/BlockStorage_100000/dump-block-1000.json", path)
|
||
|
|
||
|
path, err = getPath(testPath, 1230)
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, testPath+"/BlockStorage_100000/dump-block-2000.json", path)
|
||
|
|
||
|
path, err = getPath(testPath, 123000)
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, testPath+"/BlockStorage_200000/dump-block-123000.json", path)
|
||
|
}
|