blob: 7bcafd21aac235e826e04b8283defa45aa589ca7 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/** @fileoverview Tests for shared Polymer elements. */
/** @const {string} Path to source root. */
const ROOT_PATH = '../../../../../';
// Polymer BrowserTest fixture.
GEN_INCLUDE(
[ROOT_PATH + 'chrome/test/data/webui/polymer_browser_test_base.js']);
/**
* Test fixture for shared Polymer elements.
* @constructor
* @extends {PolymerTest}
*/
function CrElementsBrowserTest() {}
CrElementsBrowserTest.prototype = {
__proto__: PolymerTest.prototype,
/** @override */
extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([
ROOT_PATH + 'ui/webui/resources/js/assert.js',
]),
/** @override */
get browsePreload() {
throw 'this is abstract and should be overriden by subclasses';
},
/** @override */
runAccessibilityChecks: true,
/** @override */
setUp: function() {
PolymerTest.prototype.setUp.call(this);
// We aren't loading the main document.
this.accessibilityAuditConfig.ignoreSelectors('humanLangMissing', 'html');
},
};
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsLazyRenderTest() {}
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
CrElementsLazyRenderTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/cr_lazy_render/cr_lazy_render.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat(
['cr_lazy_render_tests.js']),
};
TEST_F('CrElementsLazyRenderTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsProfileAvatarSelectorTest() {}
CrElementsProfileAvatarSelectorTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_profile_avatar_selector/' +
'cr_profile_avatar_selector.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_profile_avatar_selector_tests.js',
]),
};
TEST_F('CrElementsProfileAvatarSelectorTest', 'All', function() {
cr_profile_avatar_selector.registerTests();
mocha.grep(cr_profile_avatar_selector.TestNames.Basic).run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsSearchFieldTest() {}
CrElementsSearchFieldTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/cr_search_field/cr_search_field.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_search_field_tests.js',
]),
};
TEST_F('CrElementsSearchFieldTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsToolbarSearchFieldTest() {}
CrElementsToolbarSearchFieldTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/cr_toolbar/cr_toolbar_search_field.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_toolbar_search_field_tests.js',
]),
};
TEST_F('CrElementsToolbarSearchFieldTest', 'All', function() {
cr_toolbar_search_field.registerTests();
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsDrawerTest() {}
CrElementsDrawerTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_drawer/cr_drawer.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_drawer_tests.js',
]),
};
TEST_F('CrElementsDrawerTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsScrollableBehaviorTest() {}
CrElementsScrollableBehaviorTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_scrollable_behavior.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_scrollable_behavior_tests.js',
]),
};
TEST_F('CrElementsScrollableBehaviorTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsPolicyIndicatorTest() {}
CrElementsPolicyIndicatorTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/policy/cr_policy_indicator.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_policy_strings.js',
'cr_policy_indicator_tests.js',
]),
};
TEST_F('CrElementsPolicyIndicatorTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsPolicyIndicatorBehaviorTest() {}
CrElementsPolicyIndicatorBehaviorTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/policy/cr_policy_indicator_behavior.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_policy_strings.js',
'cr_policy_indicator_behavior_tests.js',
]),
};
TEST_F('CrElementsPolicyIndicatorBehaviorTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsPolicyPrefIndicatorTest() {}
CrElementsPolicyPrefIndicatorTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/policy/cr_policy_pref_indicator.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'settings_private_test_constants.js',
'cr_policy_strings.js',
'cr_policy_pref_indicator_tests.js',
]),
};
TEST_F('CrElementsPolicyPrefIndicatorTest', 'All', function() {
mocha.run();
});
GEN('#if defined(OS_CHROMEOS)');
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsPolicyNetworkIndicatorTest() {}
CrElementsPolicyNetworkIndicatorTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/policy/cr_policy_network_indicator.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_policy_strings.js',
'cr_policy_network_indicator_tests.js',
]),
};
TEST_F('CrElementsPolicyNetworkIndicatorTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsFingerprintProgressArcTest() {}
CrElementsFingerprintProgressArcTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/chromeos/fingerprint/' +
'cr_fingerprint_progress_arc.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'cr_fingerprint_progress_arc_tests.js',
]),
};
TEST_F('CrElementsFingerprintProgressArcTest', 'All', function() {
mocha.run();
});
GEN('#endif');
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsDialogTest() {}
CrElementsDialogTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_dialog/cr_dialog.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_dialog_test.js',
]),
};
TEST_F('CrElementsDialogTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsSliderTest() {}
CrElementsSliderTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_slider/cr_slider.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_slider_test.js',
]),
};
TEST_F('CrElementsSliderTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsToastTest() {}
CrElementsToastTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_toast/cr_toast.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
ROOT_PATH + 'chrome/test/data/webui/mock_timer.js',
'cr_toast_test.js',
]),
};
TEST_F('CrElementsToastTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsRadioButtonTest() {}
CrElementsRadioButtonTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/cr_radio_button/cr_radio_button.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_radio_button_test.js',
]),
};
TEST_F('CrElementsRadioButtonTest', 'All', function() {
mocha.run();
});
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsRadioGroupTest() {}
CrElementsRadioGroupTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload:
'chrome://resources/cr_elements/cr_radio_group/cr_radio_group.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_radio_group_test.js',
]),
};
TEST_F('CrElementsRadioGroupTest', 'All', function() {
mocha.run();
});
GEN('#if defined(OS_CHROMEOS)');
/**
* @constructor
* @extends {CrElementsBrowserTest}
*/
function CrElementsSearchableDropDownTest() {}
CrElementsSearchableDropDownTest.prototype = {
__proto__: CrElementsBrowserTest.prototype,
/** @override */
browsePreload: 'chrome://resources/cr_elements/cr_searchable_drop_down/' +
'cr_searchable_drop_down.html',
/** @override */
extraLibraries: CrElementsBrowserTest.prototype.extraLibraries.concat([
'../settings/test_util.js',
'cr_searchable_drop_down_tests.js',
]),
};
TEST_F('CrElementsSearchableDropDownTest', 'All', function() {
mocha.run();
});
GEN('#endif');
////////////////////////////////////////////////////////////////////////////////
// View Manager Tests
CrElementsViewManagerTest = class extends CrElementsBrowserTest {
/** @override */
get browsePreload() {
return 'chrome://resources/cr_elements/cr_view_manager/cr_view_manager.html';
}
/** @override */
get extraLibraries() {
return super.extraLibraries.concat([
'../extensions/test_util.js',
'cr_view_manager_test.js',
]);
}
/** @override */
get suiteName() {
return cr_view_manager_test.suiteName;
}
};
TEST_F('CrElementsViewManagerTest', 'VisibilityTest', function() {
runMochaTest(this.suiteName, cr_view_manager_test.TestNames.Visibility);
});
TEST_F('CrElementsViewManagerTest', 'EventFiringTest', function() {
runMochaTest(this.suiteName, cr_view_manager_test.TestNames.EventFiring);
});