Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4806)

Unified Diff: chrome/test/data/webui/print_preview.js

Issue 601083004: Enable a11y audit for chrome://print and fix failing tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/webui/print_preview.js
diff --git a/chrome/test/data/webui/print_preview.js b/chrome/test/data/webui/print_preview.js
index d5dc8dac97af6b3e95348be078f579f1c4dfed20..6df9e42a868af7fff01c588f830a73410ab0dd3e 100644
--- a/chrome/test/data/webui/print_preview.js
+++ b/chrome/test/data/webui/print_preview.js
@@ -45,6 +45,12 @@ PrintPreviewWebUITest.prototype = {
*/
browsePrintPreload: 'print_preview_hello_world_test.html',
+ /** @override */
+ runAccessibilityChecks: true,
+
+ /** @override */
+ accessibilityIssuesAreErrors: true,
+
/**
* Stub out low-level functionality like the NativeLayer and
* CloudPrintInterface.
@@ -139,15 +145,7 @@ GEN('#include "chrome/test/data/webui/print_preview.h"');
// Test some basic assumptions about the print preview WebUI.
TEST_F('PrintPreviewWebUITest', 'TestPrinterList', function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var recentList = $('destination-search').querySelector('.recent-list ul');
var localList = $('destination-search').querySelector('.local-list ul');
@@ -173,15 +171,7 @@ TEST_F('PrintPreviewWebUITest', 'TestPrinterList', function() {
// Test that the printer list is structured correctly after calling
// addCloudPrinters with an empty list.
TEST_F('PrintPreviewWebUITest', 'TestPrinterListCloudEmpty', function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var cloudPrintEnableEvent =
new Event(print_preview.NativeLayer.EventType.CLOUD_PRINT_ENABLE);
@@ -299,16 +289,7 @@ TEST_F('PrintPreviewWebUITest', 'TestSectionsDisabled', function() {
checkSectionVisible($('layout-settings'), false);
checkSectionVisible($('color-settings'), false);
checkSectionVisible($('copies-settings'), false);
-
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var capsSetEvent =
new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
@@ -375,56 +356,11 @@ TEST_F('PrintPreviewWebUITest', 'PrintToPDFSelectedCapabilities', function() {
checkSectionVisible($('media-size-settings'), false);
});
-// When the source is 'HTML', we always hide the fit to page option and show
-// media size option.
-TEST_F('PrintPreviewWebUITest', 'SourceIsHTMLCapabilities', function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
-
- var capsSetEvent =
- new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
- capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
- this.nativeLayer_.dispatchEvent(capsSetEvent);
-
- var moreSettingsDiv = $('more-settings');
- var mediaSizeDiv = $('media-size-settings');
- var otherOptionsDiv = $('other-options-settings');
- var fitToPageEl = otherOptionsDiv.querySelector('.fit-to-page-container');
-
- // Check that options are collapsed (section is visible, because duplex is
- // available).
- checkSectionVisible(otherOptionsDiv, true);
- checkElementDisplayed(fitToPageEl, false);
- checkSectionVisible(mediaSizeDiv, false);
- // Expand it.
- checkSectionVisible(moreSettingsDiv, true);
- moreSettingsDiv.click();
-
- checkElementDisplayed(fitToPageEl, false);
- checkSectionVisible(mediaSizeDiv, true);
-});
-
// When the source is "PDF", depending on the selected destination printer, we
// show/hide the fit to page option and hide media size selection.
TEST_F('PrintPreviewWebUITest', 'SourceIsPDFCapabilities', function() {
this.initialSettings_.isDocumentModifiable_ = false;
-
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var capsSetEvent =
new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
@@ -445,16 +381,7 @@ TEST_F('PrintPreviewWebUITest', 'SourceIsPDFCapabilities', function() {
// to page option but the state is unchecked by default.
TEST_F('PrintPreviewWebUITest', 'PrintScalingDisabledForPlugin', function() {
this.initialSettings_.isDocumentModifiable_ = false;
-
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var capsSetEvent =
new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
@@ -477,15 +404,7 @@ TEST_F('PrintPreviewWebUITest', 'PrintScalingDisabledForPlugin', function() {
// Make sure that custom margins controls are properly set up.
TEST_F('PrintPreviewWebUITest', 'CustomMarginsControlsCheck', function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var capsSetEvent =
new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
@@ -504,173 +423,6 @@ TEST_F('PrintPreviewWebUITest', 'CustomMarginsControlsCheck', function() {
});
});
-// Page layout has zero margins. Hide header and footer option.
-TEST_F('PrintPreviewWebUITest', 'PageLayoutHasNoMarginsHideHeaderFooter',
- function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
-
- var capsSetEvent =
- new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
- capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
- this.nativeLayer_.dispatchEvent(capsSetEvent);
-
- var moreSettingsDiv = $('more-settings');
- var otherOptionsDiv = $('other-options-settings');
- var headerFooterEl =
- otherOptionsDiv.querySelector('.header-footer-container');
-
- // Check that options are collapsed (section is visible, because duplex is
- // available).
- checkSectionVisible(otherOptionsDiv, true);
- checkElementDisplayed(headerFooterEl, false);
- // Expand it.
- checkSectionVisible(moreSettingsDiv, true);
- moreSettingsDiv.click();
-
- checkElementDisplayed(headerFooterEl, true);
-
- printPreview.printTicketStore_.marginsType.updateValue(
- print_preview.ticket_items.MarginsType.Value.CUSTOM);
- printPreview.printTicketStore_.customMargins.updateValue(
- new print_preview.Margins(0, 0, 0, 0));
-
- checkElementDisplayed(headerFooterEl, false);
-});
-
-// Page layout has half-inch margins. Show header and footer option.
-TEST_F('PrintPreviewWebUITest', 'PageLayoutHasMarginsShowHeaderFooter',
- function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
-
- var capsSetEvent =
- new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
- capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
- this.nativeLayer_.dispatchEvent(capsSetEvent);
-
- var moreSettingsDiv = $('more-settings');
- var otherOptionsDiv = $('other-options-settings');
- var headerFooterEl =
- otherOptionsDiv.querySelector('.header-footer-container');
-
- // Check that options are collapsed (section is visible, because duplex is
- // available).
- checkSectionVisible(otherOptionsDiv, true);
- checkElementDisplayed(headerFooterEl, false);
- // Expand it.
- checkSectionVisible(moreSettingsDiv, true);
- moreSettingsDiv.click();
-
- checkElementDisplayed(headerFooterEl, true);
-
- printPreview.printTicketStore_.marginsType.updateValue(
- print_preview.ticket_items.MarginsType.Value.CUSTOM);
- printPreview.printTicketStore_.customMargins.updateValue(
- new print_preview.Margins(36, 36, 36, 36));
-
- checkElementDisplayed(headerFooterEl, true);
-});
-
-// Page layout has zero top and bottom margins. Hide header and footer option.
-TEST_F('PrintPreviewWebUITest',
- 'ZeroTopAndBottomMarginsHideHeaderFooter',
- function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
-
- var capsSetEvent =
- new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
- capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
- this.nativeLayer_.dispatchEvent(capsSetEvent);
-
- var moreSettingsDiv = $('more-settings');
- var otherOptionsDiv = $('other-options-settings');
- var headerFooterEl =
- otherOptionsDiv.querySelector('.header-footer-container');
-
- // Check that options are collapsed (section is visible, because duplex is
- // available).
- checkSectionVisible(otherOptionsDiv, true);
- checkElementDisplayed(headerFooterEl, false);
- // Expand it.
- checkSectionVisible(moreSettingsDiv, true);
- moreSettingsDiv.click();
-
- checkElementDisplayed(headerFooterEl, true);
-
- printPreview.printTicketStore_.marginsType.updateValue(
- print_preview.ticket_items.MarginsType.Value.CUSTOM);
- printPreview.printTicketStore_.customMargins.updateValue(
- new print_preview.Margins(0, 36, 0, 36));
-
- checkElementDisplayed(headerFooterEl, false);
-});
-
-// Page layout has zero top and half-inch bottom margin. Show header and footer
-// option.
-TEST_F('PrintPreviewWebUITest',
- 'ZeroTopAndNonZeroBottomMarginShowHeaderFooter',
- function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
-
- var capsSetEvent =
- new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
- capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
- this.nativeLayer_.dispatchEvent(capsSetEvent);
-
- var moreSettingsDiv = $('more-settings');
- var otherOptionsDiv = $('other-options-settings');
- var headerFooterEl =
- otherOptionsDiv.querySelector('.header-footer-container');
-
- // Check that options are collapsed (section is visible, because duplex is
- // available).
- checkSectionVisible(otherOptionsDiv, true);
- checkElementDisplayed(headerFooterEl, false);
- // Expand it.
- checkSectionVisible(moreSettingsDiv, true);
- moreSettingsDiv.click();
-
- checkElementDisplayed(headerFooterEl, true);
-
- printPreview.printTicketStore_.marginsType.updateValue(
- print_preview.ticket_items.MarginsType.Value.CUSTOM);
- printPreview.printTicketStore_.customMargins.updateValue(
- new print_preview.Margins(0, 36, 36, 36));
-
- checkElementDisplayed(headerFooterEl, true);
-});
-
// Test that the color settings, one option, standard monochrome.
TEST_F('PrintPreviewWebUITest', 'TestColorSettingsMonochrome', function() {
this.setUpPreview();
@@ -811,15 +563,7 @@ TEST_F('PrintPreviewWebUITest',
// Test to verify that duplex settings are set according to the printer
// capabilities.
TEST_F('PrintPreviewWebUITest', 'TestDuplexSettingsTrue', function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var otherOptionsDiv = $('other-options-settings');
var duplexDiv = otherOptionsDiv.querySelector('.duplex-container');
@@ -835,51 +579,9 @@ TEST_F('PrintPreviewWebUITest', 'TestDuplexSettingsTrue', function() {
expectFalse(duplexCheckbox.checked);
});
-// Test to verify that duplex settings are set according to the printer
-// capabilities.
-TEST_F('PrintPreviewWebUITest', 'TestDuplexSettingsFalse', function() {
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
-
- var moreSettingsDiv = $('more-settings');
- var otherOptionsDiv = $('other-options-settings');
- var duplexDiv = otherOptionsDiv.querySelector('.duplex-container');
-
- var capsSetEvent =
- new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
- capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
- delete capsSetEvent.settingsInfo.capabilities.printer.duplex;
- this.nativeLayer_.dispatchEvent(capsSetEvent);
-
- // Check that it is collapsed.
- checkSectionVisible(otherOptionsDiv, false);
- // Expand it.
- checkSectionVisible(moreSettingsDiv, true);
- moreSettingsDiv.click();
- // Now it should be visible.
- checkSectionVisible(otherOptionsDiv, true);
- expectTrue(duplexDiv.hidden);
-});
-
// Test that changing the selected printer updates the preview.
TEST_F('PrintPreviewWebUITest', 'TestPrinterChangeUpdatesPreview', function() {
-
- var initialSettingsSetEvent =
- new Event(print_preview.NativeLayer.EventType.INITIAL_SETTINGS_SET);
- initialSettingsSetEvent.initialSettings = this.initialSettings_;
- this.nativeLayer_.dispatchEvent(initialSettingsSetEvent);
-
- var localDestsSetEvent =
- new Event(print_preview.NativeLayer.EventType.LOCAL_DESTINATIONS_SET);
- localDestsSetEvent.destinationInfos = this.localDestinationInfos_;
- this.nativeLayer_.dispatchEvent(localDestsSetEvent);
+ this.setUpPreview();
var capsSetEvent =
new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
@@ -932,3 +634,249 @@ TEST_F('PrintPreviewWebUITest', 'TestNoPDFPluginErrorMessage', function() {
previewAreaEl.getElementsByClassName('preview-area-custom-message')[0];
expectEquals(false, customMessageEl.hidden);
});
+
+/**
+ * Async test fixture for print preview WebUI testing.
+ * @constructor
+ * @extends {PrintPreviewWebUITest}
+ */
+function PrintPreviewWebUIAsyncTest() {
+}
+
+PrintPreviewWebUIAsyncTest.prototype = {
+ __proto__: PrintPreviewWebUITest.prototype,
+
+ /** @override */
+ isAsync: true,
+
+ /**
+ * @this {PrintPreviewWebUIAsyncTest}
+ * @override
+ */
+ setUp: function() {
+ // Setup everything from the base class.
+ PrintPreviewWebUITest.prototype.setUp.call(this);
+
+ // Do this here because all tests need it.
+ this.setUpPreview();
+
+ // Make all transitions and animations take 0ms for testing purposes.
+ // Animations still happen and we will wait for the webkitAnimationEnd event
+ // for the "more-settings" element because it is responsible for hiding a
+ // lot of buttons.
+ var noAnimationStyle =
+ document.createElementNS('http://www.w3.org/1999/xhtml', 'style');
Dan Beam 2014/10/20 20:15:25 indent off
Dan Beam 2014/10/20 20:15:25 er, why not just document.createElement('style')?
hcarmona 2014/10/21 01:07:18 Changed to document.createElement('style')
hcarmona 2014/10/21 01:07:18 Acknowledged.
+ noAnimationStyle.textContent =
+ '* {' +
+ ' -webkit-transition-duration: 0s !important;' +
+ ' -webkit-transition-delay: 0s !important;' +
+ ' -webkit-animation-duration: 0s !important;' +
+ ' -webkit-animation-delay: 0s !important;' +
+ '}';
+ var heads = document.getElementsByTagName('head');
Dan Beam 2014/10/20 20:15:25 we control the markup, so there should always be a
hcarmona 2014/10/21 01:07:18 Acknowledged.
+ if (heads.length) {
Dan Beam 2014/10/20 20:15:25 no curlies
hcarmona 2014/10/21 01:07:17 Acknowledged.
+ heads[0].appendChild(noAnimationStyle);
+ }
+ },
+
+ /**
+ * Even though animation duration and delay is set to zero, it is necessary to
+ * wait until the animation has finished.
+ */
+ waitForUI: function() {
Dan Beam 2014/10/20 20:15:25 waitForAnimationsToEnd()
Dan Beam 2014/10/20 20:15:25 can this be tearDown? (so this.waitForAnimationsTo
hcarmona 2014/10/21 01:07:17 Acknowledged.
hcarmona 2014/10/21 01:07:18 Can't be in tearDown because tearDown happens afte
+ // add a listener for the transition end event
+ document.addEventListener('webkitAnimationEnd', function finishTest(e) {
Dan Beam 2014/10/20 20:15:25 remove "finishTest"
hcarmona 2014/10/21 01:07:18 Acknowledged.
+ if (e.target.id == 'more-settings')
+ testDone();
+ });
+ },
+};
+
+// When the source is 'HTML', we always hide the fit to page option and show
+// media size option.
+TEST_F('PrintPreviewWebUIAsyncTest', 'SourceIsHTMLCapabilities', function() {
+ var capsSetEvent =
+ new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
+ capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
+ this.nativeLayer_.dispatchEvent(capsSetEvent);
+
+ var moreSettingsDiv = $('more-settings');
Dan Beam 2014/10/20 20:15:25 no reason for "Div" in these names, also no reason
hcarmona 2014/10/21 01:07:18 Acknowledged.
+ var mediaSizeDiv = $('media-size-settings');
+ var otherOptionsDiv = $('other-options-settings');
+ var fitToPageEl = otherOptionsDiv.querySelector('.fit-to-page-container');
+
+ // Check that options are collapsed (section is visible, because duplex is
+ // available).
+ checkSectionVisible(otherOptionsDiv, true);
+ checkElementDisplayed(fitToPageEl, false);
+ checkSectionVisible(mediaSizeDiv, false);
+ // Expand it.
+ checkSectionVisible(moreSettingsDiv, true);
+ moreSettingsDiv.click();
+
+ checkElementDisplayed(fitToPageEl, false);
+ checkSectionVisible(mediaSizeDiv, true);
+
+ this.waitForUI();
+});
+
+// Page layout has zero margins. Hide header and footer option.
+TEST_F('PrintPreviewWebUIAsyncTest', 'PageLayoutHasNoMarginsHideHeaderFooter',
+ function() {
+ var capsSetEvent =
+ new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
+ capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
+ this.nativeLayer_.dispatchEvent(capsSetEvent);
+
+ var moreSettingsDiv = $('more-settings');
+ var otherOptionsDiv = $('other-options-settings');
+ var headerFooterEl =
+ otherOptionsDiv.querySelector('.header-footer-container');
Dan Beam 2014/10/20 20:15:25 ugh, this is a pervasive pattern apparently...
hcarmona 2014/10/21 01:07:18 Acknowledged.
+
+ // Check that options are collapsed (section is visible, because duplex is
+ // available).
+ checkSectionVisible(otherOptionsDiv, true);
+ checkElementDisplayed(headerFooterEl, false);
+ // Expand it.
+ checkSectionVisible(moreSettingsDiv, true);
+ moreSettingsDiv.click();
+
+ checkElementDisplayed(headerFooterEl, true);
+
+ printPreview.printTicketStore_.marginsType.updateValue(
+ print_preview.ticket_items.MarginsType.Value.CUSTOM);
+ printPreview.printTicketStore_.customMargins.updateValue(
+ new print_preview.Margins(0, 0, 0, 0));
+
+ checkElementDisplayed(headerFooterEl, false);
+
+ this.waitForUI();
+});
+
+// Page layout has half-inch margins. Show header and footer option.
+TEST_F('PrintPreviewWebUIAsyncTest', 'PageLayoutHasMarginsShowHeaderFooter',
+ function() {
+ var capsSetEvent =
+ new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
+ capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
+ this.nativeLayer_.dispatchEvent(capsSetEvent);
+
+ var moreSettingsDiv = $('more-settings');
+ var otherOptionsDiv = $('other-options-settings');
+ var headerFooterEl =
+ otherOptionsDiv.querySelector('.header-footer-container');
+
+ // Check that options are collapsed (section is visible, because duplex is
+ // available).
+ checkSectionVisible(otherOptionsDiv, true);
+ checkElementDisplayed(headerFooterEl, false);
+ // Expand it.
+ checkSectionVisible(moreSettingsDiv, true);
+ moreSettingsDiv.click();
+
+ checkElementDisplayed(headerFooterEl, true);
+
+ printPreview.printTicketStore_.marginsType.updateValue(
+ print_preview.ticket_items.MarginsType.Value.CUSTOM);
+ printPreview.printTicketStore_.customMargins.updateValue(
+ new print_preview.Margins(36, 36, 36, 36));
+
+ checkElementDisplayed(headerFooterEl, true);
+
+ this.waitForUI();
+});
+
+// Page layout has zero top and bottom margins. Hide header and footer option.
+TEST_F('PrintPreviewWebUIAsyncTest',
+ 'ZeroTopAndBottomMarginsHideHeaderFooter',
+ function() {
+ var capsSetEvent =
+ new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
+ capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
+ this.nativeLayer_.dispatchEvent(capsSetEvent);
+
+ var moreSettingsDiv = $('more-settings');
+ var otherOptionsDiv = $('other-options-settings');
+ var headerFooterEl =
+ otherOptionsDiv.querySelector('.header-footer-container');
+
+ // Check that options are collapsed (section is visible, because duplex is
+ // available).
+ checkSectionVisible(otherOptionsDiv, true);
+ checkElementDisplayed(headerFooterEl, false);
+ // Expand it.
+ checkSectionVisible(moreSettingsDiv, true);
+ moreSettingsDiv.click();
+
+ checkElementDisplayed(headerFooterEl, true);
+
+ printPreview.printTicketStore_.marginsType.updateValue(
+ print_preview.ticket_items.MarginsType.Value.CUSTOM);
+ printPreview.printTicketStore_.customMargins.updateValue(
+ new print_preview.Margins(0, 36, 0, 36));
+
+ checkElementDisplayed(headerFooterEl, false);
+
+ this.waitForUI();
+});
+
+// Page layout has zero top and half-inch bottom margin. Show header and footer
+// option.
+TEST_F('PrintPreviewWebUIAsyncTest',
+ 'ZeroTopAndNonZeroBottomMarginShowHeaderFooter',
+ function() {
+ var capsSetEvent =
+ new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
+ capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
+ this.nativeLayer_.dispatchEvent(capsSetEvent);
+
+ var moreSettingsDiv = $('more-settings');
+ var otherOptionsDiv = $('other-options-settings');
+ var headerFooterEl =
+ otherOptionsDiv.querySelector('.header-footer-container');
+
+ // Check that options are collapsed (section is visible, because duplex is
+ // available).
+ checkSectionVisible(otherOptionsDiv, true);
+ checkElementDisplayed(headerFooterEl, false);
+ // Expand it.
+ checkSectionVisible(moreSettingsDiv, true);
+ moreSettingsDiv.click();
+
+ checkElementDisplayed(headerFooterEl, true);
+
+ printPreview.printTicketStore_.marginsType.updateValue(
+ print_preview.ticket_items.MarginsType.Value.CUSTOM);
+ printPreview.printTicketStore_.customMargins.updateValue(
+ new print_preview.Margins(0, 36, 36, 36));
+
+ checkElementDisplayed(headerFooterEl, true);
+
+ this.waitForUI();
+});
+
+// Test to verify that duplex settings are set according to the printer
+// capabilities.
+TEST_F('PrintPreviewWebUIAsyncTest', 'TestDuplexSettingsFalse', function() {
+ var moreSettingsDiv = $('more-settings');
+ var otherOptionsDiv = $('other-options-settings');
+ var duplexDiv = otherOptionsDiv.querySelector('.duplex-container');
+
+ var capsSetEvent =
+ new Event(print_preview.NativeLayer.EventType.CAPABILITIES_SET);
+ capsSetEvent.settingsInfo = getCddTemplate("FooDevice");
+ delete capsSetEvent.settingsInfo.capabilities.printer.duplex;
+ this.nativeLayer_.dispatchEvent(capsSetEvent);
+
+ // Check that it is collapsed.
+ checkSectionVisible(otherOptionsDiv, false);
+ // Expand it.
+ checkSectionVisible(moreSettingsDiv, true);
+ moreSettingsDiv.click();
+ // Now it should be visible.
+ checkSectionVisible(otherOptionsDiv, true);
+ expectTrue(duplexDiv.hidden);
+
+ this.waitForUI();
+});
+
Dan Beam 2014/10/20 20:15:25 nit: remove \n
hcarmona 2014/10/21 01:07:18 Acknowledged.
« chrome/test/data/webui/print_preview.h ('K') | « chrome/test/data/webui/print_preview.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698