Files
gerrit/polygerrit-ui/app/elements/plugins/gr-plugin-host/gr-plugin-host_test.html
Viktar Donich 29e1ce5e84 Collection of prospective test flake fixes
Potentially related:
https://github.com/Polymer/web-component-tester/issues/505

Bug: Issue 5792
Change-Id: I9ab6e8e40d9811dd52906335426764c052907609
2017-03-30 13:46:58 -07:00

68 lines
2.0 KiB
HTML

<!DOCTYPE html>
<!--
Copyright (C) 2017 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>gr-plugin-host</title>
<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="../../../bower_components/web-component-tester/browser.js"></script>
<link rel="import" href="gr-plugin-host.html">
<test-fixture id="basic">
<template>
<gr-plugin-host></gr-plugin-host>
</template>
</test-fixture>
<script>
suite('gr-diff tests', function() {
var element;
var sandbox;
setup(function() {
element = fixture('basic');
sandbox = sinon.sandbox.create();
sandbox.stub(document.body, 'appendChild');
sandbox.stub(element, 'importHref');
});
teardown(function() {
sandbox.restore();
});
test('counts plugins', function() {
sandbox.stub(Gerrit, '_setPluginsCount');
element.config = {
html_resource_paths: ['foo/bar', 'baz'],
js_resource_paths: ['42'],
};
assert.isTrue(Gerrit._setPluginsCount.calledWith(3));
});
test('imports html plugins from config', function() {
element.config = {
html_resource_paths: ['foo/bar', 'baz'],
};
assert.isTrue(element.importHref.calledWith(
'/foo/bar', null, Gerrit._pluginInstalled, true));
assert.isTrue(element.importHref.calledWith(
'/baz', null, Gerrit._pluginInstalled, true));
});
});
</script>