aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/karalabe/hid/wchar_test.go
blob: b80ebb872b35026d47754b6b9ce2f4c88be95da5 (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
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
// This file is https://github.com/orofarne/gowchar/blob/master/gowchar_test.go
//
// It was vendored inline to work around CGO limitations that don't allow C types
// to directly cross package API boundaries.
//
// The vendored file is licensed under the 3-clause BSD license, according to:
// https://github.com/orofarne/gowchar/blob/master/LICENSE

// +build !ios
// +build linux darwin windows

package hid

import (
	"fmt"
	"testing"
)

func TestGowcharSimple(t *testing.T) {
	str1 := "Привет, 世界. 𪛖"
	wstr, size := stringToWcharT(str1)
	switch sizeofWcharT {
	case 2:
		if size != 15 {
			t.Errorf("size(%v) != 15", size)
		}
	case 4:
		if size != 14 {
			t.Errorf("size(%v) != 14", size)
		}
	default:
		panic(fmt.Sprintf("sizeof(wchar_t) = %v", sizeofWcharT))
	}
	str2, err := wcharTToString(wstr)
	if err != nil {
		t.Errorf("wcharTToString error: %v", err)
	}
	if str1 != str2 {
		t.Errorf("\"%s\" != \"%s\"", str1, str2)
	}
}

func TestGowcharSimpleN(t *testing.T) {
	str1 := "Привет, 世界. 𪛖"
	wstr, size := stringToWcharT(str1)
	switch sizeofWcharT {
	case 2:
		if size != 15 {
			t.Errorf("size(%v) != 15", size)
		}
	case 4:
		if size != 14 {
			t.Errorf("size(%v) != 14", size)
		}
	default:
		panic(fmt.Sprintf("sizeof(wchar_t) = %v", sizeofWcharT))
	}

	str2, err := wcharTNToString(wstr, size-1)
	if err != nil {
		t.Errorf("wcharTToString error: %v", err)
	}
	if str1 != str2 {
		t.Errorf("\"%s\" != \"%s\"", str1, str2)
	}
}