mirror of
https://github.com/dcarrillo/whatismyip.git
synced 2024-11-16 12:01:13 +00:00
38 lines
532 B
Go
38 lines
532 B
Go
package uuid
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsValid(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
u string
|
|
want bool
|
|
}{
|
|
{
|
|
name: "Valid UUID",
|
|
u: "3b241101-e2bb-4255-8caf-4136c566a964",
|
|
want: true,
|
|
},
|
|
{
|
|
name: "Invalid UUID",
|
|
u: "invalid-uuid",
|
|
want: false,
|
|
},
|
|
{
|
|
name: "Empty string",
|
|
u: "",
|
|
want: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert.True(t, IsValid(tt.u) == tt.want)
|
|
})
|
|
}
|
|
}
|