mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-20 01:36:37 +00:00
- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
27 lines
641 B
Go
27 lines
641 B
Go
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package activitypub
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/modules/validation"
|
|
)
|
|
|
|
func Test_UserEmailValidate(t *testing.T) {
|
|
sut := "ab@cd.ef"
|
|
if err := validation.ValidateEmail(sut); err != nil {
|
|
t.Errorf("sut should be valid, %v, %v", sut, err)
|
|
}
|
|
|
|
sut = "83ce13c8-af0b-4112-8327-55a54e54e664@code.cartoon-aa.xyz"
|
|
if err := validation.ValidateEmail(sut); err != nil {
|
|
t.Errorf("sut should be valid, %v, %v", sut, err)
|
|
}
|
|
|
|
sut = "1"
|
|
if err := validation.ValidateEmail(sut); err == nil {
|
|
t.Errorf("sut should not be valid, %v", sut)
|
|
}
|
|
}
|