mirror of
https://github.com/zotero/zotero.git
synced 2026-08-28 05:25:31 +00:00
38 lines
915 B
JavaScript
38 lines
915 B
JavaScript
"use strict";
|
|
|
|
describe("MacOS Integration Server", function () {
|
|
var serverURL;
|
|
|
|
before(function* () {
|
|
this.timeout(20000);
|
|
yield resetDB({
|
|
thisArg: this,
|
|
skipBundledFiles: true
|
|
});
|
|
|
|
serverURL = `http://127.0.0.1:${Zotero.Server.port}/integration`;
|
|
});
|
|
|
|
describe('/integration/macWordCommand', function () {
|
|
it('should call Integration.execCommand with passed parameters', async function () {
|
|
let stub = sinon.stub(Zotero.Integration, 'execCommand');
|
|
try {
|
|
await Zotero.HTTP.request(
|
|
'GET',
|
|
`${serverURL}/macWordCommand?agent=httpTest&command=httpTestCommand&document=docName&templateVersion=-1`,
|
|
{
|
|
headers: {
|
|
'User-Agent': 'MacWord2016'
|
|
}
|
|
}
|
|
);
|
|
|
|
assert.isTrue(stub.calledOnce);
|
|
assert.deepEqual(stub.firstCall.args, ['httpTest', 'httpTestCommand', 'docName', '-1']);
|
|
}
|
|
finally {
|
|
stub.restore();
|
|
}
|
|
});
|
|
});
|
|
});
|