-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathregexp_test.go
More file actions
106 lines (83 loc) · 1.9 KB
/
Copy pathregexp_test.go
File metadata and controls
106 lines (83 loc) · 1.9 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright (c) 2023-2026 Onur Cinar.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// https://github.com/cinar/checker
package v2_test
import (
"fmt"
"sync"
"testing"
v2 "github.com/cinar/checker/v2"
)
func ExampleIsRegexp() {
_, err := v2.IsRegexp("^[0-9a-fA-F]+$", "ABcd1234")
if err != nil {
fmt.Println(err)
}
}
func TestIsRegexpInvalid(t *testing.T) {
_, err := v2.IsRegexp("^[0-9a-fA-F]+$", "Onur")
if err == nil {
t.Fatal("expected error")
}
}
func TestIsRegexpValid(t *testing.T) {
_, err := v2.IsRegexp("^[0-9a-fA-F]+$", "ABcd1234")
if err != nil {
t.Fatal(err)
}
}
func TestCheckRegexpNonString(t *testing.T) {
defer FailIfNoPanic(t, "expected panic")
type User struct {
Username int `checkers:"regexp:^[A-Za-z]$"`
}
user := &User{}
v2.CheckStruct(user)
}
func TestCheckRegexpInvalid(t *testing.T) {
type User struct {
Username string `checkers:"regexp:^[A-Za-z]+$"`
}
user := &User{
Username: "abcd1234",
}
_, ok := v2.CheckStruct(user)
if ok {
t.Fatal("expected error")
}
}
// TestIsRegexpConcurrentSamePattern exercises the compiled-pattern cache
// from many goroutines using the same expression, some new to the process
// and some already cached. Run with `go test -race`.
func TestIsRegexpConcurrentSamePattern(t *testing.T) {
const expression = "^[a-z]+$"
var wg sync.WaitGroup
for i := 0; i < 50; i++ {
wg.Add(1)
go func() {
defer wg.Done()
if _, err := v2.IsRegexp(expression, "onur"); err != nil {
t.Error(err)
}
}()
}
wg.Wait()
}
func BenchmarkIsRegexp(b *testing.B) {
for i := 0; i < b.N; i++ {
_, _ = v2.IsRegexp("^[0-9a-fA-F]+$", "ABcd1234")
}
}
func TestCheckRegexpValid(t *testing.T) {
type User struct {
Username string `checkers:"regexp:^[A-Za-z]+$"`
}
user := &User{
Username: "abcd",
}
_, ok := v2.CheckStruct(user)
if !ok {
t.Fatal("expected valid")
}
}