forked from MTSR/mapserver
testutils
This commit is contained in:
parent
5ebc282bf9
commit
1956bfa7f8
@ -1,63 +1,14 @@
|
|||||||
package db
|
package db
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"database/sql"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"mapserver/coords"
|
"mapserver/coords"
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
"mapserver/testutils"
|
||||||
_ "github.com/mattn/go-sqlite3"
|
_ "github.com/mattn/go-sqlite3"
|
||||||
)
|
)
|
||||||
|
|
||||||
const emptyBlocksScript = `
|
|
||||||
create table blocks (
|
|
||||||
pos int,
|
|
||||||
data blob
|
|
||||||
);
|
|
||||||
`
|
|
||||||
|
|
||||||
const testDatabase = "./testdata/map.sqlite"
|
|
||||||
|
|
||||||
func createEmptyDatabase(filename string) {
|
|
||||||
db, err := sql.Open("sqlite3", filename)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
rows, err := db.Query(emptyBlocksScript)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
rows.Next()
|
|
||||||
fmt.Println(rows)
|
|
||||||
db.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
func copy(src, dst string) error {
|
|
||||||
in, err := os.Open(src)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer in.Close()
|
|
||||||
|
|
||||||
out, err := os.Create(dst)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer out.Close()
|
|
||||||
|
|
||||||
_, err = io.Copy(out, in)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return out.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
func createTestDatabase(filename string) error {
|
|
||||||
return copy(testDatabase, filename)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestMigrateEmpty(t *testing.T) {
|
func TestMigrateEmpty(t *testing.T) {
|
||||||
tmpfile, err := ioutil.TempFile("", "TestMigrateEmpty.*.sqlite")
|
tmpfile, err := ioutil.TempFile("", "TestMigrateEmpty.*.sqlite")
|
||||||
@ -66,7 +17,7 @@ func TestMigrateEmpty(t *testing.T) {
|
|||||||
}
|
}
|
||||||
defer os.Remove(tmpfile.Name())
|
defer os.Remove(tmpfile.Name())
|
||||||
|
|
||||||
createEmptyDatabase(tmpfile.Name())
|
testutils.CreateEmptyDatabase(tmpfile.Name())
|
||||||
a, err := NewSqliteAccessor(tmpfile.Name())
|
a, err := NewSqliteAccessor(tmpfile.Name())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@ -84,7 +35,7 @@ func TestMigrate(t *testing.T) {
|
|||||||
}
|
}
|
||||||
defer os.Remove(tmpfile.Name())
|
defer os.Remove(tmpfile.Name())
|
||||||
|
|
||||||
createTestDatabase(tmpfile.Name())
|
testutils.CreateEmptyDatabase(tmpfile.Name())
|
||||||
a, err := NewSqliteAccessor(tmpfile.Name())
|
a, err := NewSqliteAccessor(tmpfile.Name())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@ -102,11 +53,12 @@ func TestMigrateAndQuery(t *testing.T) {
|
|||||||
}
|
}
|
||||||
defer os.Remove(tmpfile.Name())
|
defer os.Remove(tmpfile.Name())
|
||||||
|
|
||||||
createTestDatabase(tmpfile.Name())
|
testutils.CreateTestDatabase(tmpfile.Name())
|
||||||
a, err := NewSqliteAccessor(tmpfile.Name())
|
a, err := NewSqliteAccessor(tmpfile.Name())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
err = a.Migrate()
|
err = a.Migrate()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
|
@ -1,63 +1,35 @@
|
|||||||
package mapblockaccessor
|
package mapblockaccessor
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"os"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"mapserver/coords"
|
"mapserver/coords"
|
||||||
"mapserver/db"
|
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
"mapserver/testutils"
|
||||||
|
"mapserver/db"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
func copy(src, dst string) error {
|
func TestSimpleAccess(t *testing.T) {
|
||||||
in, err := os.Open(src)
|
logrus.SetLevel(logrus.DebugLevel)
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer in.Close()
|
|
||||||
|
|
||||||
out, err := os.Create(dst)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer out.Close()
|
|
||||||
|
|
||||||
_, err = io.Copy(out, in)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return out.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
const testDatabase = "./testdata/map.sqlite"
|
|
||||||
|
|
||||||
func createTestDatabase(filename string) error {
|
|
||||||
return copy(testDatabase, filename)
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetTestDatabase() db.DBAccessor {
|
|
||||||
tmpfile, err := ioutil.TempFile("", "TestMigrate.*.sqlite")
|
tmpfile, err := ioutil.TempFile("", "TestMigrate.*.sqlite")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
defer os.Remove(tmpfile.Name())
|
||||||
|
testutils.CreateTestDatabase(tmpfile.Name())
|
||||||
|
|
||||||
createTestDatabase(tmpfile.Name())
|
|
||||||
a, err := db.NewSqliteAccessor(tmpfile.Name())
|
a, err := db.NewSqliteAccessor(tmpfile.Name())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
err = a.Migrate()
|
err = a.Migrate()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return a
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSimpleAccess(t *testing.T) {
|
|
||||||
logrus.SetLevel(logrus.DebugLevel)
|
|
||||||
a := GetTestDatabase()
|
|
||||||
cache := NewMapBlockAccessor(a)
|
cache := NewMapBlockAccessor(a)
|
||||||
mb, err := cache.GetMapBlock(coords.NewMapBlockCoords(0, 0, 0))
|
mb, err := cache.GetMapBlock(coords.NewMapBlockCoords(0, 0, 0))
|
||||||
|
|
||||||
|
BIN
mapblockaccessor/testdata/map.sqlite
vendored
BIN
mapblockaccessor/testdata/map.sqlite
vendored
Binary file not shown.
@ -3,17 +3,18 @@ package mapblockrenderer
|
|||||||
import (
|
import (
|
||||||
"mapserver/colormapping"
|
"mapserver/colormapping"
|
||||||
"mapserver/coords"
|
"mapserver/coords"
|
||||||
|
"mapserver/mapblockaccessor"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MapBlockRenderer struct {
|
type MapBlockRenderer struct {
|
||||||
accessor *coords.DBAccessor
|
accessor *mapblockaccessor.MapBlockAccessor
|
||||||
colors *colormapping.ColorMapping
|
colors *colormapping.ColorMapping
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMapBlockRenderer(accessor *coords.DBAccessor, colors *colormapping.ColorMapping) {
|
func NewMapBlockRenderer(accessor *mapblockaccessor.MapBlockAccessor, colors *colormapping.ColorMapping) MapBlockRenderer {
|
||||||
//TODO
|
return MapBlockRenderer{accessor: accessor, colors: colors}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *MapBlockRenderer) Render(r coords.MapBlockRange) {
|
func (r *MapBlockRenderer) Render(pos1, pos2 coords.MapBlockCoords) {
|
||||||
//TODO
|
//TODO
|
||||||
}
|
}
|
||||||
|
60
testutils/database.go
Normal file
60
testutils/database.go
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
package testutils
|
||||||
|
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
_ "github.com/mattn/go-sqlite3"
|
||||||
|
"io"
|
||||||
|
"path/filepath"
|
||||||
|
"os"
|
||||||
|
"fmt"
|
||||||
|
"runtime"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
const emptyBlocksScript = `
|
||||||
|
create table blocks (
|
||||||
|
pos int,
|
||||||
|
data blob
|
||||||
|
);
|
||||||
|
`
|
||||||
|
|
||||||
|
func copy(src, dst string) error {
|
||||||
|
in, err := os.Open(src)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer in.Close()
|
||||||
|
|
||||||
|
out, err := os.Create(dst)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer out.Close()
|
||||||
|
|
||||||
|
_, err = io.Copy(out, in)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return out.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateTestDatabase(filename string) error {
|
||||||
|
_, currentfilename, _, _ := runtime.Caller(0)
|
||||||
|
return copy(filepath.Dir(currentfilename) + "/testdata/map.sqlite", filename)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func CreateEmptyDatabase(filename string) {
|
||||||
|
db, err := sql.Open("sqlite3", filename)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
rows, err := db.Query(emptyBlocksScript)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
rows.Next()
|
||||||
|
fmt.Println(rows)
|
||||||
|
db.Close()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user