Commit 57d46a70 by Marcus Efraimsson

mssql datasource: additional data type tests

parent e7b79031
...@@ -14,7 +14,7 @@ type TestDB struct { ...@@ -14,7 +14,7 @@ type TestDB struct {
var TestDB_Sqlite3 = TestDB{DriverName: "sqlite3", ConnStr: ":memory:"} var TestDB_Sqlite3 = TestDB{DriverName: "sqlite3", ConnStr: ":memory:"}
var TestDB_Mysql = TestDB{DriverName: "mysql", ConnStr: "grafana:password@tcp(localhost:3306)/grafana_tests?collation=utf8mb4_unicode_ci"} var TestDB_Mysql = TestDB{DriverName: "mysql", ConnStr: "grafana:password@tcp(localhost:3306)/grafana_tests?collation=utf8mb4_unicode_ci"}
var TestDB_Postgres = TestDB{DriverName: "postgres", ConnStr: "user=grafanatest password=grafanatest host=localhost port=5432 dbname=grafanatest sslmode=disable"} var TestDB_Postgres = TestDB{DriverName: "postgres", ConnStr: "user=grafanatest password=grafanatest host=localhost port=5432 dbname=grafanatest sslmode=disable"}
var TestDB_Mssql = TestDB{DriverName: "mssql", ConnStr: "server=localhost;port=1433;database=grafana_tests;user id=grafana;password=password"} var TestDB_Mssql = TestDB{DriverName: "mssql", ConnStr: "server=localhost;port=1433;database=grafana_tests;user id=grafana;password=Password!"}
func CleanDB(x *xorm.Engine) { func CleanDB(x *xorm.Engine) {
if x.DriverName() == "postgres" { if x.DriverName() == "postgres" {
......
...@@ -5,7 +5,6 @@ import ( ...@@ -5,7 +5,6 @@ import (
"testing" "testing"
"time" "time"
_ "github.com/denisenkom/go-mssqldb"
"github.com/go-xorm/xorm" "github.com/go-xorm/xorm"
"github.com/grafana/grafana/pkg/components/simplejson" "github.com/grafana/grafana/pkg/components/simplejson"
"github.com/grafana/grafana/pkg/log" "github.com/grafana/grafana/pkg/log"
...@@ -15,9 +14,9 @@ import ( ...@@ -15,9 +14,9 @@ import (
) )
// To run this test, remove the Skip from SkipConvey // To run this test, remove the Skip from SkipConvey
// and set up a MSSQL db named grafana_tests and a user/password grafana/password // and set up a MSSQL db named grafana_tests and a user/password grafana/Password!
// and set the variable below to the IP address of the database // and set the variable below to the IP address of the database
var serverIP string = "10.20.30.40" var serverIP string = "172.18.0.1"
func TestMSSQL(t *testing.T) { func TestMSSQL(t *testing.T) {
SkipConvey("MSSQL", t, func() { SkipConvey("MSSQL", t, func() {
...@@ -34,37 +33,54 @@ func TestMSSQL(t *testing.T) { ...@@ -34,37 +33,54 @@ func TestMSSQL(t *testing.T) {
sess := x.NewSession() sess := x.NewSession()
defer sess.Close() defer sess.Close()
sql := "IF OBJECT_ID('dbo.[mssql_types]', 'U') IS NOT NULL" sql := `
sql += " DROP TABLE dbo.[mssql_types];" IF OBJECT_ID('dbo.[mssql_types]', 'U') IS NOT NULL
sql += "CREATE TABLE [mssql_types] ( " DROP TABLE dbo.[mssql_types]
sql += "abit bit, "
sql += "atinyint tinyint, " CREATE TABLE [mssql_types] (
sql += "asmallint smallint, " c_bit bit,
sql += "aint int, " c_tinyint tinyint,
sql += "abigint bigint, " c_smallint smallint,
sql += "avarchar varchar(3), " c_int int,
sql += "achar char(3), " c_bigint bigint,
sql += "anewvarchar varchar(14), " c_money money,
sql += "anewchar char(14), " c_smallmoney smallmoney,
sql += "areal real, " c_numeric numeric(10,5),
sql += "anewdecimal decimal(10,2), "
sql += "afloat float, " c_real real,
sql += "adatetime datetime, " c_decimal decimal(10,2),
sql += "adate date, " c_float float,
sql += "atime time, "
sql += "adatetimeoffset datetimeoffset) " c_char char(10),
c_varchar varchar(10),
c_text text,
c_nchar nchar(12),
c_nvarchar nvarchar(12),
c_ntext ntext,
c_datetime datetime,
c_datetime2 datetime2,
c_smalldatetime smalldatetime,
c_date date,
c_time time,
c_datetimeoffset datetimeoffset
)
`
_, err := sess.Exec(sql) _, err := sess.Exec(sql)
So(err, ShouldBeNil) So(err, ShouldBeNil)
sql = "INSERT INTO [mssql_types] " sql = `
sql += "(abit, atinyint, asmallint, aint, abigint, " INSERT INTO [mssql_types]
sql += "avarchar, achar, anewvarchar, anewchar, " SELECT
sql += "areal, anewdecimal, afloat, " 1, 5, 20020, 980300, 1420070400, '$20000.15', '£2.15', 12345.12,
sql += "adatetime, adate, atime, adatetimeoffset ) " 1.11, 2.22, 3.33,
sql += "VALUES(1, 5, 20020, 980300, 1420070400, " 'char10', 'varchar10', 'text',
sql += "'abc', 'def', 'hi varchar', 'I am only char', " N'☺nchar12☺', N'☺nvarchar12☺', N'☺text☺',
sql += "1.11, 2.22, 3.33, " GETUTCDATE(), GETUTCDATE(), GETUTCDATE(), CAST(GETUTCDATE() AS DATE), CAST(GETUTCDATE() AS TIME), SWITCHOFFSET(SYSDATETIMEOFFSET(), '-07:00')
sql += "GETUTCDATE(), CAST(GETUTCDATE() AS DATE), CAST(GETUTCDATE() AS TIME), SWITCHOFFSET(SYSDATETIMEOFFSET(), '-07:00') );" `
_, err = sess.Exec(sql) _, err = sess.Exec(sql)
So(err, ShouldBeNil) So(err, ShouldBeNil)
...@@ -86,25 +102,35 @@ func TestMSSQL(t *testing.T) { ...@@ -86,25 +102,35 @@ func TestMSSQL(t *testing.T) {
So(err, ShouldBeNil) So(err, ShouldBeNil)
column := queryResult.Tables[0].Rows[0] column := queryResult.Tables[0].Rows[0]
So(column[0].(bool), ShouldEqual, true) So(column[0].(bool), ShouldEqual, true)
So(column[1].(int64), ShouldEqual, 5) So(column[1].(int64), ShouldEqual, 5)
So(column[2].(int64), ShouldEqual, 20020) So(column[2].(int64), ShouldEqual, 20020)
So(column[3].(int64), ShouldEqual, 980300) So(column[3].(int64), ShouldEqual, 980300)
So(column[4].(int64), ShouldEqual, 1420070400) So(column[4].(int64), ShouldEqual, 1420070400)
// So(column[5].(float64), ShouldEqual, 20000.15)
// So(column[6].(float64), ShouldEqual, 2.15)
//So(column[7].(float64), ShouldEqual, 12345.12)
So(column[5].(string), ShouldEqual, "abc") So(column[8].(float64), ShouldEqual, 1.1100000143051147) // MSSQL dose not have precision for "real" datatype
So(column[6].(string), ShouldEqual, "def")
So(column[7].(string), ShouldEqual, "hi varchar")
So(column[8].(string), ShouldEqual, "I am only char")
So(column[9].(float64), ShouldEqual, 1.1100000143051147) // MSSQL dose not have precision for "real" datatype
// fix me: MSSQL driver puts the decimal inside an array of chars. and the test fails despite the values are correct. // fix me: MSSQL driver puts the decimal inside an array of chars. and the test fails despite the values are correct.
//So(column[10].([]uint8), ShouldEqual, []uint8{'2', '.', '2', '2'}) //So(column[9].([]uint8), ShouldEqual, []uint8{'2', '.', '2', '2'})
So(column[11].(float64), ShouldEqual, 3.33) So(column[10].(float64), ShouldEqual, 3.33)
So(column[12].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC())
So(column[13].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC().Truncate(24*time.Hour)) // ShouldEqual dose not work here !!? So(column[11].(string), ShouldEqual, "char10 ")
So(column[14].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Date(1, time.January, 1, time.Now().UTC().Hour(), time.Now().UTC().Minute(), time.Now().UTC().Second(), 0, time.UTC)) So(column[12].(string), ShouldEqual, "varchar10")
So(column[15].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC()) So(column[13].(string), ShouldEqual, "text")
So(column[14].(string), ShouldEqual, "☺nchar12☺ ")
So(column[15].(string), ShouldEqual, "☺nvarchar12☺")
So(column[16].(string), ShouldEqual, "☺text☺")
So(column[17].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC())
So(column[18].(time.Time), ShouldHappenWithin, time.Duration(10*time.Millisecond), time.Now().UTC())
So(column[19].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC().Truncate(time.Minute))
So(column[20].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC().Truncate(24*time.Hour)) // ShouldEqual dose not work here !!?
So(column[21].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Date(1, time.January, 1, time.Now().UTC().Hour(), time.Now().UTC().Minute(), time.Now().UTC().Second(), 0, time.UTC))
So(column[22].(time.Time), ShouldHappenWithin, time.Duration(10*time.Second), time.Now().UTC())
}) })
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment