diff options
author | tsepez <tsepez@chromium.org> | 2016-03-29 09:21:54 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-29 09:21:54 -0700 |
commit | 90d87793cf55f3c4e57e9db6c8de692ebef41e29 (patch) | |
tree | dab4c366cabd24503fee99005f9f336a128c87fb /testing | |
parent | 41a53ad771411db3cdd98822f9d240456767fba8 (diff) | |
download | pdfium-90d87793cf55f3c4e57e9db6c8de692ebef41e29.tar.xz |
Add test for util.byteToChar() and fix error msg.
Review URL: https://codereview.chromium.org/1838543002
Diffstat (limited to 'testing')
-rw-r--r-- | testing/resources/javascript/util_bytetochar.in | 76 | ||||
-rw-r--r-- | testing/resources/javascript/util_bytetochar_expected.txt | 9 |
2 files changed, 85 insertions, 0 deletions
diff --git a/testing/resources/javascript/util_bytetochar.in b/testing/resources/javascript/util_bytetochar.in new file mode 100644 index 0000000000..a9adfbccaf --- /dev/null +++ b/testing/resources/javascript/util_bytetochar.in @@ -0,0 +1,76 @@ +{{header}} +{{object 1 0}} << + /Type /Catalog + /Pages 2 0 R + /OpenAction 10 0 R +>> +endobj +{{object 2 0}} << + /Type /Pages + /Count 1 + /Kids [ + 3 0 R + ] +>> +endobj +% Page number 0. +{{object 3 0}} << + /Type /Page + /Parent 2 0 R + /Resources << + /Font <</F1 15 0 R>> + >> + /Contents [21 0 R] + /MediaBox [0 0 612 792] +>> +% OpenAction action +{{object 10 0}} << + /Type /Action + /S /JavaScript + /JS 11 0 R +>> +endobj +% JS program to exexute +{{object 11 0}} << +>> +stream +function TestOneInput(x) { + try { + var s = util.byteToChar(x); + if (s.length) { + s = s.charCodeAt(0); + } + app.alert(x + " => " + s); + } + catch (e) { + app.alert(x + ": Caught error: " + e); + } +} +TestOneInput(0); +TestOneInput(65); +TestOneInput(127); +TestOneInput(128); +TestOneInput(255); +TestOneInput(256); +TestOneInput(40000000); +TestOneInput(-1); +try { + util.byteToChar(); +} +catch (e) { + app.alert("Caught expected error: " + e); +} +try { + util.byteToChar({x:39}); +} +catch (e) { + app.alert("Caught expected error: " + e); +} +endstream +endobj +{{xref}} +trailer << + /Root 1 0 R +>> +{{startxref}} +%%EOF diff --git a/testing/resources/javascript/util_bytetochar_expected.txt b/testing/resources/javascript/util_bytetochar_expected.txt new file mode 100644 index 0000000000..df15ee7226 --- /dev/null +++ b/testing/resources/javascript/util_bytetochar_expected.txt @@ -0,0 +1,9 @@ +Alert: 0 => +Alert: 65 => 65 +Alert: 127 => 127 +Alert: 128 => 128 +Alert: 255 => 255 +Alert: 256: Caught error: util.byteToChar: Incorrect parameter value. +Alert: 40000000: Caught error: util.byteToChar: Incorrect parameter value. +Alert: -1: Caught error: util.byteToChar: Incorrect parameter value. +Alert: Caught expected error: util.byteToChar: Incorrect number of parameters passed to function. |