summaryrefslogtreecommitdiff
path: root/testing/resources
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-09-08 16:23:39 -0700
committerTom Sepez <tsepez@chromium.org>2015-09-08 16:23:39 -0700
commitb830fbc03a6d12d8b5be50e85499c281a4c5da7f (patch)
tree5e9319d9ac70f98b4734b6b006d94b0ea218a8ab /testing/resources
parent4bc64cabc561d5df211ed02dc75c85e41fa91312 (diff)
downloadpdfium-b830fbc03a6d12d8b5be50e85499c281a4c5da7f.tar.xz
Beef up app_props.in and tidy app.cpp.
Some of the values returned are dubious; capture the current state of affairs. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1317393003 .
Diffstat (limited to 'testing/resources')
-rw-r--r--testing/resources/javascript/app_props.in85
-rw-r--r--testing/resources/javascript/app_props_expected.txt40
2 files changed, 121 insertions, 4 deletions
diff --git a/testing/resources/javascript/app_props.in b/testing/resources/javascript/app_props.in
index fb5f9d645f..89511b0b13 100644
--- a/testing/resources/javascript/app_props.in
+++ b/testing/resources/javascript/app_props.in
@@ -7,9 +7,12 @@
endobj
{{object 2 0}} <<
/Type /Pages
- /Count 1
+ /Count 4
/Kids [
3 0 R
+ 4 0 R
+ 5 0 R
+ 6 0 R
]
>>
endobj
@@ -20,9 +23,42 @@ endobj
/Resources <<
/Font <</F1 15 0 R>>
>>
- /Contents [21 0 R]
/MediaBox [0 0 612 792]
>>
+% Page number 1.
+{{object 4 0}} <<
+ /Type /Page
+ /Parent 2 0 R
+ /Resources <<
+ /Font <</F1 15 0 R>>
+ >>
+ /MediaBox [0 0 612 792]
+>>
+% Page number 2.
+{{object 5 0}} <<
+ /Type /Page
+ /Parent 2 0 R
+ /Resources <<
+ /Font <</F1 15 0 R>>
+ >>
+ /MediaBox [0 0 612 792]
+>>
+% Page number 3.
+{{object 6 0}} <<
+ /Type /Page
+ /Parent 2 0 R
+ /Resources <<
+ /Font <</F1 15 0 R>>
+ >>
+ /MediaBox [0 0 612 792]
+>>
+
+% Info
+{{object 9 0}} <<
+ /Author (Joe Random Author)
+ /Creator (Joe Random Creator)
+>>
+endobj
% OpenAction action
{{object 10 0}} <<
/Type /Action
@@ -34,12 +70,55 @@ endobj
{{object 11 0}} <<
>>
stream
-app.alert("app.viewerType property value: " + app.viewerType);
+var app_props = [
+ 'activeDocs',
+ 'calculate',
+ 'formsVersion',
+ 'fs',
+ 'fullscreen',
+ 'language',
+ 'media',
+ 'platform',
+ 'runtimeHighlight',
+ 'viewerType',
+ 'viewerVariation',
+ 'viewerVersion'
+];
+
+function testGetProps(props) {
+ app.alert('*** Getting properties ***');
+ for (var i = 0; i < props.length; ++i) {
+ try {
+ var expr1 = "app." + props[i];
+ var expr2 = "typeof " + expr1;
+ app.alert(expr1 + " is " + eval(expr2) + ' ' + eval(expr1));
+ } catch (e) {
+ app.alert("ERROR: " + e.toString());
+ }
+ }
+}
+
+function testSetProps(props) {
+ app.alert('*** Setting properties ***');
+ for (var i = 0; i < props.length; ++i) {
+ try {
+ var expr1 = "app." + props[i] + ' = 3;'
+ app.alert(expr1 + " yields " + eval(expr1));
+ } catch (e) {
+ app.alert("ERROR: " + e.toString());
+ }
+ }
+}
+
+testGetProps(app_props);
+testSetProps(app_props);
+testGetProps(app_props);
endstream
endobj
{{xref}}
trailer <<
/Root 1 0 R
+ /Info 9 0 R
>>
{{startxref}}
%%EOF
diff --git a/testing/resources/javascript/app_props_expected.txt b/testing/resources/javascript/app_props_expected.txt
index 405f9c8227..6e78ba510b 100644
--- a/testing/resources/javascript/app_props_expected.txt
+++ b/testing/resources/javascript/app_props_expected.txt
@@ -1 +1,39 @@
-Alert: app.viewerType property value: pdfium
+Alert: *** Getting properties ***
+Alert: app.activeDocs is object [object Object]
+Alert: app.calculate is boolean true
+Alert: app.formsVersion is number 7
+Alert: ERROR: app.fs:
+Alert: ERROR: app.fullscreen:
+Alert: app.language is string ENU
+Alert: ERROR: app.media:
+Alert: app.platform is string WIN
+Alert: app.runtimeHighlight is boolean false
+Alert: app.viewerType is string pdfium
+Alert: app.viewerVariation is string Full
+Alert: app.viewerVersion is number 8
+Alert: *** Setting properties ***
+Alert: ERROR: app.activeDocs:
+Alert: app.calculate = 3; yields 3
+Alert: ERROR: app.formsVersion:
+Alert: ERROR: app.fs:
+Alert: ERROR: app.fullscreen:
+Alert: ERROR: app.language:
+Alert: ERROR: app.media:
+Alert: ERROR: app.platform:
+Alert: app.runtimeHighlight = 3; yields 3
+Alert: ERROR: app.viewerType:
+Alert: ERROR: app.viewerVariation:
+Alert: ERROR: app.viewerVersion:
+Alert: *** Getting properties ***
+Alert: app.activeDocs is object [object Object]
+Alert: app.calculate is boolean true
+Alert: app.formsVersion is number 7
+Alert: ERROR: app.fs:
+Alert: ERROR: app.fullscreen:
+Alert: app.language is string ENU
+Alert: ERROR: app.media:
+Alert: app.platform is string WIN
+Alert: app.runtimeHighlight is boolean true
+Alert: app.viewerType is string pdfium
+Alert: app.viewerVariation is string Full
+Alert: app.viewerVersion is number 8