123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924 |
- package plans
- import (
- "encoding/json"
- "errors"
- "fmt"
- "github.com/emqx/kuiper/common"
- "github.com/emqx/kuiper/xsql"
- "github.com/emqx/kuiper/xstream/contexts"
- "log"
- "reflect"
- "testing"
- "time"
- )
- func TestPreprocessor_Apply(t *testing.T) {
- var tests = []struct {
- stmt *xsql.StreamStmt
- data []byte
- result interface{}
- }{
- //Basic type
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- },
- data: []byte(`{"a": 6}`),
- result: errors.New("error in preprocessor: invalid data map[a:%!s(float64=6)], field abc not found"),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- },
- data: []byte(`{"abc": null}`),
- result: errors.New("error in preprocessor: invalid data type for abc, expect bigint but found <nil>(<nil>)"),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"a": 6}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": float64(6),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- },
- data: []byte(`{"abc": 6}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": 6,
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"abc": 6}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(6),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- },
- data: []byte(`{"abc": 34, "def" : "hello", "ghi": 50}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(34),
- "def": "hello",
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"abc": 34, "def" : "hello", "ghi": 50}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(34),
- "def": "hello",
- "ghi": float64(50),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- },
- data: []byte(`{"abc": "34", "def" : "hello", "ghi": "50"}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(34),
- "def": "hello",
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.BOOLEAN}},
- },
- },
- data: []byte(`{"abc": 77, "def" : "hello"}`),
- result: errors.New("error in preprocessor: invalid data type for def, expect boolean but found string(hello)"),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.BOOLEAN}},
- },
- },
- data: []byte(`{"a": {"b" : "hello"}}`),
- result: errors.New("error in preprocessor: invalid data map[a:map[b:hello]], field abc not found"),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"a": {"b" : "hello"}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- },
- },
- },
- },
- //Rec type
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- }},
- },
- },
- data: []byte(`{"a": {"b" : "hello"}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- },
- }},
- },
- },
- data: []byte(`{"a": "{\"b\" : \"32\"}"}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": float64(32),
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"a": {"b" : "32"}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "32",
- },
- },
- },
- },
- //Array of complex type
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.STRUCT,
- FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- },
- }},
- },
- },
- data: []byte(`{"a": [{"b" : "hello1"}, {"b" : "hello2"}]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []map[string]interface{}{
- {"b": "hello1"},
- {"b": "hello2"},
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.STRUCT,
- FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- },
- }},
- },
- },
- data: []byte(`{"a": []}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": make([]map[string]interface{}, 0),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.STRUCT,
- FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- },
- }},
- },
- },
- data: []byte(`{"a": null}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []map[string]interface{}(nil),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.STRUCT,
- FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- },
- }},
- },
- },
- data: []byte(`{"a": [null, {"b" : "hello2"}]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []map[string]interface{}{
- nil,
- {"b": "hello2"},
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.ARRAY,
- FieldType: &xsql.ArrayType{
- Type: xsql.BIGINT,
- },
- }},
- },
- },
- data: []byte(`{"a": [[50, 60, 70],[66], [77]]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": [][]int{
- {50, 60, 70},
- {66},
- {77},
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.ARRAY,
- FieldType: &xsql.ArrayType{
- Type: xsql.BIGINT,
- },
- }},
- },
- },
- data: []byte(`{"a": [null, [66], [77]]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": [][]int{
- []int(nil),
- {66},
- {77},
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"a": [{"b" : "hello1"}, {"b" : "hello2"}]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []interface{}{
- map[string]interface{}{"b": "hello1"},
- map[string]interface{}{"b": "hello2"},
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.FLOAT,
- }},
- },
- },
- data: []byte(`{"a": "[\"55\", \"77\"]"}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []float64{
- 55,
- 77,
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"a": [55, 77]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []interface{}{
- float64(55),
- float64(77),
- },
- },
- },
- },
- //Rec of complex type
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- {Name: "c", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "d", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- }},
- },
- }},
- },
- },
- data: []byte(`{"a": {"b" : "hello", "c": {"d": 35.2}}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- "c": map[string]interface{}{
- "d": int(35),
- },
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- {Name: "c", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "d", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- }},
- },
- }},
- },
- },
- data: []byte(`{"a": null}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}(nil),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- {Name: "c", FieldType: &xsql.ArrayType{
- Type: xsql.FLOAT,
- }},
- },
- }},
- },
- },
- data: []byte(`{"a": {"b" : "hello", "c": [35.2, 38.2]}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- "c": []float64{
- 35.2, 38.2,
- },
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- {Name: "c", FieldType: &xsql.ArrayType{
- Type: xsql.FLOAT,
- }},
- },
- }},
- },
- },
- data: []byte(`{"a": {"b" : "hello", "c": null}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- "c": []float64(nil),
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- {Name: "c", FieldType: &xsql.ArrayType{
- Type: xsql.FLOAT,
- }},
- },
- }},
- },
- },
- data: []byte(`{"a": {"b" : "hello", "c": [null, 35.4]}}`),
- result: errors.New("error in preprocessor: fail to parse field c: invalid data type for [0], expect float but found <nil>(<nil>)"),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"a": {"b" : "hello", "c": {"d": 35.2}}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- "c": map[string]interface{}{
- "d": 35.2,
- },
- },
- },
- },
- },
- }
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- defer common.CloseLogger()
- contextLogger := common.Log.WithField("rule", "TestPreprocessor_Apply")
- ctx := contexts.WithValue(contexts.Background(), contexts.LoggerKey, contextLogger)
- for i, tt := range tests {
- pp := &Preprocessor{streamStmt: tt.stmt}
- dm := make(map[string]interface{})
- if e := json.Unmarshal(tt.data, &dm); e != nil {
- log.Fatal(e)
- return
- } else {
- tuple := &xsql.Tuple{Message: dm}
- result := pp.Apply(ctx, tuple)
- if !reflect.DeepEqual(tt.result, result) {
- t.Errorf("%d. %q\n\nresult mismatch:\n\nexp=%#v\n\ngot=%#v\n\n", i, tuple, tt.result, result)
- }
- }
- }
- }
- func TestPreprocessorTime_Apply(t *testing.T) {
- var tests = []struct {
- stmt *xsql.StreamStmt
- data []byte
- result interface{}
- }{
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- },
- },
- data: []byte(`{"abc": "2019-09-19T00:55:15.000Z", "def" : 1568854573431}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": common.TimeFromUnixMilli(1568854515000),
- "def": common.TimeFromUnixMilli(1568854573431),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- },
- data: []byte(`{"abc": "2019-09-19T00:55:15.000Z", "def" : 1568854573431}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": "2019-09-19T00:55:15.000Z",
- "def": float64(1568854573431),
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- },
- },
- data: []byte(`{"abc": "2019-09-19T00:55:1dd5Z", "def" : 111568854573431}`),
- result: errors.New("error in preprocessor: invalid data type for abc, cannot convert to datetime: parsing time \"2019-09-19T00:55:1dd5Z\" as \"2006-01-02T15:04:05.000Z07:00\": cannot parse \"1dd5Z\" as \"05\""),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "FORMAT": "AVRO",
- "KEY": "USERID",
- "CONF_KEY": "srv1",
- "TYPE": "MQTT",
- "TIMESTAMP": "USERID",
- "TIMESTAMP_FORMAT": "yyyy-MM-dd 'at' HH:mm:ss'Z'X",
- },
- },
- data: []byte(`{"abc": "2019-09-19 at 18:55:15Z+07", "def" : 1568854573431}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": common.TimeFromUnixMilli(1568894115000),
- "def": common.TimeFromUnixMilli(1568854573431),
- }},
- },
- //Array type
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.ArrayType{
- Type: xsql.DATETIME,
- }},
- },
- },
- data: []byte(`{"a": [1568854515123, 1568854573431]}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": []time.Time{
- common.TimeFromUnixMilli(1568854515123),
- common.TimeFromUnixMilli(1568854573431),
- },
- },
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- {Name: "c", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- },
- }},
- },
- },
- data: []byte(`{"a": {"b" : "hello", "c": 1568854515000}}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "a": map[string]interface{}{
- "b": "hello",
- "c": common.TimeFromUnixMilli(1568854515000),
- },
- },
- },
- },
- }
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- defer common.CloseLogger()
- contextLogger := common.Log.WithField("rule", "TestPreprocessorTime_Apply")
- ctx := contexts.WithValue(contexts.Background(), contexts.LoggerKey, contextLogger)
- for i, tt := range tests {
- pp := &Preprocessor{streamStmt: tt.stmt}
- dm := make(map[string]interface{})
- if e := json.Unmarshal(tt.data, &dm); e != nil {
- log.Fatal(e)
- return
- } else {
- tuple := &xsql.Tuple{Message: dm}
- result := pp.Apply(ctx, tuple)
- //workaround make sure all the timezone are the same for time vars or the DeepEqual will be false.
- if rt, ok := result.(*xsql.Tuple); ok {
- if rtt, ok := rt.Message["abc"].(time.Time); ok {
- rt.Message["abc"] = rtt.UTC()
- }
- }
- if !reflect.DeepEqual(tt.result, result) {
- t.Errorf("%d. %q\n\nresult mismatch:\n\nexp=%#v\n\ngot=%#v\n\n", i, tuple, tt.result, result)
- }
- }
- }
- }
- func TestPreprocessorEventtime_Apply(t *testing.T) {
- var tests = []struct {
- stmt *xsql.StreamStmt
- data []byte
- result interface{}
- }{
- //Basic type
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "FORMAT": "AVRO",
- "KEY": "USERID",
- "CONF_KEY": "srv1",
- "TYPE": "MQTT",
- "TIMESTAMP": "abc",
- "TIMESTAMP_FORMAT": "yyyy-MM-dd''T''HH:mm:ssX'",
- },
- },
- data: []byte(`{"abc": 1568854515000}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": int(1568854515000),
- }, Timestamp: 1568854515000,
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: nil,
- Options: map[string]string{
- "DATASOURCE": "users",
- "FORMAT": "AVRO",
- "KEY": "USERID",
- "CONF_KEY": "srv1",
- "TYPE": "MQTT",
- "TIMESTAMP": "abc",
- "TIMESTAMP_FORMAT": "yyyy-MM-dd''T''HH:mm:ssX'",
- },
- },
- data: []byte(`{"abc": 1568854515000}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(1568854515000),
- }, Timestamp: 1568854515000,
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BOOLEAN}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "TIMESTAMP": "abc",
- },
- },
- data: []byte(`{"abc": true}`),
- result: errors.New("cannot convert timestamp field abc to timestamp with error unsupported type to convert to timestamp true"),
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "TIMESTAMP": "def",
- },
- },
- data: []byte(`{"abc": 34, "def" : "2019-09-23T02:47:29.754Z", "ghi": 50}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(34),
- "def": "2019-09-23T02:47:29.754Z",
- }, Timestamp: int64(1569206849754),
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.DATETIME}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "TIMESTAMP": "abc",
- },
- },
- data: []byte(`{"abc": "2019-09-19T00:55:15.000Z", "def" : 1568854573431}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": common.TimeFromUnixMilli(1568854515000),
- "def": common.TimeFromUnixMilli(1568854573431),
- }, Timestamp: int64(1568854515000),
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "TIMESTAMP": "def",
- "TIMESTAMP_FORMAT": "yyyy-MM-dd'AT'HH:mm:ss",
- },
- },
- data: []byte(`{"abc": 34, "def" : "2019-09-23AT02:47:29", "ghi": 50}`),
- result: &xsql.Tuple{Message: xsql.Message{
- "abc": float64(34),
- "def": "2019-09-23AT02:47:29",
- }, Timestamp: int64(1569206849000),
- },
- },
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.FLOAT}},
- {Name: "def", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "TIMESTAMP": "def",
- "TIMESTAMP_FORMAT": "yyyy-MM-ddaHH:mm:ss",
- },
- },
- data: []byte(`{"abc": 34, "def" : "2019-09-23AT02:47:29", "ghi": 50}`),
- result: errors.New("cannot convert timestamp field def to timestamp with error parsing time \"2019-09-23AT02:47:29\" as \"2006-01-02PM15:04:05\": cannot parse \"02:47:29\" as \"PM\""),
- },
- }
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- defer common.CloseLogger()
- contextLogger := common.Log.WithField("rule", "TestPreprocessorEventtime_Apply")
- ctx := contexts.WithValue(contexts.Background(), contexts.LoggerKey, contextLogger)
- for i, tt := range tests {
- pp, err := NewPreprocessor(tt.stmt, nil, true)
- if err != nil {
- t.Error(err)
- }
- dm := make(map[string]interface{})
- if e := json.Unmarshal(tt.data, &dm); e != nil {
- log.Fatal(e)
- return
- } else {
- tuple := &xsql.Tuple{Message: dm}
- result := pp.Apply(ctx, tuple)
- //workaround make sure all the timezone are the same for time vars or the DeepEqual will be false.
- if rt, ok := result.(*xsql.Tuple); ok {
- if rtt, ok := rt.Message["abc"].(time.Time); ok {
- rt.Message["abc"] = rtt.UTC()
- }
- }
- if !reflect.DeepEqual(tt.result, result) {
- t.Errorf("%d. %q\n\nresult mismatch:\n\nexp=%#v\n\ngot=%#v\n\n", i, tuple, tt.result, result)
- }
- }
- }
- }
- func TestPreprocessorError(t *testing.T) {
- tests := []struct {
- stmt *xsql.StreamStmt
- data []byte
- result interface{}
- }{
- {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- },
- data: []byte(`{"abc": "dafsad"}`),
- result: errors.New("error in preprocessor: invalid data type for abc, expect bigint but found string(dafsad)"),
- }, {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "a", FieldType: &xsql.RecType{
- StreamFields: []xsql.StreamField{
- {Name: "b", FieldType: &xsql.BasicType{Type: xsql.STRINGS}},
- },
- }},
- },
- },
- data: []byte(`{"a": {"d" : "hello"}}`),
- result: errors.New("error in preprocessor: invalid data map[d:hello], field b not found"),
- }, {
- stmt: &xsql.StreamStmt{
- Name: xsql.StreamName("demo"),
- StreamFields: []xsql.StreamField{
- {Name: "abc", FieldType: &xsql.BasicType{Type: xsql.BIGINT}},
- },
- Options: map[string]string{
- "DATASOURCE": "users",
- "FORMAT": "AVRO",
- "KEY": "USERID",
- "CONF_KEY": "srv1",
- "TYPE": "MQTT",
- "TIMESTAMP": "abc",
- "TIMESTAMP_FORMAT": "yyyy-MM-dd''T''HH:mm:ssX'",
- },
- },
- data: []byte(`{"abc": "not a time"}`),
- result: errors.New("error in preprocessor: invalid data type for abc, expect bigint but found string(not a time)"),
- },
- }
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- defer common.CloseLogger()
- contextLogger := common.Log.WithField("rule", "TestPreprocessorError")
- ctx := contexts.WithValue(contexts.Background(), contexts.LoggerKey, contextLogger)
- for i, tt := range tests {
- pp := &Preprocessor{streamStmt: tt.stmt}
- dm := make(map[string]interface{})
- if e := json.Unmarshal(tt.data, &dm); e != nil {
- log.Fatal(e)
- return
- } else {
- tuple := &xsql.Tuple{Message: dm}
- result := pp.Apply(ctx, tuple)
- if !reflect.DeepEqual(tt.result, result) {
- t.Errorf("%d. %q\n\nresult mismatch:\n\nexp=%#v\n\ngot=%#v\n\n", i, tuple, tt.result, result)
- }
- }
- }
- }
|