charset_test.go 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. // Copyright 2013 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package charset
  5. import (
  6. "bytes"
  7. "io/ioutil"
  8. "runtime"
  9. "strings"
  10. "testing"
  11. "golang.org/x/text/transform"
  12. )
  13. func transformString(t transform.Transformer, s string) (string, error) {
  14. r := transform.NewReader(strings.NewReader(s), t)
  15. b, err := ioutil.ReadAll(r)
  16. return string(b), err
  17. }
  18. var testCases = []struct {
  19. utf8, other, otherEncoding string
  20. }{
  21. {"Résumé", "Résumé", "utf8"},
  22. {"Résumé", "R\xe9sum\xe9", "latin1"},
  23. {"これは漢字です。", "S0\x8c0o0\"oW[g0Y0\x020", "UTF-16LE"},
  24. {"これは漢字です。", "0S0\x8c0oo\"[W0g0Y0\x02", "UTF-16BE"},
  25. {"Hello, world", "Hello, world", "ASCII"},
  26. {"Gdańsk", "Gda\xf1sk", "ISO-8859-2"},
  27. {"Ââ Čč Đđ Ŋŋ Õõ Šš Žž Åå Ää", "\xc2\xe2 \xc8\xe8 \xa9\xb9 \xaf\xbf \xd5\xf5 \xaa\xba \xac\xbc \xc5\xe5 \xc4\xe4", "ISO-8859-10"},
  28. {"สำหรับ", "\xca\xd3\xcb\xc3\u047a", "ISO-8859-11"},
  29. {"latviešu", "latvie\xf0u", "ISO-8859-13"},
  30. {"Seònaid", "Se\xf2naid", "ISO-8859-14"},
  31. {"€1 is cheap", "\xa41 is cheap", "ISO-8859-15"},
  32. {"românește", "rom\xe2ne\xbate", "ISO-8859-16"},
  33. {"nutraĵo", "nutra\xbco", "ISO-8859-3"},
  34. {"Kalâdlit", "Kal\xe2dlit", "ISO-8859-4"},
  35. {"русский", "\xe0\xe3\xe1\xe1\xda\xd8\xd9", "ISO-8859-5"},
  36. {"ελληνικά", "\xe5\xeb\xeb\xe7\xed\xe9\xea\xdc", "ISO-8859-7"},
  37. {"Kağan", "Ka\xf0an", "ISO-8859-9"},
  38. {"Résumé", "R\x8esum\x8e", "macintosh"},
  39. {"Gdańsk", "Gda\xf1sk", "windows-1250"},
  40. {"русский", "\xf0\xf3\xf1\xf1\xea\xe8\xe9", "windows-1251"},
  41. {"Résumé", "R\xe9sum\xe9", "windows-1252"},
  42. {"ελληνικά", "\xe5\xeb\xeb\xe7\xed\xe9\xea\xdc", "windows-1253"},
  43. {"Kağan", "Ka\xf0an", "windows-1254"},
  44. {"עִבְרִית", "\xf2\xc4\xe1\xc0\xf8\xc4\xe9\xfa", "windows-1255"},
  45. {"العربية", "\xc7\xe1\xda\xd1\xc8\xed\xc9", "windows-1256"},
  46. {"latviešu", "latvie\xf0u", "windows-1257"},
  47. {"Việt", "Vi\xea\xf2t", "windows-1258"},
  48. {"สำหรับ", "\xca\xd3\xcb\xc3\u047a", "windows-874"},
  49. {"русский", "\xd2\xd5\xd3\xd3\xcb\xc9\xca", "KOI8-R"},
  50. {"українська", "\xd5\xcb\xd2\xc1\xa7\xce\xd3\xd8\xcb\xc1", "KOI8-U"},
  51. {"Hello 常用國字標準字體表", "Hello \xb1`\xa5\u03b0\xea\xa6r\xbc\u0437\u01e6r\xc5\xe9\xaa\xed", "big5"},
  52. {"Hello 常用國字標準字體表", "Hello \xb3\xa3\xd3\xc3\x87\xf8\xd7\xd6\x98\xcb\x9c\xca\xd7\xd6\xf3\x77\xb1\xed", "gbk"},
  53. {"Hello 常用國字標準字體表", "Hello \xb3\xa3\xd3\xc3\x87\xf8\xd7\xd6\x98\xcb\x9c\xca\xd7\xd6\xf3\x77\xb1\xed", "gb18030"},
  54. {"עִבְרִית", "\x81\x30\xfb\x30\x81\x30\xf6\x34\x81\x30\xf9\x33\x81\x30\xf6\x30\x81\x30\xfb\x36\x81\x30\xf6\x34\x81\x30\xfa\x31\x81\x30\xfb\x38", "gb18030"},
  55. {"㧯", "\x82\x31\x89\x38", "gb18030"},
  56. {"これは漢字です。", "\x82\xb1\x82\xea\x82\xcd\x8a\xbf\x8e\x9a\x82\xc5\x82\xb7\x81B", "SJIS"},
  57. {"Hello, 世界!", "Hello, \x90\xa2\x8aE!", "SJIS"},
  58. {"イウエオカ", "\xb2\xb3\xb4\xb5\xb6", "SJIS"},
  59. {"これは漢字です。", "\xa4\xb3\xa4\xec\xa4\u03f4\xc1\xbb\xfa\xa4\u01e4\xb9\xa1\xa3", "EUC-JP"},
  60. {"Hello, 世界!", "Hello, \x1b$B@$3&\x1b(B!", "ISO-2022-JP"},
  61. {"네이트 | 즐거움의 시작, 슈파스(Spaβ) NATE", "\xb3\xd7\xc0\xcc\xc6\xae | \xc1\xf1\xb0\xc5\xbf\xf2\xc0\xc7 \xbd\xc3\xc0\xdb, \xbd\xb4\xc6\xc4\xbd\xba(Spa\xa5\xe2) NATE", "EUC-KR"},
  62. }
  63. func TestDecode(t *testing.T) {
  64. for _, tc := range testCases {
  65. e, _ := Lookup(tc.otherEncoding)
  66. if e == nil {
  67. t.Errorf("%s: not found", tc.otherEncoding)
  68. continue
  69. }
  70. s, err := transformString(e.NewDecoder(), tc.other)
  71. if err != nil {
  72. t.Errorf("%s: decode %q: %v", tc.otherEncoding, tc.other, err)
  73. continue
  74. }
  75. if s != tc.utf8 {
  76. t.Errorf("%s: got %q, want %q", tc.otherEncoding, s, tc.utf8)
  77. }
  78. }
  79. }
  80. func TestEncode(t *testing.T) {
  81. for _, tc := range testCases {
  82. e, _ := Lookup(tc.otherEncoding)
  83. if e == nil {
  84. t.Errorf("%s: not found", tc.otherEncoding)
  85. continue
  86. }
  87. s, err := transformString(e.NewEncoder(), tc.utf8)
  88. if err != nil {
  89. t.Errorf("%s: encode %q: %s", tc.otherEncoding, tc.utf8, err)
  90. continue
  91. }
  92. if s != tc.other {
  93. t.Errorf("%s: got %q, want %q", tc.otherEncoding, s, tc.other)
  94. }
  95. }
  96. }
  97. // TestNames verifies that you can pass an encoding's name to Lookup and get
  98. // the same encoding back (except for "replacement").
  99. func TestNames(t *testing.T) {
  100. for _, e := range encodings {
  101. if e.name == "replacement" {
  102. continue
  103. }
  104. _, got := Lookup(e.name)
  105. if got != e.name {
  106. t.Errorf("got %q, want %q", got, e.name)
  107. continue
  108. }
  109. }
  110. }
  111. var sniffTestCases = []struct {
  112. filename, declared, want string
  113. }{
  114. {"HTTP-charset.html", "text/html; charset=iso-8859-15", "iso-8859-15"},
  115. {"UTF-16LE-BOM.html", "", "utf-16le"},
  116. {"UTF-16BE-BOM.html", "", "utf-16be"},
  117. {"meta-content-attribute.html", "text/html", "iso-8859-15"},
  118. {"meta-charset-attribute.html", "text/html", "iso-8859-15"},
  119. {"No-encoding-declaration.html", "text/html", "utf-8"},
  120. {"HTTP-vs-UTF-8-BOM.html", "text/html; charset=iso-8859-15", "utf-8"},
  121. {"HTTP-vs-meta-content.html", "text/html; charset=iso-8859-15", "iso-8859-15"},
  122. {"HTTP-vs-meta-charset.html", "text/html; charset=iso-8859-15", "iso-8859-15"},
  123. {"UTF-8-BOM-vs-meta-content.html", "text/html", "utf-8"},
  124. {"UTF-8-BOM-vs-meta-charset.html", "text/html", "utf-8"},
  125. }
  126. func TestSniff(t *testing.T) {
  127. switch runtime.GOOS {
  128. case "nacl": // platforms that don't permit direct file system access
  129. t.Skipf("not supported on %q", runtime.GOOS)
  130. }
  131. for _, tc := range sniffTestCases {
  132. content, err := ioutil.ReadFile("testdata/" + tc.filename)
  133. if err != nil {
  134. t.Errorf("%s: error reading file: %v", tc.filename, err)
  135. continue
  136. }
  137. _, name, _ := DetermineEncoding(content, tc.declared)
  138. if name != tc.want {
  139. t.Errorf("%s: got %q, want %q", tc.filename, name, tc.want)
  140. continue
  141. }
  142. }
  143. }
  144. func TestReader(t *testing.T) {
  145. switch runtime.GOOS {
  146. case "nacl": // platforms that don't permit direct file system access
  147. t.Skipf("not supported on %q", runtime.GOOS)
  148. }
  149. for _, tc := range sniffTestCases {
  150. content, err := ioutil.ReadFile("testdata/" + tc.filename)
  151. if err != nil {
  152. t.Errorf("%s: error reading file: %v", tc.filename, err)
  153. continue
  154. }
  155. r, err := NewReader(bytes.NewReader(content), tc.declared)
  156. if err != nil {
  157. t.Errorf("%s: error creating reader: %v", tc.filename, err)
  158. continue
  159. }
  160. got, err := ioutil.ReadAll(r)
  161. if err != nil {
  162. t.Errorf("%s: error reading from charset.NewReader: %v", tc.filename, err)
  163. continue
  164. }
  165. e, _ := Lookup(tc.want)
  166. want, err := ioutil.ReadAll(transform.NewReader(bytes.NewReader(content), e.NewDecoder()))
  167. if err != nil {
  168. t.Errorf("%s: error decoding with hard-coded charset name: %v", tc.filename, err)
  169. continue
  170. }
  171. if !bytes.Equal(got, want) {
  172. t.Errorf("%s: got %q, want %q", tc.filename, got, want)
  173. continue
  174. }
  175. }
  176. }
  177. var metaTestCases = []struct {
  178. meta, want string
  179. }{
  180. {"", ""},
  181. {"text/html", ""},
  182. {"text/html; charset utf-8", ""},
  183. {"text/html; charset=latin-2", "latin-2"},
  184. {"text/html; charset; charset = utf-8", "utf-8"},
  185. {`charset="big5"`, "big5"},
  186. {"charset='shift_jis'", "shift_jis"},
  187. }
  188. func TestFromMeta(t *testing.T) {
  189. for _, tc := range metaTestCases {
  190. got := fromMetaElement(tc.meta)
  191. if got != tc.want {
  192. t.Errorf("%q: got %q, want %q", tc.meta, got, tc.want)
  193. }
  194. }
  195. }