Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Вопрос по тестированию #1

Open
ManginAlexander opened this issue Oct 20, 2012 · 1 comment
Open

Вопрос по тестированию #1

ManginAlexander opened this issue Oct 20, 2012 · 1 comment

Comments

@ManginAlexander
Copy link

Пусть у меня есть у объекта метод :
function foo() {
var currentDate = new Date();
.... что-то выбираем на основе текущего времени и возвращаем что- либо
}

Вопросы:

  1. Как изменить текущую дату (ну чтобы new Date() - всегда возвращала new Date("September 1, 2012 00:00:00")), чтобы тесты были не привязаны к текущей дате.
  2. Вероятно это невозможно, так как у js ограничены права на установление даты на машине пользователя. Тогда как поступать?
@azproduction
Copy link
Member

Переписать дату, конечно нельзя. Попробуй организовать процесс тестирования без new Date(), а скажем сделай функцию mockGetDateNow() которая вернет тебе твою дату. Если это не подходит, ты в крайнем случае можешь манкипатчнуть конструктор Date.

var realDate = Date;
Date = function () {
    return new realDate("September 1, 2012 00:00:00"); 
};

function restoreDate() {
   Date = realDate;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants