2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-03-15 16:03:41 -04:00
|
|
|
|
|
|
|
package event
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
|
|
|
"errors"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ExampleTarget struct {
|
|
|
|
id TargetID
|
|
|
|
sendErr bool
|
|
|
|
closeErr bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (target ExampleTarget) ID() TargetID {
|
|
|
|
return target.id
|
|
|
|
}
|
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
// Save - Sends event directly without persisting.
|
|
|
|
func (target ExampleTarget) Save(eventData Event) error {
|
|
|
|
return target.send(eventData)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (target ExampleTarget) send(eventData Event) error {
|
2018-03-15 16:03:41 -04:00
|
|
|
b := make([]byte, 1)
|
|
|
|
if _, err := rand.Read(b); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(time.Duration(b[0]) * time.Millisecond)
|
|
|
|
|
|
|
|
if target.sendErr {
|
|
|
|
return errors.New("send error")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-10 08:46:01 -04:00
|
|
|
// Send - interface compatible method does no-op.
|
|
|
|
func (target ExampleTarget) Send(eventKey string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-03-15 16:03:41 -04:00
|
|
|
func (target ExampleTarget) Close() error {
|
|
|
|
if target.closeErr {
|
|
|
|
return errors.New("close error")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-11 17:27:03 -05:00
|
|
|
func (target ExampleTarget) IsActive() (bool, error) {
|
|
|
|
return false, errors.New("not connected to target server/service")
|
|
|
|
}
|
|
|
|
|
2020-04-21 12:38:32 -04:00
|
|
|
// HasQueueStore - No-Op. Added for interface compatibility
|
|
|
|
func (target ExampleTarget) HasQueueStore() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-03-15 16:03:41 -04:00
|
|
|
func TestTargetListAdd(t *testing.T) {
|
|
|
|
targetListCase1 := NewTargetList()
|
|
|
|
|
|
|
|
targetListCase2 := NewTargetList()
|
|
|
|
if err := targetListCase2.Add(&ExampleTarget{TargetID{"2", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
targetListCase3 := NewTargetList()
|
|
|
|
if err := targetListCase3.Add(&ExampleTarget{TargetID{"3", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
targetList *TargetList
|
|
|
|
target Target
|
|
|
|
expectedResult []TargetID
|
|
|
|
expectErr bool
|
|
|
|
}{
|
|
|
|
{targetListCase1, &ExampleTarget{TargetID{"1", "webhook"}, false, false}, []TargetID{{"1", "webhook"}}, false},
|
|
|
|
{targetListCase2, &ExampleTarget{TargetID{"1", "webhook"}, false, false}, []TargetID{{"2", "testcase"}, {"1", "webhook"}}, false},
|
|
|
|
{targetListCase3, &ExampleTarget{TargetID{"3", "testcase"}, false, false}, nil, true},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, testCase := range testCases {
|
|
|
|
err := testCase.targetList.Add(testCase.target)
|
|
|
|
expectErr := (err != nil)
|
|
|
|
|
|
|
|
if expectErr != testCase.expectErr {
|
|
|
|
t.Fatalf("test %v: error: expected: %v, got: %v", i+1, testCase.expectErr, expectErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !testCase.expectErr {
|
|
|
|
result := testCase.targetList.List()
|
|
|
|
|
|
|
|
if len(result) != len(testCase.expectedResult) {
|
|
|
|
t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, targetID1 := range result {
|
|
|
|
var found bool
|
|
|
|
for _, targetID2 := range testCase.expectedResult {
|
|
|
|
if reflect.DeepEqual(targetID1, targetID2) {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTargetListExists(t *testing.T) {
|
|
|
|
targetListCase1 := NewTargetList()
|
|
|
|
|
|
|
|
targetListCase2 := NewTargetList()
|
|
|
|
if err := targetListCase2.Add(&ExampleTarget{TargetID{"2", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
targetListCase3 := NewTargetList()
|
|
|
|
if err := targetListCase3.Add(&ExampleTarget{TargetID{"3", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
targetList *TargetList
|
|
|
|
targetID TargetID
|
|
|
|
expectedResult bool
|
|
|
|
}{
|
|
|
|
{targetListCase1, TargetID{"1", "webhook"}, false},
|
|
|
|
{targetListCase2, TargetID{"1", "webhook"}, false},
|
|
|
|
{targetListCase3, TargetID{"3", "testcase"}, true},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, testCase := range testCases {
|
|
|
|
result := testCase.targetList.Exists(testCase.targetID)
|
|
|
|
|
|
|
|
if result != testCase.expectedResult {
|
|
|
|
t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTargetListList(t *testing.T) {
|
|
|
|
targetListCase1 := NewTargetList()
|
|
|
|
|
|
|
|
targetListCase2 := NewTargetList()
|
|
|
|
if err := targetListCase2.Add(&ExampleTarget{TargetID{"2", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
targetListCase3 := NewTargetList()
|
|
|
|
if err := targetListCase3.Add(&ExampleTarget{TargetID{"3", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if err := targetListCase3.Add(&ExampleTarget{TargetID{"1", "webhook"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
targetList *TargetList
|
|
|
|
expectedResult []TargetID
|
|
|
|
}{
|
|
|
|
{targetListCase1, []TargetID{}},
|
|
|
|
{targetListCase2, []TargetID{{"2", "testcase"}}},
|
|
|
|
{targetListCase3, []TargetID{{"3", "testcase"}, {"1", "webhook"}}},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, testCase := range testCases {
|
|
|
|
result := testCase.targetList.List()
|
|
|
|
|
|
|
|
if len(result) != len(testCase.expectedResult) {
|
|
|
|
t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, targetID1 := range result {
|
|
|
|
var found bool
|
|
|
|
for _, targetID2 := range testCase.expectedResult {
|
|
|
|
if reflect.DeepEqual(targetID1, targetID2) {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTargetListSend(t *testing.T) {
|
|
|
|
targetListCase1 := NewTargetList()
|
|
|
|
|
|
|
|
targetListCase2 := NewTargetList()
|
|
|
|
if err := targetListCase2.Add(&ExampleTarget{TargetID{"2", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
targetListCase3 := NewTargetList()
|
|
|
|
if err := targetListCase3.Add(&ExampleTarget{TargetID{"3", "testcase"}, false, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
targetListCase4 := NewTargetList()
|
|
|
|
if err := targetListCase4.Add(&ExampleTarget{TargetID{"4", "testcase"}, true, false}); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
targetList *TargetList
|
|
|
|
targetID TargetID
|
|
|
|
expectErr bool
|
|
|
|
}{
|
|
|
|
{targetListCase1, TargetID{"1", "webhook"}, false},
|
|
|
|
{targetListCase2, TargetID{"1", "non-existent"}, false},
|
|
|
|
{targetListCase3, TargetID{"3", "testcase"}, false},
|
|
|
|
{targetListCase4, TargetID{"4", "testcase"}, true},
|
|
|
|
}
|
|
|
|
|
2020-04-27 09:25:05 -04:00
|
|
|
resCh := make(chan TargetIDResult)
|
2018-03-15 16:03:41 -04:00
|
|
|
for i, testCase := range testCases {
|
2020-04-27 09:25:05 -04:00
|
|
|
testCase.targetList.Send(Event{}, map[TargetID]struct{}{
|
|
|
|
testCase.targetID: {},
|
|
|
|
}, resCh)
|
|
|
|
res := <-resCh
|
|
|
|
expectErr := (res.Err != nil)
|
2018-03-15 16:03:41 -04:00
|
|
|
|
|
|
|
if expectErr != testCase.expectErr {
|
|
|
|
t.Fatalf("test %v: error: expected: %v, got: %v", i+1, testCase.expectErr, expectErr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewTargetList(t *testing.T) {
|
|
|
|
if result := NewTargetList(); result == nil {
|
|
|
|
t.Fatalf("test: result: expected: <non-nil>, got: <nil>")
|
|
|
|
}
|
|
|
|
}
|