yanic/database/all/internel_test.go

76 lines
1.4 KiB
Go
Raw Normal View History

package all
import (
"errors"
"testing"
"time"
"github.com/FreifunkBremen/yanic/database"
"github.com/FreifunkBremen/yanic/lib/duration"
"github.com/stretchr/testify/assert"
)
func TestStart(t *testing.T) {
assert := assert.New(t)
database.RegisterAdapter("d", func(config map[string]interface{}) (database.Connection, error) {
return nil, nil
})
database.RegisterAdapter("e", func(config map[string]interface{}) (database.Connection, error) {
return nil, errors.New("blub")
})
2018-01-03 15:41:40 +01:00
// Test for PruneNodes (by start)
assert.Nil(quit)
err := Start(database.Config{
DeleteInterval: duration.Duration{Duration: time.Millisecond},
2018-01-03 15:41:40 +01:00
Connection: map[string]interface{}{
"a": []map[string]interface{}{
2018-01-13 16:40:23 +01:00
{
2018-01-03 15:41:40 +01:00
"enable": false,
"path": "a1",
},
2018-01-13 16:40:23 +01:00
{
2018-01-03 15:41:40 +01:00
"path": "a2",
},
2018-01-13 16:40:23 +01:00
{
2018-01-03 15:41:40 +01:00
"enable": true,
"path": "a3",
},
},
2018-01-03 15:41:40 +01:00
"b": nil,
"c": []map[string]interface{}{
2022-04-14 00:38:00 +02:00
{
2018-01-03 15:41:40 +01:00
"path": "c1",
},
},
2018-01-03 15:41:40 +01:00
// fetch continue command in Connect
"d": []map[string]interface{}{
2022-04-14 00:38:00 +02:00
{
2018-01-03 15:41:40 +01:00
"path": "d0",
},
},
},
})
assert.NoError(err)
2018-01-03 15:41:40 +01:00
assert.NotNil(quit)
// connection type not found
_, err = Connect(map[string]interface{}{
"e": []map[string]interface{}{
2018-01-13 16:40:23 +01:00
{},
},
})
assert.Error(err)
// test close
Close()
2018-01-03 15:41:40 +01:00
// wrong format
err = Start(database.Config{
Connection: map[string]interface{}{
"e": true,
},
})
2018-01-03 15:41:40 +01:00
assert.Error(err)
}