d3d75a597f
Change-Id: I89ea5c95fc6895518b464f8eb6a4c74c6ae37651
38 lines
749 B
Go
38 lines
749 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package satellitedb
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
)
|
|
|
|
func TestProjectFromDbx(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
t.Run("can't create dbo from nil dbx model", func(t *testing.T) {
|
|
project, err := projectFromDBX(ctx, nil)
|
|
|
|
assert.Nil(t, project)
|
|
assert.NotNil(t, err)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("can't create dbo from dbx model with invalid ID", func(t *testing.T) {
|
|
dbxProject := dbx.Project{
|
|
Id: []byte("qweqwe"),
|
|
}
|
|
|
|
project, err := projectFromDBX(ctx, &dbxProject)
|
|
|
|
assert.Nil(t, project)
|
|
assert.NotNil(t, err)
|
|
assert.Error(t, err)
|
|
})
|
|
}
|