【发布时间】:2014-06-19 18:10:16
【问题描述】:
您好,我正在尝试为一个名为 daterangecontroller 的控制器编写一些代码,该控制器调用一个服务来为它提供一些开始和结束日期的值(这些是日历小部件的一部分)。
日期范围服务提供开始日期和结束日期的默认值。然后控制器会监视开始日期和结束日期模型的变化。当发生更改时,它会调用服务来更新最终由另一个服务调用的日期范围间隔。
如果出现以下错误,我很难理解为什么这种情况会失败:
Chrome 35.0.1916 (Mac OS X 10.9.2) Controller: dateRangeCtrl default start date loads as 8 days ago FAILED
Expected Date(Wed Jun 11 2014 11:04:11 GMT-0700 (PDT)) to be Date(Wed Jun 11 2014 11:04:11 GMT-0700 (PDT)).
Error: Expected Date(Wed Jun 11 2014 11:04:11 GMT-0700 (PDT)) to be Date(Wed Jun 11 2014 11:04:11 GMT-0700 (PDT)).
at null.<anonymous> (/Users/test/client/spec/controllers/dateRangeTest.js:32:28)
这是我的代码的相关部分。
控制器:
angular.module("vizApp").controller("DaterangeCtrl", function ($rootScope, $scope, DateRangeService) {
"use strict";
// Dates to fill in the calendar widget
var dates_current_interval = DateRangeService.giveCurrentInterval();
var dates_array = dates_current_interval.split("/");
$scope.startDate = new Date(dates_array[0]);
$scope.endDate = new Date (dates_array[1]);
var dateRange = {};
// this model watches for changes in the "from" calendar section
$scope.$watch("startDate", function (newVal, oldVal, scope) {
if (newVal !== oldVal && newVal !== null && $scope.startDate) {
dateRange.start = new Date($scope.startDate);
dateRange.end = new Date($scope.endDate);
return DateRangeService.updateDateInterval(dateRange);
}
});
// this model watches for changes in the "to" calendar section
$scope.$watch("endDate", function (newVal, oldVal, scope) {
if (newVal !== oldVal && newVal !== null && $scope.startDate) {
dateRange.start = new Date($scope.startDate);
dateRange.end = new Date($scope.endDate);
return DateRangeService.updateDateInterval(dateRange);
}
});
});
还有服务
angular.module("vizApp").factory("DateRangeService", [ "$rootScope", function () {
"use strict";
return{
dateInterval: null,
/**
*
* @param : none
* returns either a default to fill in the input boxes or the updated dateInterval
*
*/
giveCurrentInterval: function giveCurrentInterval(){
if (this.dateInterval === null){
var startDate = new Date();
startDate.setDate(startDate.getDate() - 8);
var endDate = new Date();
var dateFill = startDate.toISOString() + "/" + endDate.toISOString();
return dateFill;
}
else{
return this.dateInterval;
}
},
/**
*
* @param dateRange : the date range passed in from the model being watched
* returns the new dateInterval
*
*
*/
updateDateInterval: function updateDateInterval(dateRange){
this.dateInterval = dateRange.start.toISOString() + "/" + dateRange.end.toISOString();
return this.dateInterval;
}
};
}]);
更新:这是茉莉花代码
"use strict";
describe("Controller: dateRangeCtrl", function () {
var scope, DateRangeController, httpBackend;
//load the controller's module
beforeEach(module('vizApp'));
beforeEach(function () {
angular.mock.inject(function ($injector) {
httpBackend = $injector.get("$httpBackend");
});
});
//initialize the controller and a mock scope
beforeEach(inject(function($controller, $rootScope) {
// create a new child scope
scope = $rootScope.$new();
//create a new instance of date range controller
DateRangeController = $controller('DaterangeCtrl', { $scope : scope });
}));
it('default start date loads as 8 days ago', function(){
var mockStartDate = new Date();
mockStartDate.setDate(mockStartDate.getDate() - 8);
httpBackend.expectGET('partials/landing.html');
httpBackend.whenGET('partials/landing.html').respond(200);
expect(scope.startDate).toBe(mockStartDate);
});
it('changes date range when start date is changed', function(){
var mockStartDate2 = new Date();
mockStartDate2.setDate(mockStartDate2.getDate() - 10);
httpBackend.expectGET('partials/landing.html');
httpBackend.whenGET('partials/landing.html').respond(200);
scope.$apply(function () {
scope.startDate = mockStartDate2;
});
expect(scope.startDate).toBe(mockStartDate2);
});
});
【问题讨论】:
-
你能发布 Jasmine 代码吗?
-
是的,抱歉忘记了..在更新中^^^^
标签: javascript unit-testing jasmine karma-runner karma-jasmine