blob: 74e98ba72f7fb9fc6ab206d40b07bb161882a005 [file] [log] [blame]
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import '../../../test/common-test-setup-karma.js';
import '../../change/gr-reply-dialog/gr-reply-dialog.js';
import {getAppContext} from '../../../services/app-context.js';
import {stubRestApi} from '../../../test/test-utils.js';
import {PluginApi} from '../../../api/plugin.js';
import {ReportingService} from '../../../services/gr-reporting/gr-reporting.js';
import {ReportingPluginApi} from '../../../api/reporting.js';
suite('gr-reporting-js-api tests', () => {
let plugin: PluginApi;
let reportingService: ReportingService;
setup(() => {
stubRestApi('getAccount').returns(Promise.resolve(undefined));
reportingService = getAppContext().reportingService;
});
suite('early init', () => {
let reporting: ReportingPluginApi;
setup(() => {
window.Gerrit.install(
p => {
plugin = p;
},
'0.1',
'http://test.com/plugins/testplugin/static/test.js'
);
reporting = plugin.reporting();
});
test('redirect reportInteraction call to reportingService', () => {
const spy = sinon.spy(reportingService, 'reportPluginInteractionLog');
reporting.reportInteraction('test', {});
assert.isTrue(spy.called);
assert.equal(spy.lastCall.args[0], 'testplugin-test');
assert.deepEqual(spy.lastCall.args[1], {});
});
test('redirect reportLifeCycle call to reportingService', () => {
const spy = sinon.spy(reportingService, 'reportPluginLifeCycleLog');
reporting.reportLifeCycle('test', {});
assert.isTrue(spy.called);
assert.equal(spy.lastCall.args[0], 'testplugin-test');
assert.deepEqual(spy.lastCall.args[1], {});
});
});
});