私は AngularJS を使用してアプリケーションを構築しており、現在、アプリケーションのテスト ケースを開発しています。このようなサービスがあるとします。
var app = angular.module('MyApp')
app.factory('SessionService', function () {
return {
get: function (key) {
return sessionStorage.getItem(key);
},
set: function (key, val) {
return sessionStorage.setItem(key, val);
},
unset: function (key) {
return sessionStorage.removeItem(key);
}
};
});
このようなサービスのテスト ケースを記述できますか。
beforeEach(module('MyApp'));
describe('Testing Service : SessionService', function (SessionService) {
var session, fetchedSession, removeSession, setSession;
beforeEach(function () {
SessionService = {
get: function (key) {
return sessionStorage.getItem(key);
},
set: function (key, val) {
return sessionStorage.setItem(key, val);
},
unset: function (key) {
return sessionStorage.removeItem(key);
}
};
spyOn(SessionService, 'get').andCallThrough();
spyOn(SessionService, 'set').andCallThrough();
spyOn(SessionService, 'unset').andCallThrough();
setSession = SessionService.set('authenticated', true);
fetchedSession = SessionService.get('authenticated');
removeSession = SessionService.unset('authenticated');
});
describe('SessionService', function () {
it('tracks that the spy was called', function () {
expect(SessionService.get).toHaveBeenCalled();
});
it('tracks all the arguments used to call the get function', function () {
expect(SessionService.get).toHaveBeenCalledWith('authenticated');
});
//Rest of the Test Cases
});
});
このテスト ケースの開発には Jasmine のスパイ メソッドを使用しています。大丈夫ですか、それとも間違っていますか?