LaravelがJSONデータのみを提供するangularフロントエンドに対するAPIとして機能する既存のAngular/Laravelアプリがあります。 angularアプリをロードするページ、index.php
は、現在Laravelによって提供されています。そこから、Angularが引き継ぎます。
Karma/Jasmineを使い始めるのは非常に困難です。プロジェクトのルートディレクトリからkarma start
またはkarma start karma.conf.js
を使用してテストを実行すると、次のエラーが表示されます。
ReferenceError: module is not defined
完全な出力:
INFO [karma]: Karma v0.12.28 server started at http://localhost:9876/
INFO [launcher]: Starting browser Chrome
WARN [watcher]: Pattern "/Users/raph/coding/webroot/digitalocean/rugapp/public/rugapp/*.js" does not match any file.
INFO [Chrome 39.0.2171 (Mac OS X 10.9.5)]: Connected on socket 3OCUMp_xhrGtlGHwiosO with id 7897120
Chrome 39.0.2171 (Mac OS X 10.9.5) hello world encountered a declaration exception FAILED
ReferenceError: module is not defined
at Suite.<anonymous> (/Users/raph/coding/webroot/digitalocean/rugapp/tests/js/test.js:3:16)
at jasmineInterface.describe (/Users/raph/coding/webroot/digitalocean/rugapp/node_modules/karma-jasmine/lib/boot.js:59:18)
at /Users/raph/coding/webroot/digitalocean/rugapp/tests/js/test.js:1:1
Chrome 39.0.2171 (Mac OS X 10.9.5): Executed 2 of 2 (1 FAILED) (0.005 secs / 0.003 secs)
ただし、chromeブラウザは起動し、次が表示されます。
私のkarma.conf.js
ファイルは次のとおりです。
// Karma configuration
// Generated on Mon Dec 22 2014 18:13:09 GMT-0500 (EST)
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: 'public/rugapp/',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'*.html',
'**/*.js',
'../../tests/js/test.js',
'../../tests/js/angular/angular-mocks.js'
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false
});
};
私のpackage.json
ファイルは次のとおりです。
{
"devDependencies": {
"gulp": "^3.8.8",
"karma": "^0.12.28",
"karma-chrome-launcher": "^0.1.7",
"karma-jasmine": "^0.3.2",
"laravel-elixir": "*"
}
}
test.js
describe("hello world", function() {
var CreateInvoiceController;
beforeEach(module("MobileAngularUiExamples"));
beforeEach(inject(function($controller) {
CreateInvoiceController = $controller("CreateInvoiceController");
}));
describe("CreateInvoiceController", function() {
it("Should say hello", function() {
expect(CreateInvoiceController.message).toBe("Hello");
});
});
});
describe("true", function() {
it("Should be true", function() {
expect(true).toBeTruthy();
});
});
どんな助けでも大いにいただければ幸いです。
おそらくこれは誰かを助けるでしょう。
私にとっての解決策は、テスト前にangular-mocks.js
がロードされていることを確認することでした。よくわからない場合は、次のセクションの下のkarma.conf.js
で順序を制御します。
// list of files / patterns to load in the browser
files: [
// include files / patterns here
次に、テストを取得してangularアプリを実際にロードするには、以下を実行する必要がありました。
describe("hello world", function() {
var $rootScope;
var $controller;
beforeEach(module("YourAppNameHere"));
beforeEach(inject(function($injector) {
$rootScope = $injector.get('$rootScope');
$controller = $injector.get('$controller');
$scope = $rootScope.$new();
}));
beforeEach(inject(function($controller) {
YourControllerHere = $controller("YourControllerHere");
}));
it("Should say hello", function() {
expect(YourControllerHere.message).toBe("Hello");
});
});
そしてコントローラーで、
app.controller('YourControllerHere', function() {
this.message = "Hello";
});
また、別の方法:
describe("YourControllerHere", function() {
var $scope;
var controller;
beforeEach(function() {
module("YourAppNameHere");
inject(function(_$rootScope_, $controller) {
$scope = _$rootScope_.$new();
controller = $controller("YourControllerHere", {$scope: $scope});
});
});
it("Should say hello", function() {
expect(controller.message).toBe("Hello");
});
});
テストをお楽しみください!
このエラーは、angularがモジュールを挿入できなかったことを意味します。ほとんどの場合、これはスクリプトファイルへの参照がないために発生します。この場合、すべてのスクリプトファイルがkarmaの[files]構成で定義されていることを確認してください。スクリプトフォルダーがネストされた構造を持っている場合は、そのようにリストするようにしてください。例えば:
Scripts/Controllers/One/1.js
Scripts/Controllers/One/2.js
karma.conf.js> files asのようにリストできます:
Scripts/Controllers/**/*.js
将来の検索者のためにこれを残してください。
Karmaを使用せずに(またはplunkrまたはjsfiddle ectで)ブラウザーでangular単体テストを実行している場合は、
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.0/angular.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.0/angular-route.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.0/angular-cookies.js"></script>
<!-- The Mocha Setup goes BETWEEN angular and angular-mocks -->
<script>
mocha.setup({
"ui": "bdd",
"reporter": "html"
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.0/angular-mocks.js"></script>
<script src="myApp.js"></script>
<script src="myTest.js"></script> <!-- test is last -->
モカのセットアップはangularと角モックの間に行きます
同様のメッセージが表示され、angular-mocks
ファイルパスが間違っていることがわかりました。 npmを使用してangular
およびangular-mocks
をインストールし、Karma.conf.js
で次のようにパスを誤って指定しました。
files: [
'node_modules/angular/angular.js',
'node_modules/angular/angular-mocks.js',
'scripts/*.js',
'tests/*.js'
],
angular-mocks.js
のパスを次のように指定する必要があります。
'node_modules/angular-mocks/angular-mocks.js'
非常に単純なエラーですが、AngularJSの単体テストを始めたばかりで、どこを探すべきかわからない場合は、見つけるのに時間がかかります。