Files
gerrit/polygerrit-ui/app/elements/shared/gr-js-api-interface/gr-gerrit_test.html
Tao Zhou fd41e5566f Move plugin loading related methods to PluginLoader.
Fixed all tests and added more tests to plugin loader.

Change-Id: I97cb3779117d9b29b40e1107e39d6d1c953fcfdf
2019-10-24 14:17:20 +00:00

101 lines
3.1 KiB
HTML

<!DOCTYPE html>
<!--
@license
Copyright (C) 2019 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-api-interface</title>
<script src="/test/common-test-setup.js"></script>
<script src="/bower_components/webcomponentsjs/custom-elements-es5-adapter.js"></script>
<script src="/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<script src="/bower_components/web-component-tester/browser.js"></script>
<link rel="import" href="../../../test/common-test-setup.html"/>
<link rel="import" href="gr-js-api-interface.html">
<script>void(0);</script>
<test-fixture id="basic">
<template>
<gr-js-api-interface></gr-js-api-interface>
</template>
</test-fixture>
<script>
suite('gr-gerrit tests', () => {
let element;
let sandbox;
let sendStub;
setup(() => {
this.clock = sinon.useFakeTimers();
sandbox = sinon.sandbox.create();
sendStub = sandbox.stub().returns(Promise.resolve({status: 200}));
stub('gr-rest-api-interface', {
getAccount() {
return Promise.resolve({name: 'Judy Hopps'});
},
send(...args) {
return sendStub(...args);
},
});
element = fixture('basic');
});
teardown(() => {
this.clock.restore();
sandbox.restore();
element._removeEventCallbacks();
Gerrit._testOnly_resetPlugins();
});
suite('proxy methods', () => {
test('Gerrit._isPluginEnabled proxy to pluginLoader', () => {
const stubFn = sandbox.stub();
sandbox.stub(
Gerrit._pluginLoader,
'isPluginEnabled',
(...args) => stubFn(...args)
);
Gerrit._isPluginEnabled('test_plugin');
assert.isTrue(stubFn.calledWith('test_plugin'));
});
test('Gerrit._isPluginLoaded proxy to pluginLoader', () => {
const stubFn = sandbox.stub();
sandbox.stub(
Gerrit._pluginLoader,
'isPluginLoaded',
(...args) => stubFn(...args)
);
Gerrit._isPluginLoaded('test_plugin');
assert.isTrue(stubFn.calledWith('test_plugin'));
});
test('Gerrit._isPluginPreloaded proxy to pluginLoader', () => {
const stubFn = sandbox.stub();
sandbox.stub(
Gerrit._pluginLoader,
'isPluginPreloaded',
(...args) => stubFn(...args)
);
Gerrit._isPluginPreloaded('test_plugin');
assert.isTrue(stubFn.calledWith('test_plugin'));
});
});
});
</script>