Skip to content

Commit 5f7a517

Browse files
committedSep 21, 2024
cmd/smoothmq/tester: Create a new queue for each test run
1 parent 66f8eda commit 5f7a517

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed
 

‎cmd/smoothmq/tester/tester.go

+14-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ import (
2323
func Run(c smoothCfg.TesterCommand) {
2424
var sentMessages, receivedMessages int
2525

26-
queueUrl := "https://sqs.us-east-1.amazonaws.com/123/test-queue"
27-
2826
// Load the AWS configuration with hardcoded credentials
2927
cfg, err := config.LoadDefaultConfig(context.TODO(),
3028
config.WithRegion("us-east-1"),
@@ -43,6 +41,8 @@ func Run(c smoothCfg.TesterCommand) {
4341

4442
var ch chan int
4543

44+
queueUrl := createQueue(sqsClient)
45+
4646
for i := 0; i < c.Senders; i++ {
4747
wg.Add(1)
4848
go func(id int) {
@@ -96,6 +96,18 @@ func GenerateRandomString(n int) string {
9696
return string(b)
9797
}
9898

99+
func createQueue(client *sqs.Client) string {
100+
queueName := fmt.Sprintf("test-queue-%d", rand.Int())
101+
i := &sqs.CreateQueueInput{
102+
QueueName: &queueName,
103+
}
104+
result, err := client.CreateQueue(context.TODO(), i)
105+
if err != nil {
106+
log.Error().Err(err).Send()
107+
}
108+
return *result.QueueUrl
109+
}
110+
99111
func sendMessage(client *sqs.Client, queueUrl string, goroutineID, requestID, batchSize, delaySeconds int) {
100112

101113
if batchSize > 1 {

0 commit comments

Comments
 (0)