cli: add tests to cli packages

Closes #1336
This commit is contained in:
Anna Shaleva 2020-08-21 21:36:08 +03:00
parent d6e7d9c281
commit cab767dafe
7 changed files with 641 additions and 0 deletions

29
cli/server/dump_test.go Normal file
View file

@ -0,0 +1,29 @@
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)
}