ユーザーがボタンをクリックしたとき、またはイベントがトリガーされてこの関数が自動的に呼び出されたときに、サービスのステータスを取得する関数がスコープにあります。
これは私が使用しているコントローラーで定義された私の関数です:
$scope.getStatus = function() {
$http({method: 'GET', url: config.entrypoint + config.api + '/outbound/service/' + $scope.serviceId})
.success(function(data) {
$scope.errorMessage = '';
$scope.serviceAllGood = data;
})
.error(function() {
$scope.serviceAllGood = '';
$scope.errorMessage = 'We are experiencing problems retrieving your service status.';
});
}
単体テストは次のように行われます。
describe('SendServiceCtrl', function(){
var scope, ctrl, $httpBackend, configuration;
beforeEach(function () {
module('papi', 'ngUpload');
});
beforeEach(inject(function(_$httpBackend_, $rootScope, $controller, config) {
configuration = config;
$httpBackend = _$httpBackend_;
$httpBackend.expectGET(configuration.entrypoint + configuration.api + "/user/outboundstatus/").respond(200, {"meta":{"apiVersion":"0.1","code":200,"errors":null},"response":{"allowed":false}});
scope = $rootScope.$new();
ctrl = $controller('SendServiceCtrl', {$scope: scope});
}));
it('Should get the status', function() {
scope.serviceId = '09bb5943fa2881e1';
scope.getStatus();
$httpBackend.whenGET(configuration.entrypoint + configuration.api + '/outbound/service/' + scope.serviceId).respond(200, {"meta":{"apiVersion":"0.1","code":200,"errors":null}});
});
});
単体テストでは、同じコントローラーで他の$ httpBackendテストも行っていますが、それらはすべてスムーズに動作します。何が悪いのですか?
メソッドを呼び出すwhenGET
beforeを指定する必要があります。
it('Should get the status', function() {
scope.serviceId = '09bb5943fa2881e1';
$httpBackend.whenGET(configuration.entrypoint + configuration.api + '/outbound/service/' + scope.serviceId).respond(200, {"meta":{"apiVersion":"0.1","code":200,"errors":null}});
scope.getStatus();
});
リクエストの期待値を設定してから、リクエストをトリガーします。
お役に立てれば。