summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/activitypub/repository_test.go
blob: acd588d99b7d978ac120544cc2fcb7942c84be88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package activitypub

import (
	"testing"

	"code.gitea.io/gitea/models/user"
)

func Test_UserEmailValidate(t *testing.T) {
	sut := "ab@cd.ef"
	if err := user.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 := user.ValidateEmail(sut); err != nil {
		t.Errorf("sut should be valid, %v, %v", sut, err)
	}

	sut = "1"
	if err := user.ValidateEmail(sut); err == nil {
		t.Errorf("sut should not be valid, %v", sut)
	}
}