2016-09-15 06:41:57 +05:30
|
|
|
package sql
|
2016-09-18 06:31:15 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2016-11-23 05:05:46 +05:30
|
|
|
"github.com/Sirupsen/logrus"
|
2016-09-18 06:31:15 +05:30
|
|
|
"github.com/coreos/dex/storage"
|
|
|
|
"github.com/coreos/dex/storage/conformance"
|
|
|
|
)
|
|
|
|
|
|
|
|
func withTimeout(t time.Duration, f func()) {
|
|
|
|
c := make(chan struct{})
|
|
|
|
defer close(c)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-c:
|
|
|
|
case <-time.After(t):
|
|
|
|
// Dump a stack trace of the program. Useful for debugging deadlocks.
|
|
|
|
buf := make([]byte, 2<<20)
|
|
|
|
fmt.Fprintf(os.Stderr, "%s\n", buf[:runtime.Stack(buf, true)])
|
|
|
|
panic("test took too long")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
|
|
|
|
func cleanDB(c *conn) error {
|
|
|
|
_, err := c.Exec(`
|
|
|
|
delete from client;
|
|
|
|
delete from auth_request;
|
|
|
|
delete from auth_code;
|
|
|
|
delete from refresh_token;
|
|
|
|
delete from keys;
|
2016-11-01 11:30:55 +05:30
|
|
|
delete from password;
|
2016-09-18 06:31:15 +05:30
|
|
|
`)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-23 05:05:46 +05:30
|
|
|
var logger = &logrus.Logger{
|
|
|
|
Out: os.Stderr,
|
|
|
|
Formatter: &logrus.TextFormatter{DisableColors: true},
|
|
|
|
Level: logrus.DebugLevel,
|
|
|
|
}
|
|
|
|
|
2016-09-18 06:31:15 +05:30
|
|
|
func TestSQLite3(t *testing.T) {
|
|
|
|
newStorage := func() storage.Storage {
|
|
|
|
// NOTE(ericchiang): In memory means we only get one connection at a time. If we
|
|
|
|
// ever write tests that require using multiple connections, for instance to test
|
|
|
|
// transactions, we need to move to a file based system.
|
|
|
|
s := &SQLite3{":memory:"}
|
2016-11-23 05:05:46 +05:30
|
|
|
conn, err := s.open(logger)
|
2016-09-18 06:31:15 +05:30
|
|
|
if err != nil {
|
2016-11-01 11:30:55 +05:30
|
|
|
fmt.Fprintln(os.Stdout, err)
|
2016-09-18 06:31:15 +05:30
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return conn
|
|
|
|
}
|
|
|
|
|
|
|
|
withTimeout(time.Second*10, func() {
|
2016-10-13 07:18:09 +05:30
|
|
|
conformance.RunTests(t, newStorage)
|
2016-09-18 06:31:15 +05:30
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-11-01 11:30:55 +05:30
|
|
|
func getenv(key, defaultVal string) string {
|
|
|
|
if val := os.Getenv(key); val != "" {
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
return defaultVal
|
|
|
|
}
|
|
|
|
|
|
|
|
const testPostgresEnv = "DEX_POSTGRES_HOST"
|
|
|
|
|
2016-09-18 06:31:15 +05:30
|
|
|
func TestPostgres(t *testing.T) {
|
2016-11-01 11:30:55 +05:30
|
|
|
host := os.Getenv(testPostgresEnv)
|
|
|
|
if host == "" {
|
|
|
|
t.Skipf("test environment variable %q not set, skipping", testPostgresEnv)
|
2016-09-18 06:31:15 +05:30
|
|
|
}
|
|
|
|
p := Postgres{
|
2016-11-01 11:30:55 +05:30
|
|
|
Database: getenv("DEX_POSTGRES_DATABASE", "postgres"),
|
|
|
|
User: getenv("DEX_POSTGRES_USER", "postgres"),
|
|
|
|
Password: getenv("DEX_POSTGRES_PASSWORD", "postgres"),
|
|
|
|
Host: host,
|
2016-09-18 06:31:15 +05:30
|
|
|
SSL: PostgresSSL{
|
|
|
|
Mode: sslDisable, // Postgres container doesn't support SSL.
|
|
|
|
},
|
|
|
|
ConnectionTimeout: 5,
|
|
|
|
}
|
2016-10-13 10:26:47 +05:30
|
|
|
|
|
|
|
// t.Fatal has a bad habbit of not actually printing the error
|
|
|
|
fatal := func(i interface{}) {
|
|
|
|
fmt.Fprintln(os.Stdout, i)
|
|
|
|
t.Fatal(i)
|
2016-09-18 06:31:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
newStorage := func() storage.Storage {
|
2016-11-23 05:05:46 +05:30
|
|
|
conn, err := p.open(logger)
|
2016-10-13 10:26:47 +05:30
|
|
|
if err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
2016-09-18 06:31:15 +05:30
|
|
|
if err := cleanDB(conn); err != nil {
|
2016-10-13 10:26:47 +05:30
|
|
|
fatal(err)
|
2016-09-18 06:31:15 +05:30
|
|
|
}
|
|
|
|
return conn
|
|
|
|
}
|
|
|
|
withTimeout(time.Minute*1, func() {
|
2016-10-13 07:18:09 +05:30
|
|
|
conformance.RunTests(t, newStorage)
|
2016-09-18 06:31:15 +05:30
|
|
|
})
|
2016-11-01 11:30:55 +05:30
|
|
|
withTimeout(time.Minute*1, func() {
|
|
|
|
conformance.RunTransactionTests(t, newStorage)
|
|
|
|
})
|
2016-09-18 06:31:15 +05:30
|
|
|
}
|