-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathisbn_test.go
More file actions
111 lines (90 loc) · 1.87 KB
/
Copy pathisbn_test.go
File metadata and controls
111 lines (90 loc) · 1.87 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
107
108
109
110
111
// 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"
"testing"
v2 "github.com/cinar/checker/v2"
)
func ExampleIsISBN() {
_, err := v2.IsISBN("1430248270")
if err != nil {
fmt.Println(err)
}
}
func TestIsISBNInvalid(t *testing.T) {
_, err := v2.IsISBN("invalid-isbn")
if err == nil {
t.Fatal("expected error")
}
}
func TestIsISBNValid(t *testing.T) {
_, err := v2.IsISBN("1430248270")
if err != nil {
t.Fatal(err)
}
}
func TestIsISBN10BadChecksumInvalid(t *testing.T) {
_, err := v2.IsISBN("0306406153")
if err == nil {
t.Fatal("expected error for bad ISBN-10 checksum")
}
}
func TestIsISBN13BadChecksumInvalid(t *testing.T) {
_, err := v2.IsISBN("9780306406158")
if err == nil {
t.Fatal("expected error for bad ISBN-13 checksum")
}
}
func TestIsISBN10XCheckDigitValid(t *testing.T) {
_, err := v2.IsISBN("080442957X")
if err != nil {
t.Fatal(err)
}
}
func TestIsISBN10HyphenatedValid(t *testing.T) {
_, err := v2.IsISBN("0-306-40615-2")
if err != nil {
t.Fatal(err)
}
}
func TestIsISBN13HyphenatedValid(t *testing.T) {
_, err := v2.IsISBN("978-0-306-40615-7")
if err != nil {
t.Fatal(err)
}
}
func TestCheckISBNNonString(t *testing.T) {
defer FailIfNoPanic(t, "expected panic")
type Book struct {
ISBN int `checkers:"isbn"`
}
book := &Book{}
v2.CheckStruct(book)
}
func TestCheckISBNInvalid(t *testing.T) {
type Book struct {
ISBN string `checkers:"isbn"`
}
book := &Book{
ISBN: "invalid-isbn",
}
_, ok := v2.CheckStruct(book)
if ok {
t.Fatal("expected error")
}
}
func TestCheckISBNValid(t *testing.T) {
type Book struct {
ISBN string `checkers:"isbn"`
}
book := &Book{
ISBN: "9783161484100",
}
_, ok := v2.CheckStruct(book)
if !ok {
t.Fatal("expected valid")
}
}