123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- // Copyright 2022-2023 EMQ Technologies Co., Ltd.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package main
- import (
- "database/sql"
- "database/sql/driver"
- "fmt"
- "os"
- "reflect"
- "testing"
- "github.com/stretchr/testify/assert"
- "github.com/lf-edge/ekuiper/extensions/sqldatabase"
- econf "github.com/lf-edge/ekuiper/internal/conf"
- "github.com/lf-edge/ekuiper/internal/topo/context"
- )
- func TestSingle(t *testing.T) {
- db, err := sql.Open("sqlite", "file:test.db")
- if err != nil {
- t.Error(err)
- return
- }
- contextLogger := econf.Log.WithField("rule", "test")
- ctx := context.WithValue(context.Background(), context.LoggerKey, contextLogger)
- s := &sqlSink{}
- defer func() {
- db.Close()
- s.Close(ctx)
- err := os.Remove("test.db")
- if err != nil {
- fmt.Println(err)
- }
- }()
- _, err = db.Exec("CREATE TABLE IF NOT EXISTS single (id BIGINT PRIMARY KEY, name TEXT NOT NULL, address varchar(20), mobile varchar(20))")
- if err != nil {
- panic(err)
- }
- err = s.Configure(map[string]interface{}{
- "url": "sqlite://test.db",
- "table": "single",
- })
- if err != nil {
- t.Error(err)
- return
- }
- err = s.Open(ctx)
- if err != nil {
- t.Error(err)
- return
- }
- data := []map[string]interface{}{
- {"id": 1, "name": "John", "address": "343", "mobile": "334433"},
- {"id": 2, "name": "Susan", "address": "34", "mobile": "334433"},
- {"id": 3, "name": "Susan", "address": "34", "mobile": "334433"},
- }
- for _, d := range data {
- err = s.Collect(ctx, d)
- if err != nil {
- t.Error(err)
- return
- }
- }
- s.Close(ctx)
- rows, err := db.Query("SELECT * FROM single")
- if err != nil {
- t.Error(err)
- return
- }
- act, _ := rowsToMap(rows)
- exp := []map[string]interface{}{
- {"id": int64(1), "name": "John", "address": "343", "mobile": "334433"},
- {"id": int64(2), "name": "Susan", "address": "34", "mobile": "334433"},
- {"id": int64(3), "name": "Susan", "address": "34", "mobile": "334433"},
- }
- if !reflect.DeepEqual(act, exp) {
- t.Errorf("Expect %v but got %v", exp, act)
- }
- }
- func TestBatch(t *testing.T) {
- db, err := sql.Open("sqlite", "file:test.db")
- if err != nil {
- t.Error(err)
- return
- }
- contextLogger := econf.Log.WithField("rule", "test")
- ctx := context.WithValue(context.Background(), context.LoggerKey, contextLogger)
- s := &sqlSink{}
- defer func() {
- db.Close()
- s.Close(ctx)
- err := os.Remove("test.db")
- if err != nil {
- fmt.Println(err)
- }
- }()
- _, err = db.Exec("CREATE TABLE IF NOT EXISTS batch (id BIGINT PRIMARY KEY, name TEXT NOT NULL)")
- if err != nil {
- panic(err)
- }
- err = s.Configure(map[string]interface{}{
- "url": "sqlite://test.db",
- "table": "batch",
- "fields": []string{"id", "name"},
- })
- if err != nil {
- t.Error(err)
- return
- }
- err = s.Open(ctx)
- if err != nil {
- t.Error(err)
- return
- }
- data := []map[string]interface{}{
- {"id": 1, "name": "John", "address": "343", "mobile": "334433"},
- {"id": 2, "name": "Susan", "address": "34", "mobile": "334433"},
- {"id": 3, "name": "Susan", "address": "34", "mobile": "334433"},
- }
- err = s.Collect(ctx, data)
- if err != nil {
- t.Error(err)
- return
- }
- s.Close(ctx)
- rows, err := db.Query("SELECT * FROM batch")
- if err != nil {
- t.Error(err)
- return
- }
- act, _ := rowsToMap(rows)
- exp := []map[string]interface{}{
- {"id": int64(1), "name": "John"},
- {"id": int64(2), "name": "Susan"},
- {"id": int64(3), "name": "Susan"},
- }
- if !reflect.DeepEqual(act, exp) {
- t.Errorf("Expect %v but got %v", exp, act)
- }
- }
- func TestUpdate(t *testing.T) {
- db, err := sql.Open("sqlite", "file:test.db")
- if err != nil {
- t.Error(err)
- return
- }
- contextLogger := econf.Log.WithField("rule", "test")
- ctx := context.WithValue(context.Background(), context.LoggerKey, contextLogger)
- s := &sqlSink{}
- defer func() {
- db.Close()
- s.Close(ctx)
- err := os.Remove("test.db")
- if err != nil {
- fmt.Println(err)
- }
- }()
- _, err = db.Exec("CREATE TABLE IF NOT EXISTS updateTable (id BIGINT PRIMARY KEY, name TEXT NOT NULL)")
- if err != nil {
- panic(err)
- }
- err = s.Configure(map[string]interface{}{
- "url": "sqlite://test.db",
- "table": "updateTable",
- "rowkindField": "action",
- "keyField": "id",
- "fields": []string{"id", "name"},
- })
- if err != nil {
- t.Error(err)
- return
- }
- err = s.Open(ctx)
- if err != nil {
- t.Error(err)
- return
- }
- test := []struct {
- d []map[string]interface{}
- b bool
- r []map[string]interface{}
- }{
- {
- d: []map[string]interface{}{
- {"id": 1, "name": "John", "address": "343", "mobile": "334433"},
- {"action": "insert", "id": 2, "name": "Susan", "address": "34", "mobile": "334433"},
- {"action": "update", "id": 2, "name": "Diana"},
- },
- b: true,
- r: []map[string]interface{}{
- {"id": int64(1), "name": "John"},
- {"id": int64(2), "name": "Diana"},
- },
- }, {
- d: []map[string]interface{}{
- {"id": 4, "name": "Charles", "address": "343", "mobile": "334433"},
- {"action": "delete", "id": 2},
- {"action": "update", "id": 1, "name": "Lizz"},
- },
- b: false,
- r: []map[string]interface{}{
- {"id": int64(1), "name": "Lizz"},
- {"id": int64(4), "name": "Charles"},
- },
- }, {
- d: []map[string]interface{}{
- {"action": "upsert", "id": 4, "name": "Charles", "address": "343", "mobile": "334433"},
- {"action": "update", "id": 3, "name": "Lizz"},
- {"action": "update", "id": 1, "name": "Philips"},
- },
- b: true,
- r: []map[string]interface{}{
- {"id": int64(1), "name": "Philips"},
- {"id": int64(4), "name": "Charles"},
- },
- },
- }
- for i, tt := range test {
- if tt.b {
- err = s.Collect(ctx, tt.d)
- if err != nil {
- fmt.Println(err)
- }
- } else {
- for _, d := range tt.d {
- err = s.Collect(ctx, d)
- if err != nil {
- fmt.Println(err)
- }
- }
- }
- rows, err := db.Query("SELECT * FROM updateTable")
- if err != nil {
- t.Error(err)
- return
- }
- act, _ := rowsToMap(rows)
- if !reflect.DeepEqual(act, tt.r) {
- t.Errorf("Case %d Expect %v but got %v", i, tt.r, act)
- }
- }
- }
- func TestSaveSql(t *testing.T) {
- contextLogger := econf.Log.WithField("rule", "test")
- ctx := context.WithValue(context.Background(), context.LoggerKey, contextLogger)
- s := &sqlSink{}
- mdb := &sqldatabase.MockDB{}
- s.db = mdb
- s.conf = &sqlConfig{
- Fields: []string{ // set fields to make sure order is always testable
- "id", "name", "address", "mobile",
- },
- KeyField: "id",
- RowkindField: "action",
- }
- test := []struct {
- name string
- d map[string]interface{}
- s string
- }{
- {
- name: "insert",
- d: map[string]interface{}{"id": 1, "name": "John", "address": "343", "mobile": "334433"},
- s: "INSERT INTO test (id,name,address,mobile) values (1,'John','343','334433');",
- },
- {
- name: "update",
- d: map[string]interface{}{"action": "update", "id": 1, "name": "John", "address": "343", "mobile": "334433"},
- s: "UPDATE test SET id=1,name='John',address='343',mobile='334433' WHERE id = 1;",
- },
- }
- for _, tt := range test {
- t.Run(tt.name, func(t *testing.T) {
- err := s.save(ctx, "test", tt.d)
- assert.NoError(t, err)
- assert.Equal(t, tt.s, mdb.LastSql())
- })
- }
- }
- func rowsToMap(rows *sql.Rows) ([]map[string]interface{}, error) {
- cols, _ := rows.Columns()
- types, err := rows.ColumnTypes()
- if err != nil {
- return nil, err
- }
- var result []map[string]interface{}
- for rows.Next() {
- data := make(map[string]interface{})
- columns := make([]interface{}, len(cols))
- prepareValues(columns, types, cols)
- err := rows.Scan(columns...)
- if err != nil {
- return nil, err
- }
- scanIntoMap(data, columns, cols)
- result = append(result, data)
- }
- return result, nil
- }
- func scanIntoMap(mapValue map[string]interface{}, values []interface{}, columns []string) {
- for idx, column := range columns {
- if reflectValue := reflect.Indirect(reflect.Indirect(reflect.ValueOf(values[idx]))); reflectValue.IsValid() {
- mapValue[column] = reflectValue.Interface()
- if valuer, ok := mapValue[column].(driver.Valuer); ok {
- mapValue[column], _ = valuer.Value()
- } else if b, ok := mapValue[column].(sql.RawBytes); ok {
- mapValue[column] = string(b)
- }
- } else {
- mapValue[column] = nil
- }
- }
- }
- func prepareValues(values []interface{}, columnTypes []*sql.ColumnType, columns []string) {
- if len(columnTypes) > 0 {
- for idx, columnType := range columnTypes {
- if columnType.ScanType() != nil {
- values[idx] = reflect.New(reflect.PtrTo(columnType.ScanType())).Interface()
- } else {
- values[idx] = new(interface{})
- }
- }
- } else {
- for idx := range columns {
- values[idx] = new(interface{})
- }
- }
- }
|