我的Angular应用程序的单元测试存在一些问题,该应用程序打算作为Outlook的外接程序。
代码本身运行正常,没有错误,但测试通常会失败。
我得到的错误如下:
ReferenceError: Office is not defined
ReferenceError: fabric is not defined
使用Office.js或Fabric的任何方法测试均失败。例如,如果某个方法如下:
public getName() {
this.item = Office.context.mailbox.item;
return this.item.from.displayName;
}
它将失败,并显示未定义办公室的错误。
Office和Fabric都是通过index.html文件添加到应用程序的:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Firefish Outlook Addin</title>
<base href="/AddinClient/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.min.css" />
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.components.min.css" />
<script src="assets/js/fabric.js"></script>
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/Office.js" type="text/javascript"></script>
</head>
<body>
<app-root></app-root>
</body>
</html>
尤其是在main.ts文件中初始化了办公室:
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './modules/app/app.module';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
Office.initialize = function () {
platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch(err => console.error(err));
};
我一直在网上寻找潜在的解决方案,但不幸的是找不到任何解决方案。我的Karma.conf.js文件如下:
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, '../coverage'),
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true
},
Files: ["https://appsforoffice.microsoft.com/lib/1/hosted/Office.js"],
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};
和我的tsconfig.spec.json文件如下:
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"types": [
"jasmine",
"node",
"@types/office-js"
]
},
"files": [
"test.ts",
"polyfills.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts",
"../node_modules/office-ui-fabric-js/src/components/Dropdown/Dropdown.ts",
"../node_modules/office-ui-fabric-js/src/components/Button/Button.ts",
"../node_modules/office-ui-fabric-js/src/components/TextField/TextField.ts",
"../node_modules/office-ui-fabric-js/src/components/RadioButton/RadioButton.ts",
"../node_modules/office-ui-fabric-js/src/components/Spinner/Spinner.ts",
"../node_modules/office-ui-fabric-js/src/components/ProgressIndicator/ProgressIndicator.ts"
]
}
所以我要为Office和Fabric文件添加必要的引用。
这是我需要创建Office和Fabric模拟的情况吗?
答案 0 :(得分:3)
所以我找到了解决此问题的方法。
对于fabric,因为我们在使用它的本地副本,所以我可以在测试部分的angular.json文件中添加对它的引用:
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.scss"
],
"scripts": ["src/assets/js/fabric.js"],
"assets": [
"src/assets"
]
}
}
对于Office问题,我在规范类中添加了以下内容来解决该问题:
const officeScript = 'https://appsforoffice.microsoft.com/lib/1/hosted/Office.js';
const node = document.createElement('script');
node.src = officeScript;
node.type = 'text/javascript';
node.async = false;
node.charset = 'utf-8';
document.getElementsByTagName('head')[0].appendChild(node);