File: charset_test.go

package info (click to toggle)
golang-github-advancedlogic-goose 0.0~git20210820.9d5822d%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 516 kB
  • sloc: makefile: 128; sh: 11
file content (84 lines) | stat: -rw-r--r-- 2,142 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
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
package goose

import (
	"testing"
)

func TestNormaliseCharset(t *testing.T) {
	characterSet := "SIFT_JIS" // Japanese
	expected := "SHIFT_JIS"
	actual := NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "ANSI" // Western European
	expected = "CP1252"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "ISO-8859-1" // Western European
	expected = "CP1252"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "WINDOWS-1255" // Hebrew
	expected = "ISO-8859-8"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "WINDOWS-1257" // Baltic
	expected = "ISO-8859-13"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "MS949" // Korean
	expected = "UHC"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "KSC5601" // Korean
	expected = "UHC"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "UTF8"
	expected = "UTF-8"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "UTF-8"
	expected = "UTF-8"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "LATIN2"
	expected = "LATIN-2"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}

	characterSet = "WIN1251"
	expected = "CP1251"
	actual = NormaliseCharset(characterSet)
	if expected != actual {
		t.Errorf("Was expecting '%s', got '%s'", expected, actual)
	}
}