94 lines
2.3 KiB
Go
94 lines
2.3 KiB
Go
/*
|
|
Copyright 2022 The Dapr Authors
|
|
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 servicebus
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/dapr/kit/logger"
|
|
"github.com/dapr/kit/ptr"
|
|
)
|
|
|
|
func TestNewSubscription(t *testing.T) {
|
|
testcases := []struct {
|
|
name string
|
|
maxBulkSubCountParam *int
|
|
maxBulkSubCountExpected int
|
|
activeOperationsChanCapExpected int
|
|
requireSessionsParam bool
|
|
}{
|
|
{
|
|
"maxBulkSubCount passed is 0",
|
|
ptr.Of(0),
|
|
1,
|
|
1000,
|
|
false,
|
|
},
|
|
{
|
|
"maxBulkSubCount passed is negative",
|
|
ptr.Of(-100),
|
|
1,
|
|
1000,
|
|
false,
|
|
},
|
|
{
|
|
"maxBulkSubCount passed is positive",
|
|
ptr.Of(100),
|
|
100,
|
|
10,
|
|
false,
|
|
},
|
|
{
|
|
"maxBulkSubCount passed is nil",
|
|
nil,
|
|
1,
|
|
1000,
|
|
false,
|
|
},
|
|
{
|
|
"requireSessions is true",
|
|
ptr.Of(0),
|
|
1,
|
|
1000,
|
|
true,
|
|
},
|
|
}
|
|
for _, tc := range testcases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
sub := NewSubscription(
|
|
SubscriptionOptions{
|
|
MaxActiveMessages: 1000,
|
|
TimeoutInSec: 1,
|
|
MaxBulkSubCount: tc.maxBulkSubCountParam,
|
|
MaxRetriableEPS: 10,
|
|
MaxConcurrentHandlers: 100,
|
|
Entity: "test",
|
|
LockRenewalInSec: 30,
|
|
RequireSessions: tc.requireSessionsParam,
|
|
},
|
|
logger.NewLogger("test"),
|
|
)
|
|
if sub.maxBulkSubCount != tc.maxBulkSubCountExpected {
|
|
t.Errorf("Expected maxBulkSubCount to be %d but got %d", tc.maxBulkSubCountExpected, sub.maxBulkSubCount)
|
|
}
|
|
if cap(sub.activeOperationsChan) != tc.activeOperationsChanCapExpected {
|
|
t.Errorf("Expected capacity of sub.activeOperationsChan to be %d but got %d", tc.activeOperationsChanCapExpected, cap(sub.activeOperationsChan))
|
|
}
|
|
if sub.requireSessions != tc.requireSessionsParam {
|
|
t.Errorf("Expected requireSessions to be %t but got %t", tc.requireSessionsParam, sub.requireSessions)
|
|
}
|
|
})
|
|
}
|
|
}
|