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)
}
}
|