Files
athens/pkg/storage/mongo/mongo_test.go
Bob Maertz 049d58caa8 Write tests for the new Mongo query function (#1314)
* WIP: Added tests to query implemetation.

* Fixed tests for mongo getter query function.
2019-08-15 14:04:19 -07:00

156 lines
4.7 KiB
Go

package mongo
import (
"bytes"
"context"
"io/ioutil"
"os"
"testing"
"github.com/gomods/athens/pkg/config"
"github.com/gomods/athens/pkg/errors"
"github.com/gomods/athens/pkg/storage"
"github.com/gomods/athens/pkg/storage/compliance"
"github.com/stretchr/testify/require"
)
func TestBackend(t *testing.T) {
backend := getStorage(t)
compliance.RunTests(t, backend, backend.clear)
}
func (m *ModuleStore) clear() error {
m.client.Database(m.db).Drop(context.Background())
return nil
}
func BenchmarkBackend(b *testing.B) {
backend := getStorage(b)
compliance.RunBenchmarks(b, backend, backend.clear)
}
func getStorage(tb testing.TB) *ModuleStore {
url := os.Getenv("ATHENS_MONGO_STORAGE_URL")
if url == "" {
tb.SkipNow()
}
backend, err := NewStorage(&config.MongoConfig{URL: url}, config.GetTimeoutDuration(300))
require.NoError(tb, err)
return backend
}
func TestQueryModuleVersionExists(t *testing.T) {
modname, ver := "getTestModule", "v1.2.3"
mock := &storage.Version{
Info: []byte("123"),
Mod: []byte("456"),
Zip: ioutil.NopCloser(bytes.NewReader([]byte("789"))),
}
ctx := context.Background()
backend := getStorage(t)
zipBts, _ := ioutil.ReadAll(mock.Zip)
backend.Save(ctx, modname, ver, mock.Mod, bytes.NewReader(zipBts), mock.Info)
defer backend.Delete(ctx, modname, ver)
info, err := query(ctx, backend, modname, ver)
require.NoError(t, err)
require.Equal(t, mock.Info, info.Info)
require.Equal(t, mock.Mod, info.Mod)
}
func TestQueryKindNotFoundErrorCases(t *testing.T) {
modname, ver := "getTestModule", "v1.2.3"
mock := &storage.Version{
Info: []byte("123"),
Mod: []byte("456"),
Zip: ioutil.NopCloser(bytes.NewReader([]byte("789"))),
}
ctx := context.Background()
backend := getStorage(t)
zipBts, _ := ioutil.ReadAll(mock.Zip)
backend.Save(ctx, modname, ver, mock.Mod, bytes.NewReader(zipBts), mock.Info)
defer backend.Delete(ctx, modname, ver)
testCases := []struct {
modname string
ver string
}{
{"getTestModule", "yyy"}, // test NotFound non-existent version
{"getTestModule", ""}, // test NotFound empty str version
{"xxx", "v1.2.3"}, // test NotFound non-existent module
{"", "v1.2.3"}, // test NotFound empty str module
{"", ""}, // test NotFound empty str module and version
{"xxx", "yyy"}, // test NotFound non-existent module and version
}
for _, test := range testCases {
_, err := query(ctx, backend, test.modname, test.ver)
require.Error(t, err)
require.Equal(t, errors.KindNotFound, errors.Kind(err))
}
}
func TestNewStorageWithDefaultOverrides(t *testing.T) {
url := os.Getenv("ATHENS_MONGO_STORAGE_URL")
if url == "" {
t.SkipNow()
}
testCases := []struct {
name string
dbName string
expDbName string
collName string
expCollName string
}{
{"Test Default 'Athens' DB Name", "athens", "athens", "modules", "modules"}, //Tests the default database name
{"Test Custom DB Name", "testAthens", "testAthens", "modules", "modules"}, //Tests a non-default database name
{"Test Blank DB Name", "", "athens", "modules", "modules"}, //Tests the blank database name edge-case
{"Test Default 'Modules' Collection Name", "athens", "athens", "modules", "modules"}, //Tests the default collection name
{"Test Custom Collection Name", "athens", "athens", "testModules", "testModules"}, //Tests the non-default collection name
{"Test Blank Collection Name", "athens", "athens", "", "modules"}, //Tests the blank collection name edge-case
}
for _, test := range testCases {
t.Run(test.name, func(t *testing.T) {
backend, err := NewStorage(&config.MongoConfig{URL: url, DefaultDBName: test.dbName, DefaultCollectionName: test.collName}, config.GetTimeoutDuration(300))
require.NoError(t, err)
require.Equal(t, test.expDbName, backend.db)
require.Equal(t, test.expCollName, backend.coll)
})
}
}
func TestMongoConfigVerification(t *testing.T) {
testCases := []struct {
testName string
url string
requireError bool
}{
{"Test Invalid Configuration:Empty URL", "", true}, // test mongo configuration without url
{"Test InValid Configuration:Misconfigured URL Scheme", "127.0.0.1", true}, // test mongo configuration with misconfigured url
{"Test Valid Configuration: Full URL", "mongodb://127.0.0.1", false}, // test mongo configuration with url
}
for _, test := range testCases {
t.Run(test.testName, func(t *testing.T) {
backend := &ModuleStore{url: test.url, timeout: config.GetTimeoutDuration(300)}
_, err := backend.newClient()
if test.requireError {
require.Error(t, err)
} else {
require.NoError(t, err)
}
})
}
}