반응형
$location 서비스를 사용하여 angularjs 컨트롤러를 테스트하는 방법
show 기능을 테스트하는 간단한 유닛 테스트를 작성하려고 합니다.
다음의 에러가 표시됩니다.
TypeError: Object #<Object> has no method 'show'
인 것 같다$rootScope
컨트롤러의 범위가 아닌가요?
컨트롤러는 다음과 같습니다.
function OpponentsCtrl($scope, $location) {
$scope.show = function(url) {
$location.path(url);
}
}
OpponentsCtrl.$inject = ['$scope', '$location'];
컨트롤러 유닛 테스트를 다음에 나타냅니다.
describe('OpponentsCtrl', function() {
beforeEach(module(function($provide) {
$provide.factory('OpponentsCtrl', function($location){
// whatever it does...
});
}));
it('should change location when setting it via show function', inject(function($location, $rootScope, OpponentsCtrl) {
$location.path('/new/path');
$rootScope.$apply();
expect($location.path()).toBe('/new/path');
$rootScope.show('/test');
expect($location.path()).toBe('/test');
}));
});
이렇게 해서 제 시험이 잘 풀렸어요.
describe('OpponentsCtrl', function() {
var scope, rootScope, ctrl, location;
beforeEach(inject(function($location, $rootScope, $controller) {
location = $location;
rootScope = $rootScope;
scope = $rootScope.$new();
ctrl = $controller(OpponentsCtrl, {$scope: scope});
}));
it('should change location when setting it via show function', function() {
location.path('/new/path');
rootScope.$apply();
expect(location.path()).toBe('/new/path');
// test whatever the service should do...
scope.show('/test');
expect(location.path()).toBe('/test');
});
});
spyOn 기능을 사용하면 어떨까요?
describe('OpponentsCtrl', function() {
var location;
beforeEach(module(function($provide) {
$provide.factory('OpponentsCtrl', function($location){
location = $location;
});
}));
it('should change location when setting it via show function', inject(function() {
spyOn(location, 'path');
expect(location.path).toHaveBeenCalledWith('/new/path');
}));
});
이게 도움이 됐으면 좋겠네요!
유닛 테스트(통합이 아닌)이기 때문에 로케이션과 서비스를 시뮬레이트하는 것을 선호됩니다.
'use strict';
describe('flightController', function () {
var scope;
var searchService;
var location;
beforeEach(module('app'));
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
mockSearchService();
mockLocation();
createController($controller);
}));
it('changes location to month page', function () {
searchService.flightToUrl.and.returnValue('Spain/Ukraine/December/1');
scope.showMonth();
expect(location.url).toHaveBeenCalledWith('search/month/Spain/Ukraine/December/1');
});
function mockSearchService() {
searchService = jasmine.createSpyObj('searchService', ['flightToUrl']);
}
function mockLocation() {
location = jasmine.createSpyObj('location', ['url']);
}
function createController($controller) {
$controller('flightController', {
$scope: scope,
searchService: searchService,
$location: location
});
}
});
건배.
언급URL : https://stackoverflow.com/questions/13664144/how-to-unit-test-angularjs-controller-with-location-service
반응형
'programing' 카테고리의 다른 글
오류 'document'가 정의되지 않았습니다. eslint / React (0) | 2023.03.07 |
---|---|
제약 위반 변환 방법예외 500 오류에서 400개의 잘못된 요청까지? (0) | 2023.03.07 |
Oracle SQL 쿼리를 테스트하기 위한 온라인 데이터베이스? (0) | 2023.03.07 |
HTTPie를 사용하여 중첩된 JSON 개체 전송 (0) | 2023.03.07 |
Spring Boot의 JPA 저장소에 대해 "유형 검증 완료 없음" (0) | 2023.03.07 |