2fas-server/tests/mobile/mobile_security_test.go

25 lines
477 B
Go
Raw Normal View History

2022-12-31 10:22:38 +01:00
package tests
import (
"testing"
2022-12-31 10:22:38 +01:00
"github.com/google/uuid"
2023-01-30 19:59:42 +01:00
"github.com/twofas/2fas-server/tests"
2022-12-31 10:22:38 +01:00
)
func Test_MobileApiBandwidthAbuse(t *testing.T) {
someId := uuid.New()
for i := 0; i <= 100; i++ {
tests.DoAPIGet(t, "/mobile/devices/"+someId.String()+"/browser_extensions", nil)
2022-12-31 10:22:38 +01:00
}
}
func Test_BrowserExtensionApiBandwidthAbuse(t *testing.T) {
someId := uuid.New()
for i := 0; i <= 100; i++ {
tests.DoAPIGet(t, "/browser_extensions/"+someId.String(), nil)
2022-12-31 10:22:38 +01:00
}
}