File: tag_test.go

package info (click to toggle)
golang-github-maxatome-go-testdeep 1.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,416 kB
  • sloc: perl: 1,012; yacc: 130; makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download | duplicates (2)
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
// Copyright (c) 2019, Maxime Soulé
// All rights reserved.
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.

package util_test

import (
	"testing"

	"github.com/maxatome/go-testdeep/internal/util"
)

func TestCheckTag(t *testing.T) {
	tags := []string{
		"tag12",
		"_1é",
		"a9",
		"a",
		"é൫",
		"é",
		"_",
	}
	for _, tag := range tags {
		if err := util.CheckTag(tag); err != nil {
			t.Errorf("check(%s) failed: %s", tag, err)
		}
	}

	tagsInfo := []struct {
		tag string
		err error
	}{
		{tag: "", err: util.ErrTagEmpty},
		{tag: "൫a", err: util.ErrTagInvalid},
		{tag: "9a", err: util.ErrTagInvalid},
		{tag: "é ", err: util.ErrTagInvalid},
	}
	for _, info := range tagsInfo {
		err := util.CheckTag(info.tag)
		if err == nil {
			t.Errorf("check(%s) should not succeed", info.tag)
		} else if err != info.err {
			t.Errorf(`check(%s) returned "%s" intead of expected "%s"`,
				info.tag, err, info.err)
		}
	}
}