123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- // Copyright 2021-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 node
- import (
- "fmt"
- "reflect"
- "testing"
- "time"
- "github.com/lf-edge/ekuiper/internal/xsql"
- "github.com/lf-edge/ekuiper/pkg/ast"
- )
- var fivet = []*xsql.Tuple{
- {
- Message: map[string]interface{}{
- "f1": "v1",
- },
- },
- {
- Message: map[string]interface{}{
- "f2": "v2",
- },
- },
- {
- Message: map[string]interface{}{
- "f3": "v3",
- },
- },
- {
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- {
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- }
- func TestTime(t *testing.T) {
- tests := []struct {
- interval int
- unit ast.Token
- end time.Time
- }{
- {
- interval: 10,
- unit: ast.MS,
- end: time.UnixMilli(1658218371340),
- }, {
- interval: 500,
- unit: ast.MS,
- end: time.UnixMilli(1658218371500),
- }, {
- interval: 1,
- unit: ast.SS,
- end: time.UnixMilli(1658218372000),
- }, {
- interval: 40, // 40 seconds
- unit: ast.SS,
- end: time.UnixMilli(1658218400000),
- }, {
- interval: 1,
- unit: ast.MI,
- end: time.UnixMilli(1658218380000),
- }, {
- interval: 3,
- unit: ast.MI,
- end: time.UnixMilli(1658218500000),
- }, {
- interval: 1,
- unit: ast.HH,
- end: time.UnixMilli(1658221200000),
- }, {
- interval: 2,
- unit: ast.HH,
- end: time.UnixMilli(1658224800000),
- }, {
- interval: 5, // 5 hours
- unit: ast.HH,
- end: time.UnixMilli(1658232000000),
- }, {
- interval: 1, // 1 day
- unit: ast.DD,
- end: time.UnixMilli(1658246400000),
- }, {
- interval: 7, // 1 week
- unit: ast.DD,
- end: time.UnixMilli(1658764800000),
- },
- }
- // Set the global timezone
- location, err := time.LoadLocation("Asia/Shanghai")
- if err != nil {
- fmt.Println("Error loading location:", err)
- return
- }
- time.Local = location
- fmt.Println(time.UnixMilli(1658218371337).String())
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- for i, tt := range tests {
- ae := getAlignedWindowEndTime(time.UnixMilli(1658218371337), tt.interval, tt.unit)
- if tt.end.UnixMilli() != ae.UnixMilli() {
- t.Errorf("%d for interval %d. error mismatch:\n exp=%s(%d)\n got=%s(%d)\n\n", i, tt.interval, tt.end, tt.end.UnixMilli(), ae, ae.UnixMilli())
- }
- }
- }
- func TestNewTupleList(t *testing.T) {
- _, e := NewTupleList(nil, 0)
- es1 := "Window size should not be less than zero."
- if !reflect.DeepEqual(es1, e.Error()) {
- t.Errorf("error mismatch:\n exp=%s\n got=%s\n\n", es1, e)
- }
- _, e = NewTupleList(nil, 2)
- es1 = "The tuples should not be nil or empty."
- if !reflect.DeepEqual(es1, e.Error()) {
- t.Errorf("error mismatch:\n exp=%s\n got=%s\n\n", es1, e)
- }
- }
- func TestCountWindow(t *testing.T) {
- tests := []struct {
- tuplelist TupleList
- expWinCount int
- winTupleSets []xsql.WindowTuples
- expRestTuples []*xsql.Tuple
- }{
- {
- tuplelist: TupleList{
- tuples: fivet,
- size: 5,
- },
- expWinCount: 1,
- winTupleSets: []xsql.WindowTuples{
- {
- Content: []xsql.TupleRow{
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f1": "v1",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f2": "v2",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f3": "v3",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- },
- expRestTuples: []*xsql.Tuple{
- {
- Message: map[string]interface{}{
- "f2": "v2",
- },
- },
- {
- Message: map[string]interface{}{
- "f3": "v3",
- },
- },
- {
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- {
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- {
- tuplelist: TupleList{
- tuples: fivet,
- size: 3,
- },
- expWinCount: 1,
- winTupleSets: []xsql.WindowTuples{
- {
- Content: []xsql.TupleRow{
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f3": "v3",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- },
- expRestTuples: []*xsql.Tuple{
- {
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- {
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- {
- tuplelist: TupleList{
- tuples: fivet,
- size: 2,
- },
- expWinCount: 1,
- winTupleSets: []xsql.WindowTuples{
- {
- Content: []xsql.TupleRow{
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- &xsql.Tuple{
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- },
- expRestTuples: []*xsql.Tuple{
- {
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- {
- tuplelist: TupleList{
- tuples: fivet,
- size: 6,
- },
- expWinCount: 0,
- winTupleSets: nil,
- expRestTuples: []*xsql.Tuple{
- {
- Message: map[string]interface{}{
- "f1": "v1",
- },
- },
- {
- Message: map[string]interface{}{
- "f2": "v2",
- },
- },
- {
- Message: map[string]interface{}{
- "f3": "v3",
- },
- },
- {
- Message: map[string]interface{}{
- "f4": "v4",
- },
- },
- {
- Message: map[string]interface{}{
- "f5": "v5",
- },
- },
- },
- },
- }
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- for i, tt := range tests {
- if tt.expWinCount == 0 {
- if tt.tuplelist.hasMoreCountWindow() {
- t.Errorf("%d \n Should not have more count window.", i)
- }
- } else {
- for j := 0; j < tt.expWinCount; j++ {
- if !tt.tuplelist.hasMoreCountWindow() {
- t.Errorf("%d \n Expect more element, but cannot find more element.", i)
- }
- cw := tt.tuplelist.nextCountWindow()
- if !reflect.DeepEqual(tt.winTupleSets[j].Content, cw.Content) {
- t.Errorf("%d. \nresult mismatch:\n\nexp=%#v\n\ngot=%#v", i, tt.winTupleSets[j], cw) //nolint:govet
- }
- }
- rest := tt.tuplelist.getRestTuples()
- if !reflect.DeepEqual(tt.expRestTuples, rest) {
- t.Errorf("%d. \nresult mismatch:\n\nexp=%#v\n\ngot=%#v\n\n", i, tt.expRestTuples, rest)
- }
- }
- }
- }
|