2017-12-04 02:56:21 +08:00
package mssql
import (
pkg/tsdb/mssql/mssql_test.go: pass context.Background() instead of nil
See,
$ gometalinter --vendor --disable-all --enable=megacheck --disable=gotype --deadline 6m ./...
pkg/tsdb/mssql/mssql_test.go:131:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:221:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:268:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:330:34:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:355:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:444:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:466:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:488:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:510:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:532:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:554:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:576:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:598:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:620:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:643:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:666:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:742:34:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:819:34:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:895:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:918:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:944:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:974:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:1004:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:1034:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:1062:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
pkg/tsdb/mssql/mssql_test.go:1090:33:warning: do not pass a nil Context, even if a function permits it; pass context.TODO if you are unsure about which Context to use (SA1012) (megacheck)
2018-10-03 16:21:14 +08:00
"context"
2018-03-15 16:51:29 +08:00
"fmt"
2018-03-16 21:42:54 +08:00
"math/rand"
2017-12-06 15:32:20 +08:00
"strings"
2017-12-04 02:56:21 +08:00
"testing"
"time"
2018-07-27 00:11:10 +08:00
"github.com/grafana/grafana/pkg/components/securejsondata"
2017-12-04 02:56:21 +08:00
"github.com/grafana/grafana/pkg/components/simplejson"
2021-03-29 19:03:01 +08:00
"github.com/grafana/grafana/pkg/infra/log"
2018-07-27 00:11:10 +08:00
"github.com/grafana/grafana/pkg/models"
2021-03-08 14:02:49 +08:00
"github.com/grafana/grafana/pkg/plugins"
2017-12-04 02:56:21 +08:00
"github.com/grafana/grafana/pkg/services/sqlstore/sqlutil"
2019-09-11 03:50:04 +08:00
"github.com/grafana/grafana/pkg/tsdb/sqleng"
2017-12-04 02:56:21 +08:00
. "github.com/smartystreets/goconvey/convey"
2021-03-29 19:03:01 +08:00
"github.com/stretchr/testify/assert"
2020-04-01 21:57:21 +08:00
"xorm.io/xorm"
2017-12-04 02:56:21 +08:00
)
// To run this test, remove the Skip from SkipConvey
2018-04-16 17:06:23 +08:00
// The tests require a MSSQL db named grafanatest and a user/password grafana/Password!
2018-03-16 21:42:54 +08:00
// Use the docker/blocks/mssql_tests/docker-compose.yaml to spin up a
// preconfigured MSSQL server suitable for running these tests.
2018-07-27 00:11:10 +08:00
// There is also a datasource and dashboard provisioned by devenv scripts that you can
2020-06-01 23:11:25 +08:00
// use to verify that the generated data are visualized as expected, see
2018-07-27 00:11:10 +08:00
// devenv/README.md for setup instructions.
2018-03-16 21:42:54 +08:00
// If needed, change the variable below to the IP address of the database.
2018-04-28 04:14:36 +08:00
var serverIP = "localhost"
2017-12-06 15:32:20 +08:00
2017-12-04 02:56:21 +08:00
func TestMSSQL ( t * testing . T ) {
2018-03-15 22:27:31 +08:00
SkipConvey ( "MSSQL" , t , func ( ) {
2017-12-04 02:56:21 +08:00
x := InitMSSQLTestDB ( t )
2019-09-11 03:50:04 +08:00
origXormEngine := sqleng . NewXormEngine
sqleng . NewXormEngine = func ( d , c string ) ( * xorm . Engine , error ) {
2018-07-27 00:11:10 +08:00
return x , nil
2017-12-04 02:56:21 +08:00
}
2019-09-11 03:50:04 +08:00
origInterpolate := sqleng . Interpolate
2021-03-08 14:02:49 +08:00
sqleng . Interpolate = func ( query plugins . DataSubQuery , timeRange plugins . DataTimeRange , sql string ) ( string , error ) {
2018-09-13 22:51:00 +08:00
return sql , nil
}
2021-03-08 14:02:49 +08:00
endpoint , err := NewExecutor ( & models . DataSource {
2018-07-27 00:11:10 +08:00
JsonData : simplejson . New ( ) ,
SecureJsonData : securejsondata . SecureJsonData { } ,
} )
So ( err , ShouldBeNil )
2017-12-04 02:56:21 +08:00
2018-07-27 00:11:10 +08:00
sess := x . NewSession ( )
2018-03-22 22:23:12 +08:00
fromStart := time . Date ( 2018 , 3 , 15 , 13 , 0 , 0 , 0 , time . UTC ) . In ( time . Local )
2018-03-16 21:37:16 +08:00
2018-07-27 00:11:10 +08:00
Reset ( func ( ) {
sess . Close ( )
2019-09-11 03:50:04 +08:00
sqleng . NewXormEngine = origXormEngine
sqleng . Interpolate = origInterpolate
2018-07-27 00:11:10 +08:00
} )
2018-03-15 21:26:53 +08:00
Convey ( "Given a table with different native data types" , func ( ) {
sql := `
2018-03-20 21:38:56 +08:00
IF OBJECT_ID ( ' dbo . [ mssql_types ] ' , 'U' ) IS NOT NULL
DROP TABLE dbo . [ mssql_types ]
CREATE TABLE [ mssql_types ] (
c_bit bit ,
c_tinyint tinyint ,
c_smallint smallint ,
c_int int ,
c_bigint bigint ,
c_money money ,
c_smallmoney smallmoney ,
c_numeric numeric ( 10 , 5 ) ,
c_real real ,
c_decimal decimal ( 10 , 2 ) ,
c_float float ,
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 ,
2020-06-26 16:11:43 +08:00
c_datetimeoffset datetimeoffset ,
c_uuid uniqueidentifier
2018-03-20 21:38:56 +08:00
)
`
2018-03-15 21:26:53 +08:00
_ , err := sess . Exec ( sql )
So ( err , ShouldBeNil )
dt := time . Date ( 2018 , 3 , 14 , 21 , 20 , 6 , 527e6 , time . UTC )
dtFormat := "2006-01-02 15:04:05.999999999"
d := dt . Format ( dtFormat )
dt2 := time . Date ( 2018 , 3 , 14 , 21 , 20 , 6 , 8896406e2 , time . UTC )
dt2Format := "2006-01-02 15:04:05.999999999 -07:00"
d2 := dt2 . Format ( dt2Format )
2020-06-26 16:11:43 +08:00
uuid := "B33D42A3-AC5A-4D4C-81DD-72F3D5C49025"
2018-03-15 21:26:53 +08:00
sql = fmt . Sprintf ( `
2018-03-20 21:38:56 +08:00
INSERT INTO [ mssql_types ]
SELECT
1 , 5 , 20020 , 980300 , 1420070400 , ' $ 20000.15 ' , ' £ 2.15 ' , 12345.12 ,
1.11 , 2.22 , 3.33 ,
' char10 ' , ' varchar10 ' , ' text ' ,
N ' ☺ nchar12 ☺ ' , N ' ☺ nvarchar12 ☺ ' , N ' ☺ text ☺ ' ,
2020-06-26 16:11:43 +08:00
CAST ( ' % s ' AS DATETIME ) , CAST ( ' % s ' AS DATETIME2 ) , CAST ( ' % s ' AS SMALLDATETIME ) , CAST ( ' % s ' AS DATE ) , CAST ( ' % s ' AS TIME ) , SWITCHOFFSET ( CAST ( ' % s ' AS DATETIMEOFFSET ) , ' - 07 : 00 ' ) ,
CONVERT ( uniqueidentifier , ' % s ' )
` , d , d2 , d , d , d , d2 , uuid )
2018-03-14 02:54:29 +08:00
2018-03-15 21:26:53 +08:00
_ , err = sess . Exec ( sql )
2017-12-04 02:56:21 +08:00
So ( err , ShouldBeNil )
2018-03-15 22:27:31 +08:00
Convey ( "When doing a table query should map MSSQL column types to Go types" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-15 21:26:53 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : "SELECT * FROM mssql_types" ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-15 21:26:53 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-15 21:26:53 +08:00
queryResult := resp . Results [ "A" ]
So ( err , ShouldBeNil )
column := queryResult . Tables [ 0 ] . Rows [ 0 ]
So ( column [ 0 ] . ( bool ) , ShouldEqual , true )
2018-03-16 21:37:16 +08:00
2018-03-15 21:26:53 +08:00
So ( column [ 1 ] . ( int64 ) , ShouldEqual , 5 )
So ( column [ 2 ] . ( int64 ) , ShouldEqual , 20020 )
So ( column [ 3 ] . ( int64 ) , ShouldEqual , 980300 )
So ( column [ 4 ] . ( int64 ) , ShouldEqual , 1420070400 )
2018-03-16 21:37:16 +08:00
So ( column [ 5 ] . ( float64 ) , ShouldEqual , 20000.15 )
So ( column [ 6 ] . ( float64 ) , ShouldEqual , 2.15 )
So ( column [ 7 ] . ( float64 ) , ShouldEqual , 12345.12 )
So ( column [ 8 ] . ( float64 ) , ShouldEqual , 1.1100000143051147 )
So ( column [ 9 ] . ( float64 ) , ShouldEqual , 2.22 )
2018-03-15 21:26:53 +08:00
So ( column [ 10 ] . ( float64 ) , ShouldEqual , 3.33 )
So ( column [ 11 ] . ( string ) , ShouldEqual , "char10 " )
So ( column [ 12 ] . ( string ) , ShouldEqual , "varchar10" )
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 ) , ShouldEqual , dt )
So ( column [ 18 ] . ( time . Time ) , ShouldEqual , dt2 )
So ( column [ 19 ] . ( time . Time ) , ShouldEqual , dt . Truncate ( time . Minute ) )
So ( column [ 20 ] . ( time . Time ) , ShouldEqual , dt . Truncate ( 24 * time . Hour ) )
So ( column [ 21 ] . ( time . Time ) , ShouldEqual , time . Date ( 1 , 1 , 1 , dt . Hour ( ) , dt . Minute ( ) , dt . Second ( ) , dt . Nanosecond ( ) , time . UTC ) )
2019-05-06 15:27:45 +08:00
So ( column [ 22 ] . ( time . Time ) , ShouldEqual , dt2 . In ( time . FixedZone ( "UTC-7" , int ( - 7 * 60 * 60 ) ) ) )
2020-06-26 16:11:43 +08:00
So ( column [ 23 ] . ( string ) , ShouldEqual , uuid )
2018-03-15 21:26:53 +08:00
} )
2018-03-15 16:51:29 +08:00
} )
2018-03-16 21:42:54 +08:00
Convey ( "Given a table with metrics that lacks data for some series " , func ( ) {
2018-03-15 16:51:29 +08:00
sql := `
2018-03-20 21:38:56 +08:00
IF OBJECT_ID ( ' dbo . [ metric ] ' , 'U' ) IS NOT NULL
DROP TABLE dbo . [ metric ]
2018-03-15 21:26:53 +08:00
2018-03-20 21:38:56 +08:00
CREATE TABLE [ metric ] (
time datetime ,
value int
)
`
2018-03-15 21:26:53 +08:00
2018-03-15 16:51:29 +08:00
_ , err := sess . Exec ( sql )
So ( err , ShouldBeNil )
2018-03-15 21:26:53 +08:00
type metric struct {
2018-03-16 21:42:54 +08:00
Time time . Time
Value int64
2018-03-15 21:26:53 +08:00
}
series := [ ] * metric { }
firstRange := genTimeRangeByInterval ( fromStart , 10 * time . Minute , 10 * time . Second )
secondRange := genTimeRangeByInterval ( fromStart . Add ( 20 * time . Minute ) , 10 * time . Minute , 10 * time . Second )
for _ , t := range firstRange {
series = append ( series , & metric {
2018-03-16 21:42:54 +08:00
Time : t ,
Value : 15 ,
2018-03-15 21:26:53 +08:00
} )
}
for _ , t := range secondRange {
series = append ( series , & metric {
2018-03-16 21:42:54 +08:00
Time : t ,
Value : 20 ,
2018-03-15 21:26:53 +08:00
} )
}
2018-04-10 17:10:56 +08:00
_ , err = sess . InsertMulti ( series )
So ( err , ShouldBeNil )
2018-03-15 21:26:53 +08:00
Convey ( "When doing a metric query using timeGroup" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-15 21:26:53 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-03-16 21:42:54 +08:00
"rawSql" : "SELECT $__timeGroup(time, '5m') AS time, avg(value) as value FROM metric GROUP BY $__timeGroup(time, '5m') ORDER BY 1" ,
2018-03-15 21:26:53 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-15 21:26:53 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-15 21:26:53 +08:00
So ( err , ShouldBeNil )
2018-03-22 21:49:40 +08:00
queryResult := resp . Results [ "A" ]
2018-03-15 21:26:53 +08:00
So ( queryResult . Error , ShouldBeNil )
points := queryResult . Series [ 0 ] . Points
2018-07-01 21:57:02 +08:00
// without fill this should result in 4 buckets
So ( len ( points ) , ShouldEqual , 4 )
2018-03-15 21:26:53 +08:00
2018-03-22 21:49:40 +08:00
dt := fromStart
2018-07-01 21:57:02 +08:00
for i := 0 ; i < 2 ; i ++ {
2018-03-22 21:49:40 +08:00
aValue := points [ i ] [ 0 ] . Float64
aTime := time . Unix ( int64 ( points [ i ] [ 1 ] . Float64 ) / 1000 , 0 )
So ( aValue , ShouldEqual , 15 )
So ( aTime , ShouldEqual , dt )
dt = dt . Add ( 5 * time . Minute )
}
2018-03-15 21:26:53 +08:00
2018-07-01 21:57:02 +08:00
// adjust for 10 minute gap between first and second set of points
dt = dt . Add ( 10 * time . Minute )
for i := 2 ; i < 4 ; i ++ {
2018-03-22 21:49:40 +08:00
aValue := points [ i ] [ 0 ] . Float64
aTime := time . Unix ( int64 ( points [ i ] [ 1 ] . Float64 ) / 1000 , 0 )
So ( aValue , ShouldEqual , 20 )
So ( aTime , ShouldEqual , dt )
dt = dt . Add ( 5 * time . Minute )
}
2018-03-15 21:26:53 +08:00
} )
2018-03-15 22:06:54 +08:00
Convey ( "When doing a metric query using timeGroup with NULL fill enabled" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-15 22:06:54 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-03-16 21:42:54 +08:00
"rawSql" : "SELECT $__timeGroup(time, '5m', NULL) AS time, avg(value) as value FROM metric GROUP BY $__timeGroup(time, '5m') ORDER BY 1" ,
2018-03-15 22:06:54 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-15 22:06:54 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-03-15 22:06:54 +08:00
From : fmt . Sprintf ( "%v" , fromStart . Unix ( ) * 1000 ) ,
To : fmt . Sprintf ( "%v" , fromStart . Add ( 34 * time . Minute ) . Unix ( ) * 1000 ) ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-15 22:06:54 +08:00
So ( err , ShouldBeNil )
2018-03-22 21:49:40 +08:00
queryResult := resp . Results [ "A" ]
2018-03-15 22:06:54 +08:00
So ( queryResult . Error , ShouldBeNil )
points := queryResult . Series [ 0 ] . Points
So ( len ( points ) , ShouldEqual , 7 )
2018-03-22 21:49:40 +08:00
dt := fromStart
2018-07-01 21:57:02 +08:00
for i := 0 ; i < 2 ; i ++ {
2018-03-22 21:49:40 +08:00
aValue := points [ i ] [ 0 ] . Float64
aTime := time . Unix ( int64 ( points [ i ] [ 1 ] . Float64 ) / 1000 , 0 )
So ( aValue , ShouldEqual , 15 )
So ( aTime , ShouldEqual , dt )
dt = dt . Add ( 5 * time . Minute )
}
2018-07-01 21:57:02 +08:00
// check for NULL values inserted by fill
So ( points [ 2 ] [ 0 ] . Valid , ShouldBeFalse )
2018-03-22 21:49:40 +08:00
So ( points [ 3 ] [ 0 ] . Valid , ShouldBeFalse )
2018-07-01 21:57:02 +08:00
// adjust for 10 minute gap between first and second set of points
dt = dt . Add ( 10 * time . Minute )
for i := 4 ; i < 6 ; i ++ {
2018-03-22 21:49:40 +08:00
aValue := points [ i ] [ 0 ] . Float64
aTime := time . Unix ( int64 ( points [ i ] [ 1 ] . Float64 ) / 1000 , 0 )
So ( aValue , ShouldEqual , 20 )
So ( aTime , ShouldEqual , dt )
dt = dt . Add ( 5 * time . Minute )
}
2018-07-01 21:57:02 +08:00
So ( points [ 6 ] [ 0 ] . Valid , ShouldBeFalse )
2018-03-15 22:06:54 +08:00
} )
2018-09-13 22:51:00 +08:00
Convey ( "When doing a metric query using timeGroup and $__interval" , func ( ) {
2019-09-11 03:50:04 +08:00
mockInterpolate := sqleng . Interpolate
sqleng . Interpolate = origInterpolate
2018-09-13 22:51:00 +08:00
Reset ( func ( ) {
2019-09-11 03:50:04 +08:00
sqleng . Interpolate = mockInterpolate
2018-09-13 22:51:00 +08:00
} )
Convey ( "Should replace $__interval" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-09-13 22:51:00 +08:00
{
DataSource : & models . DataSource { } ,
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : "SELECT $__timeGroup(time, $__interval) AS time, avg(value) as value FROM metric GROUP BY $__timeGroup(time, $__interval) ORDER BY 1" ,
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-09-13 22:51:00 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-09-13 22:51:00 +08:00
From : fmt . Sprintf ( "%v" , fromStart . Unix ( ) * 1000 ) ,
To : fmt . Sprintf ( "%v" , fromStart . Add ( 30 * time . Minute ) . Unix ( ) * 1000 ) ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-09-13 22:51:00 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
2020-05-30 02:06:33 +08:00
So ( queryResult . Meta . Get ( sqleng . MetaKeyExecutedQueryString ) . MustString ( ) , ShouldEqual , "SELECT FLOOR(DATEDIFF(second, '1970-01-01', time)/60)*60 AS time, avg(value) as value FROM metric GROUP BY FLOOR(DATEDIFF(second, '1970-01-01', time)/60)*60 ORDER BY 1" )
2018-09-13 22:51:00 +08:00
} )
} )
2018-03-15 22:06:54 +08:00
Convey ( "When doing a metric query using timeGroup with float fill enabled" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-15 22:06:54 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-03-16 21:42:54 +08:00
"rawSql" : "SELECT $__timeGroup(time, '5m', 1.5) AS time, avg(value) as value FROM metric GROUP BY $__timeGroup(time, '5m') ORDER BY 1" ,
2018-03-15 22:06:54 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-15 22:06:54 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-03-15 22:06:54 +08:00
From : fmt . Sprintf ( "%v" , fromStart . Unix ( ) * 1000 ) ,
To : fmt . Sprintf ( "%v" , fromStart . Add ( 34 * time . Minute ) . Unix ( ) * 1000 ) ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-15 22:06:54 +08:00
So ( err , ShouldBeNil )
2018-03-22 21:49:40 +08:00
queryResult := resp . Results [ "A" ]
2018-03-15 22:06:54 +08:00
So ( queryResult . Error , ShouldBeNil )
points := queryResult . Series [ 0 ] . Points
2018-03-22 21:49:40 +08:00
So ( points [ 3 ] [ 0 ] . Float64 , ShouldEqual , 1.5 )
2018-03-15 22:06:54 +08:00
} )
2017-12-04 02:56:21 +08:00
} )
2018-03-16 21:42:54 +08:00
Convey ( "Given a table with metrics having multiple values and measurements" , func ( ) {
2018-03-22 22:23:12 +08:00
type metric_values struct {
2018-04-10 17:10:56 +08:00
Time time . Time
TimeInt64 int64 ` xorm:"bigint 'timeInt64' not null" `
TimeInt64Nullable * int64 ` xorm:"bigint 'timeInt64Nullable' null" `
TimeFloat64 float64 ` xorm:"float 'timeFloat64' not null" `
TimeFloat64Nullable * float64 ` xorm:"float 'timeFloat64Nullable' null" `
TimeInt32 int32 ` xorm:"int(11) 'timeInt32' not null" `
TimeInt32Nullable * int32 ` xorm:"int(11) 'timeInt32Nullable' null" `
TimeFloat32 float32 ` xorm:"float(11) 'timeFloat32' not null" `
TimeFloat32Nullable * float32 ` xorm:"float(11) 'timeFloat32Nullable' null" `
Measurement string
ValueOne int64 ` xorm:"integer 'valueOne'" `
ValueTwo int64 ` xorm:"integer 'valueTwo'" `
2018-03-16 21:42:54 +08:00
}
2018-03-22 22:23:12 +08:00
if exist , err := sess . IsTableExist ( metric_values { } ) ; err != nil || exist {
So ( err , ShouldBeNil )
2019-10-22 22:16:53 +08:00
err = sess . DropTable ( metric_values { } )
So ( err , ShouldBeNil )
2018-03-22 22:23:12 +08:00
}
err := sess . CreateTable ( metric_values { } )
So ( err , ShouldBeNil )
2018-03-16 21:42:54 +08:00
rand . Seed ( time . Now ( ) . Unix ( ) )
rnd := func ( min , max int64 ) int64 {
return rand . Int63n ( max - min ) + min
}
2018-04-10 17:10:56 +08:00
var tInitial time . Time
2018-03-22 22:23:12 +08:00
series := [ ] * metric_values { }
2018-04-10 17:10:56 +08:00
for i , t := range genTimeRangeByInterval ( fromStart . Add ( - 30 * time . Minute ) , 90 * time . Minute , 5 * time . Minute ) {
if i == 0 {
tInitial = t
}
tSeconds := t . Unix ( )
tSecondsInt32 := int32 ( tSeconds )
tSecondsFloat32 := float32 ( tSeconds )
tMilliseconds := tSeconds * 1e3
tMillisecondsFloat := float64 ( tMilliseconds )
first := metric_values {
Time : t ,
TimeInt64 : tMilliseconds ,
TimeInt64Nullable : & ( tMilliseconds ) ,
TimeFloat64 : tMillisecondsFloat ,
TimeFloat64Nullable : & tMillisecondsFloat ,
TimeInt32 : tSecondsInt32 ,
TimeInt32Nullable : & tSecondsInt32 ,
TimeFloat32 : tSecondsFloat32 ,
TimeFloat32Nullable : & tSecondsFloat32 ,
Measurement : "Metric A" ,
ValueOne : rnd ( 0 , 100 ) ,
ValueTwo : rnd ( 0 , 100 ) ,
}
second := first
second . Measurement = "Metric B"
second . ValueOne = rnd ( 0 , 100 )
second . ValueTwo = rnd ( 0 , 100 )
series = append ( series , & first )
series = append ( series , & second )
2018-03-16 21:42:54 +08:00
}
2018-04-10 17:10:56 +08:00
_ , err = sess . InsertMulti ( series )
So ( err , ShouldBeNil )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (int64) as time column and value column (int64) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeInt64 as time, timeInt64 FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-16 21:42:54 +08:00
So ( err , ShouldBeNil )
2018-04-10 17:10:56 +08:00
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( tInitial . UnixNano ( ) / 1e6 ) )
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (int64 nullable) as time column and value column (int64 nullable) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeInt64Nullable as time, timeInt64Nullable FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( tInitial . UnixNano ( ) / 1e6 ) )
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (float64) as time column and value column (float64) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeFloat64 as time, timeFloat64 FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( tInitial . UnixNano ( ) / 1e6 ) )
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (float64 nullable) as time column and value column (float64 nullable) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeFloat64Nullable as time, timeFloat64Nullable FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( tInitial . UnixNano ( ) / 1e6 ) )
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (int32) as time column and value column (int32) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeInt32 as time, timeInt32 FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( tInitial . UnixNano ( ) / 1e6 ) )
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (int32 nullable) as time column and value column (int32 nullable) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeInt32Nullable as time, timeInt32Nullable FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( tInitial . UnixNano ( ) / 1e6 ) )
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (float32) as time column and value column (float32) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeFloat32 as time, timeFloat32 FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
2018-07-04 18:16:39 +08:00
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( float32 ( tInitial . Unix ( ) ) ) * 1e3 )
2018-04-10 17:10:56 +08:00
} )
2018-04-25 01:54:08 +08:00
Convey ( "When doing a metric query using epoch (float32 nullable) as time column and value column (float32 nullable) should return metric with time in milliseconds" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-04-10 17:10:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-04-25 01:54:08 +08:00
"rawSql" : ` SELECT TOP 1 timeFloat32Nullable as time, timeFloat32Nullable FROM metric_values ORDER BY time ` ,
2018-04-10 17:10:56 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-04-10 17:10:56 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-04-10 17:10:56 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 1 )
2018-07-04 18:16:39 +08:00
So ( queryResult . Series [ 0 ] . Points [ 0 ] [ 1 ] . Float64 , ShouldEqual , float64 ( float32 ( tInitial . Unix ( ) ) ) * 1e3 )
2018-04-10 17:10:56 +08:00
} )
2018-03-16 21:42:54 +08:00
Convey ( "When doing a metric query grouping by time and select metric column should return correct series" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-16 21:42:54 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-03-20 00:14:01 +08:00
"rawSql" : "SELECT $__timeEpoch(time), measurement + ' - value one' as metric, valueOne FROM metric_values ORDER BY 1" ,
2018-03-16 21:42:54 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-16 21:42:54 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-16 21:42:54 +08:00
So ( err , ShouldBeNil )
2018-03-22 22:23:12 +08:00
queryResult := resp . Results [ "A" ]
2018-03-16 21:42:54 +08:00
So ( queryResult . Error , ShouldBeNil )
2018-03-20 00:14:01 +08:00
So ( len ( queryResult . Series ) , ShouldEqual , 2 )
So ( queryResult . Series [ 0 ] . Name , ShouldEqual , "Metric A - value one" )
So ( queryResult . Series [ 1 ] . Name , ShouldEqual , "Metric B - value one" )
2018-03-16 21:42:54 +08:00
} )
Convey ( "When doing a metric query grouping by time should return correct series" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-16 21:42:54 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : "SELECT $__timeEpoch(time), valueOne, valueTwo FROM metric_values ORDER BY 1" ,
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-16 21:42:54 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-16 21:42:54 +08:00
So ( err , ShouldBeNil )
2018-03-22 22:23:12 +08:00
queryResult := resp . Results [ "A" ]
2018-03-16 21:42:54 +08:00
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 2 )
So ( queryResult . Series [ 0 ] . Name , ShouldEqual , "valueOne" )
So ( queryResult . Series [ 1 ] . Name , ShouldEqual , "valueTwo" )
} )
2018-03-20 02:56:34 +08:00
2018-07-28 00:13:19 +08:00
Convey ( "When doing a metric query with metric column and multiple value columns" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-07-28 00:13:19 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-07-30 19:50:52 +08:00
"rawSql" : "SELECT $__timeEpoch(time), measurement, valueOne, valueTwo FROM metric_values ORDER BY 1" ,
2018-07-28 00:13:19 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-07-28 00:13:19 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-07-28 00:13:19 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 4 )
So ( queryResult . Series [ 0 ] . Name , ShouldEqual , "Metric A valueOne" )
So ( queryResult . Series [ 1 ] . Name , ShouldEqual , "Metric A valueTwo" )
So ( queryResult . Series [ 2 ] . Name , ShouldEqual , "Metric B valueOne" )
So ( queryResult . Series [ 3 ] . Name , ShouldEqual , "Metric B valueTwo" )
} )
2018-10-03 15:53:51 +08:00
Convey ( "When doing a query with timeFrom,timeTo,unixEpochFrom,unixEpochTo macros" , func ( ) {
2019-09-11 03:50:04 +08:00
sqleng . Interpolate = origInterpolate
2021-03-08 14:02:49 +08:00
timeRange := plugins . DataTimeRange { From : "5m" , To : "now" , Now : fromStart }
query := plugins . DataQuery {
TimeRange : & timeRange ,
Queries : [ ] plugins . DataSubQuery {
2018-10-03 15:53:51 +08:00
{
DataSource : & models . DataSource { JsonData : simplejson . New ( ) } ,
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : ` SELECT time FROM metric_values WHERE time > $__timeFrom() OR time < $__timeFrom() OR 1 < $__unixEpochFrom() OR $__unixEpochTo() > 1 ORDER BY 1 ` ,
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-10-03 15:53:51 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-10-03 15:53:51 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
2020-05-30 02:06:33 +08:00
So ( queryResult . Meta . Get ( sqleng . MetaKeyExecutedQueryString ) . MustString ( ) , ShouldEqual , "SELECT time FROM metric_values WHERE time > '2018-03-15T12:55:00Z' OR time < '2018-03-15T12:55:00Z' OR 1 < 1521118500 OR 1521118800 > 1 ORDER BY 1" )
2018-10-03 15:53:51 +08:00
} )
2018-03-20 02:56:34 +08:00
Convey ( "Given a stored procedure that takes @from and @to in epoch time" , func ( ) {
sql := `
2018-03-20 21:38:56 +08:00
IF object_id ( ' sp_test_epoch ' ) IS NOT NULL
DROP PROCEDURE sp_test_epoch
`
2018-03-20 02:56:34 +08:00
_ , err := sess . Exec ( sql )
So ( err , ShouldBeNil )
sql = `
2018-03-20 21:38:56 +08:00
CREATE PROCEDURE sp_test_epoch (
2018-03-22 22:23:12 +08:00
@ from int ,
@ to int ,
@ interval nvarchar ( 50 ) = ' 5 m ' ,
@ metric nvarchar ( 200 ) = ' ALL '
2018-03-20 21:38:56 +08:00
) AS
BEGIN
2018-03-22 22:23:12 +08:00
DECLARE @ dInterval int
SELECT @ dInterval = 300
IF @ interval = ' 10 m '
SELECT @ dInterval = 600
2018-03-20 21:38:56 +08:00
SELECT
2018-03-22 22:23:12 +08:00
CAST ( ROUND ( DATEDIFF ( second , ' 1970 - 01 - 01 ' , time ) / CAST ( @ dInterval as float ) , 0 ) as bigint ) * @ dInterval as time ,
2018-07-30 19:50:52 +08:00
measurement as metric ,
avg ( valueOne ) as valueOne ,
avg ( valueTwo ) as valueTwo
2018-03-20 21:38:56 +08:00
FROM
metric_values
WHERE
2018-03-22 22:23:12 +08:00
time BETWEEN DATEADD ( s , @ from , ' 1970 - 01 - 01 ' ) AND DATEADD ( s , @ to , ' 1970 - 01 - 01 ' ) AND
( @ metric = ' ALL ' OR measurement = @ metric )
2018-03-20 21:38:56 +08:00
GROUP BY
2018-03-22 22:23:12 +08:00
CAST ( ROUND ( DATEDIFF ( second , ' 1970 - 01 - 01 ' , time ) / CAST ( @ dInterval as float ) , 0 ) as bigint ) * @ dInterval ,
2018-03-20 21:38:56 +08:00
measurement
ORDER BY 1
END
`
2018-03-20 02:56:34 +08:00
_ , err = sess . Exec ( sql )
So ( err , ShouldBeNil )
Convey ( "When doing a metric query using stored procedure should return correct result" , func ( ) {
2019-09-11 03:50:04 +08:00
sqleng . Interpolate = origInterpolate
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-20 02:56:34 +08:00
{
2018-10-03 17:26:52 +08:00
DataSource : & models . DataSource { JsonData : simplejson . New ( ) } ,
2018-03-20 02:56:34 +08:00
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : ` DECLARE
2018-03-20 21:38:56 +08:00
@ from int = $ __unixEpochFrom ( ) ,
@ to int = $ __unixEpochTo ( )
2018-03-20 02:56:34 +08:00
2018-03-20 21:38:56 +08:00
EXEC dbo . sp_test_epoch @ from , @ to ` ,
2018-03-20 02:56:34 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-20 02:56:34 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-03-20 02:56:34 +08:00
From : "1521117000000" ,
To : "1521122100000" ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-20 02:56:34 +08:00
queryResult := resp . Results [ "A" ]
So ( err , ShouldBeNil )
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 4 )
2018-07-30 19:50:52 +08:00
So ( queryResult . Series [ 0 ] . Name , ShouldEqual , "Metric A valueOne" )
So ( queryResult . Series [ 1 ] . Name , ShouldEqual , "Metric A valueTwo" )
So ( queryResult . Series [ 2 ] . Name , ShouldEqual , "Metric B valueOne" )
So ( queryResult . Series [ 3 ] . Name , ShouldEqual , "Metric B valueTwo" )
2018-03-20 02:56:34 +08:00
} )
} )
Convey ( "Given a stored procedure that takes @from and @to in datetime" , func ( ) {
sql := `
2018-03-20 21:38:56 +08:00
IF object_id ( ' sp_test_datetime ' ) IS NOT NULL
DROP PROCEDURE sp_test_datetime
`
2018-03-20 02:56:34 +08:00
_ , err := sess . Exec ( sql )
So ( err , ShouldBeNil )
sql = `
2018-03-20 21:38:56 +08:00
CREATE PROCEDURE sp_test_datetime (
2018-03-22 22:23:12 +08:00
@ from datetime ,
@ to datetime ,
@ interval nvarchar ( 50 ) = ' 5 m ' ,
@ metric nvarchar ( 200 ) = ' ALL '
2018-03-20 21:38:56 +08:00
) AS
BEGIN
2018-03-22 22:23:12 +08:00
DECLARE @ dInterval int
SELECT @ dInterval = 300
IF @ interval = ' 10 m '
SELECT @ dInterval = 600
2018-03-20 21:38:56 +08:00
SELECT
2018-03-22 22:23:12 +08:00
CAST ( ROUND ( DATEDIFF ( second , ' 1970 - 01 - 01 ' , time ) / CAST ( @ dInterval as float ) , 0 ) as bigint ) * @ dInterval as time ,
2018-07-30 19:50:52 +08:00
measurement as metric ,
avg ( valueOne ) as valueOne ,
avg ( valueTwo ) as valueTwo
2018-03-20 21:38:56 +08:00
FROM
metric_values
WHERE
2018-03-22 22:23:12 +08:00
time BETWEEN @ from AND @ to AND
( @ metric = ' ALL ' OR measurement = @ metric )
2018-03-20 21:38:56 +08:00
GROUP BY
2018-03-22 22:23:12 +08:00
CAST ( ROUND ( DATEDIFF ( second , ' 1970 - 01 - 01 ' , time ) / CAST ( @ dInterval as float ) , 0 ) as bigint ) * @ dInterval ,
2018-03-20 21:38:56 +08:00
measurement
ORDER BY 1
END
`
2018-03-20 02:56:34 +08:00
_ , err = sess . Exec ( sql )
So ( err , ShouldBeNil )
Convey ( "When doing a metric query using stored procedure should return correct result" , func ( ) {
2019-09-11 03:50:04 +08:00
sqleng . Interpolate = origInterpolate
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-20 02:56:34 +08:00
{
2018-10-03 17:26:52 +08:00
DataSource : & models . DataSource { JsonData : simplejson . New ( ) } ,
2018-03-20 02:56:34 +08:00
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : ` DECLARE
2018-03-20 21:38:56 +08:00
@ from int = $ __unixEpochFrom ( ) ,
@ to int = $ __unixEpochTo ( )
2018-03-20 02:56:34 +08:00
2018-03-20 21:38:56 +08:00
EXEC dbo . sp_test_epoch @ from , @ to ` ,
2018-03-20 02:56:34 +08:00
"format" : "time_series" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-20 02:56:34 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-03-20 02:56:34 +08:00
From : "1521117000000" ,
To : "1521122100000" ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-20 02:56:34 +08:00
queryResult := resp . Results [ "A" ]
So ( err , ShouldBeNil )
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Series ) , ShouldEqual , 4 )
2018-07-30 19:50:52 +08:00
So ( queryResult . Series [ 0 ] . Name , ShouldEqual , "Metric A valueOne" )
So ( queryResult . Series [ 1 ] . Name , ShouldEqual , "Metric A valueTwo" )
So ( queryResult . Series [ 2 ] . Name , ShouldEqual , "Metric B valueOne" )
So ( queryResult . Series [ 3 ] . Name , ShouldEqual , "Metric B valueTwo" )
2018-03-20 02:56:34 +08:00
} )
} )
2018-03-16 21:42:54 +08:00
} )
Convey ( "Given a table with event data" , func ( ) {
sql := `
IF OBJECT_ID ( ' dbo . [ event ] ' , 'U' ) IS NOT NULL
DROP TABLE dbo . [ event ]
CREATE TABLE [ event ] (
2018-03-22 22:23:12 +08:00
time_sec int ,
2018-03-16 21:42:54 +08:00
description nvarchar ( 100 ) ,
tags nvarchar ( 100 ) ,
)
`
_ , err := sess . Exec ( sql )
So ( err , ShouldBeNil )
type event struct {
TimeSec int64
Description string
Tags string
}
events := [ ] * event { }
for _ , t := range genTimeRangeByInterval ( fromStart . Add ( - 20 * time . Minute ) , 60 * time . Minute , 25 * time . Minute ) {
events = append ( events , & event {
TimeSec : t . Unix ( ) ,
Description : "Someone deployed something" ,
Tags : "deploy" ,
} )
events = append ( events , & event {
TimeSec : t . Add ( 5 * time . Minute ) . Unix ( ) ,
Description : "New support ticket registered" ,
Tags : "ticket" ,
} )
}
for _ , e := range events {
sql = fmt . Sprintf ( `
INSERT [ event ] ( time_sec , description , tags )
VALUES ( % d , ' % s ' , ' % s ' )
` , e . TimeSec , e . Description , e . Tags )
_ , err = sess . Exec ( sql )
So ( err , ShouldBeNil )
}
Convey ( "When doing an annotation query of deploy events should return expected result" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-16 21:42:54 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : "SELECT time_sec as time, description as [text], tags FROM [event] WHERE $__unixEpochFilter(time_sec) AND tags='deploy' ORDER BY 1 ASC" ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "Deploys" ,
2018-03-16 21:42:54 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-03-16 21:42:54 +08:00
From : fmt . Sprintf ( "%v" , fromStart . Add ( - 20 * time . Minute ) . Unix ( ) * 1000 ) ,
To : fmt . Sprintf ( "%v" , fromStart . Add ( 40 * time . Minute ) . Unix ( ) * 1000 ) ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-16 21:42:54 +08:00
queryResult := resp . Results [ "Deploys" ]
So ( err , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 3 )
} )
Convey ( "When doing an annotation query of ticket events should return expected result" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-16 21:42:54 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : "SELECT time_sec as time, description as [text], tags FROM [event] WHERE $__unixEpochFilter(time_sec) AND tags='ticket' ORDER BY 1 ASC" ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "Tickets" ,
2018-03-16 21:42:54 +08:00
} ,
} ,
2021-03-08 14:02:49 +08:00
TimeRange : & plugins . DataTimeRange {
2018-03-16 21:42:54 +08:00
From : fmt . Sprintf ( "%v" , fromStart . Add ( - 20 * time . Minute ) . Unix ( ) * 1000 ) ,
To : fmt . Sprintf ( "%v" , fromStart . Add ( 40 * time . Minute ) . Unix ( ) * 1000 ) ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-16 21:42:54 +08:00
queryResult := resp . Results [ "Tickets" ]
So ( err , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 3 )
} )
2018-03-20 21:38:56 +08:00
Convey ( "When doing an annotation query with a time column in datetime format" , func ( ) {
2018-03-22 22:23:12 +08:00
dt := time . Date ( 2018 , 3 , 14 , 21 , 20 , 6 , 527e6 , time . UTC )
dtFormat := "2006-01-02 15:04:05.999999999"
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-20 21:38:56 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
2018-03-22 22:23:12 +08:00
"rawSql" : fmt . Sprintf ( ` SELECT
CAST ( ' % s ' AS DATETIME ) as time ,
' message ' as text ,
' tag1 , tag2 ' as tags
` , dt . Format ( dtFormat ) ) ,
2018-03-20 21:38:56 +08:00
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-20 21:38:56 +08:00
} ,
} ,
2018-03-22 22:23:12 +08:00
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-22 22:23:12 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 1 )
columns := queryResult . Tables [ 0 ] . Rows [ 0 ]
2020-09-22 22:22:19 +08:00
// Should be in milliseconds
2018-04-10 17:10:56 +08:00
So ( columns [ 0 ] . ( float64 ) , ShouldEqual , float64 ( dt . UnixNano ( ) / 1e6 ) )
2018-03-22 22:23:12 +08:00
} )
Convey ( "When doing an annotation query with a time column in epoch second format should return ms" , func ( ) {
dt := time . Date ( 2018 , 3 , 14 , 21 , 20 , 6 , 527e6 , time . UTC )
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-22 22:23:12 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : fmt . Sprintf ( ` SELECT
% d as time ,
' message ' as text ,
' tag1 , tag2 ' as tags
` , dt . Unix ( ) ) ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-22 22:23:12 +08:00
} ,
2018-03-20 21:38:56 +08:00
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-20 21:38:56 +08:00
So ( err , ShouldBeNil )
2018-03-22 22:23:12 +08:00
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 1 )
2018-03-20 21:38:56 +08:00
columns := queryResult . Tables [ 0 ] . Rows [ 0 ]
2020-09-22 22:22:19 +08:00
// Should be in milliseconds
2018-07-04 18:16:39 +08:00
So ( columns [ 0 ] . ( int64 ) , ShouldEqual , dt . Unix ( ) * 1000 )
2018-03-22 22:23:12 +08:00
} )
Convey ( "When doing an annotation query with a time column in epoch second format (int) should return ms" , func ( ) {
dt := time . Date ( 2018 , 3 , 14 , 21 , 20 , 6 , 527e6 , time . UTC )
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-22 22:23:12 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : fmt . Sprintf ( ` SELECT
cast ( % d as int ) as time ,
' message ' as text ,
' tag1 , tag2 ' as tags
` , dt . Unix ( ) ) ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-22 22:23:12 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-22 22:23:12 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 1 )
columns := queryResult . Tables [ 0 ] . Rows [ 0 ]
2020-09-22 22:22:19 +08:00
// Should be in milliseconds
2018-07-04 18:16:39 +08:00
So ( columns [ 0 ] . ( int64 ) , ShouldEqual , dt . Unix ( ) * 1000 )
2018-03-22 22:23:12 +08:00
} )
Convey ( "When doing an annotation query with a time column in epoch millisecond format should return ms" , func ( ) {
dt := time . Date ( 2018 , 3 , 14 , 21 , 20 , 6 , 527e6 , time . UTC )
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-22 22:23:12 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : fmt . Sprintf ( ` SELECT
% d as time ,
' message ' as text ,
' tag1 , tag2 ' as tags
` , dt . Unix ( ) * 1000 ) ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-22 22:23:12 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-22 22:23:12 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 1 )
columns := queryResult . Tables [ 0 ] . Rows [ 0 ]
2020-09-22 22:22:19 +08:00
// Should be in milliseconds
2018-03-22 22:23:12 +08:00
So ( columns [ 0 ] . ( float64 ) , ShouldEqual , float64 ( dt . Unix ( ) * 1000 ) )
} )
Convey ( "When doing an annotation query with a time column holding a bigint null value should return nil" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-22 22:23:12 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : ` SELECT
cast ( null as bigint ) as time ,
' message ' as text ,
' tag1 , tag2 ' as tags
` ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-22 22:23:12 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-22 22:23:12 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 1 )
columns := queryResult . Tables [ 0 ] . Rows [ 0 ]
2020-09-22 22:22:19 +08:00
// Should be in milliseconds
2018-03-22 22:23:12 +08:00
So ( columns [ 0 ] , ShouldBeNil )
} )
Convey ( "When doing an annotation query with a time column holding a datetime null value should return nil" , func ( ) {
2021-03-08 14:02:49 +08:00
query := plugins . DataQuery {
Queries : [ ] plugins . DataSubQuery {
2018-03-22 22:23:12 +08:00
{
Model : simplejson . NewFromAny ( map [ string ] interface { } {
"rawSql" : ` SELECT
cast ( null as datetime ) as time ,
' message ' as text ,
' tag1 , tag2 ' as tags
` ,
"format" : "table" ,
} ) ,
2021-03-08 14:02:49 +08:00
RefID : "A" ,
2018-03-22 22:23:12 +08:00
} ,
} ,
}
2021-03-08 14:02:49 +08:00
resp , err := endpoint . DataQuery ( context . Background ( ) , nil , query )
2018-03-22 22:23:12 +08:00
So ( err , ShouldBeNil )
queryResult := resp . Results [ "A" ]
So ( queryResult . Error , ShouldBeNil )
So ( len ( queryResult . Tables [ 0 ] . Rows ) , ShouldEqual , 1 )
columns := queryResult . Tables [ 0 ] . Rows [ 0 ]
2020-09-22 22:22:19 +08:00
// Should be in milliseconds
2018-03-22 22:23:12 +08:00
So ( columns [ 0 ] , ShouldBeNil )
2018-03-20 21:38:56 +08:00
} )
2018-03-16 21:42:54 +08:00
} )
2017-12-04 02:56:21 +08:00
} )
}
2021-03-29 19:03:01 +08:00
func TestTransformQueryError ( t * testing . T ) {
transformer := & mssqlQueryResultTransformer {
log : log . New ( "test" ) ,
}
randomErr := fmt . Errorf ( "random error" )
tests := [ ] struct {
err error
expectedErr error
} {
{ err : fmt . Errorf ( "Unable to open tcp connection with host 'localhost:5000': dial tcp: connection refused" ) , expectedErr : sqleng . ErrConnectionFailed } ,
{ err : fmt . Errorf ( "unable to open tcp connection with host 'localhost:5000': dial tcp: connection refused" ) , expectedErr : sqleng . ErrConnectionFailed } ,
{ err : randomErr , expectedErr : randomErr } ,
}
for _ , tc := range tests {
resultErr := transformer . TransformQueryError ( tc . err )
assert . ErrorIs ( t , resultErr , tc . expectedErr )
}
}
2017-12-04 02:56:21 +08:00
func InitMSSQLTestDB ( t * testing . T ) * xorm . Engine {
2020-07-10 22:09:21 +08:00
testDB := sqlutil . MSSQLTestDB ( )
x , err := xorm . NewEngine ( testDB . DriverName , strings . Replace ( testDB . ConnStr , "localhost" ,
serverIP , 1 ) )
2018-04-10 17:10:56 +08:00
if err != nil {
t . Fatalf ( "Failed to init mssql db %v" , err )
}
2018-03-22 22:23:12 +08:00
x . DatabaseTZ = time . UTC
x . TZLocation = time . UTC
2017-12-04 02:56:21 +08:00
// x.ShowSQL()
return x
}
2018-03-15 16:51:29 +08:00
func genTimeRangeByInterval ( from time . Time , duration time . Duration , interval time . Duration ) [ ] time . Time {
durationSec := int64 ( duration . Seconds ( ) )
intervalSec := int64 ( interval . Seconds ( ) )
timeRange := [ ] time . Time { }
2018-03-15 21:26:53 +08:00
for i := int64 ( 0 ) ; i < durationSec ; i += intervalSec {
2018-03-15 16:51:29 +08:00
timeRange = append ( timeRange , from )
from = from . Add ( time . Duration ( int64 ( time . Second ) * intervalSec ) )
}
return timeRange
}