forked from deblan/database-anonymizer
[wip] add run tests
This commit is contained in:
parent
1c6f792711
commit
a5fc2071da
3 changed files with 65 additions and 4 deletions
|
|
@ -1,22 +1,19 @@
|
|||
package app
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
"gitnet.fr/deblan/database-anonymizer/config"
|
||||
"gitnet.fr/deblan/database-anonymizer/faker"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func GetApp() App {
|
||||
return App{
|
||||
func TestAppCreateSelectQuery(t *testing.T) {
|
||||
c := config.SchemaConfigAction{Table: "foo"}
|
||||
app := App{
|
||||
FakeManager: faker.NewFakeManager(),
|
||||
DbConfig: config.DatabaseConfig{Type: "mysql", Dsn: "mysql://foo:bar@tests"},
|
||||
}
|
||||
}
|
||||
|
||||
func TestAppCreateSelectQuery(t *testing.T) {
|
||||
c := config.SchemaConfigAction{Table: "foo"}
|
||||
app := GetApp()
|
||||
|
||||
if app.CreateSelectQuery(c) != "SELECT * FROM `foo`" {
|
||||
t.Fatalf("TestAppCreateSelectQuery: empty configured query check failed")
|
||||
|
|
@ -28,3 +25,38 @@ func TestAppCreateSelectQuery(t *testing.T) {
|
|||
t.Fatalf("TestAppCreateSelectQuery: configured query check failed")
|
||||
}
|
||||
}
|
||||
|
||||
func TestAppDoAction(t *testing.T) {
|
||||
c := config.SchemaConfigAction{Table: "foo"}
|
||||
app := App{
|
||||
FakeManager: faker.NewFakeManager(),
|
||||
DbConfig: config.DatabaseConfig{Type: "mysql", Dsn: "mysql://foo:bar@tests"},
|
||||
}
|
||||
|
||||
if app.CreateSelectQuery(c) != "SELECT * FROM `foo`" {
|
||||
t.Fatalf("TestAppCreateSelectQuery: empty configured query check failed")
|
||||
}
|
||||
|
||||
c = config.SchemaConfigAction{Table: "foo", Query: "query"}
|
||||
|
||||
if app.CreateSelectQuery(c) != "query" {
|
||||
t.Fatalf("TestAppCreateSelectQuery: configured query check failed")
|
||||
}
|
||||
}
|
||||
|
||||
func TestAppRun(t *testing.T) {
|
||||
databaseConfig, _ := config.LoadDatabaseConfig("mysql://tcp(service-mysql)/test")
|
||||
db, _ := sql.Open(databaseConfig.Type, databaseConfig.Dsn)
|
||||
schema, _ := config.LoadSchemaConfigFromFile("../tests/schema.yml")
|
||||
|
||||
app := App{}
|
||||
app.Run(db, schema, faker.NewFakeManager(), databaseConfig)
|
||||
|
||||
var count int
|
||||
row := db.QueryRow("SELECT COUNT(*) FROM `table_truncate1`")
|
||||
row.Scan(&count)
|
||||
|
||||
if count != 0 {
|
||||
t.Fatalf("TestAppRuny: table_truncate1 check failed")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue