zdravko/pkg/k6/k6_test.go

80 lines
1.3 KiB
Go
Raw Normal View History

package k6
import (
"context"
2024-02-21 13:09:22 +00:00
"log/slog"
"os"
"testing"
)
func getLogger() *slog.Logger {
opts := &slog.HandlerOptions{
Level: slog.LevelDebug,
}
handler := slog.NewTextHandler(os.Stdout, opts)
return slog.New(handler)
}
2024-02-21 13:16:22 +00:00
func TestK6Success(t *testing.T) {
ctx := context.Background()
logger := getLogger()
script := `
import http from 'k6/http';
import { sleep } from 'k6';
export const options = {
vus: 10,
2024-02-21 13:16:22 +00:00
duration: '5s',
};
export default function () {
http.get('https://test.k6.io');
sleep(1);
}
`
2024-02-21 13:09:22 +00:00
execution := NewExecution(logger, script)
result, err := execution.Run(ctx)
2024-02-21 13:16:22 +00:00
if err != nil {
t.Errorf("Error starting execution: %v", err)
}
if result != nil {
t.Logf("Result: %v", result)
}
2024-02-21 13:16:22 +00:00
}
func TestK6Fail(t *testing.T) {
ctx := context.Background()
logger := getLogger()
2024-02-21 13:16:22 +00:00
script := `
import http from 'k6/http';
import { sleep } from 'k6';
export const options = {
thresholds: {
http_req_failed: ['rate<0.01'], // http errors should be less than 1%
},
};
export default function () {
http.get('https://fail.broken.example');
sleep(1);
}
`
execution := NewExecution(logger, script)
result, err := execution.Run(ctx)
if err != nil {
t.Errorf("Error starting execution: %v", err)
}
if result != nil {
t.Logf("Result: %v", result)
}
}