#javascript #jestjs
#javascript #jestjs
Вопрос:
Мне нужна помощь в подходе и в том, как мне реализовать тест на функции javascript, в которой есть циклы if внутри.
Мой код выглядит следующим образом :
function calculate(obj, buttonName) {
//When AC button is pressed, we will be displaying 0 on screen, so all states go to null.
if (buttonName === "AC") {
return {
result: null,
nextOperand: null,
operator: null
};
}
if (buttonName === ".") {
if (obj.nextOperand) {
//cant have more than one decimal point in a number, dont change anything
if (obj.nextOperand.includes(".")) {
return {};
}
//else append dot to the number.
return { nextOperand: obj.nextOperand "." };
}
//If the operand is pressed that directly starts with .
return { nextOperand: "0." };
}
}
Как мне написать тестовый пример для приведенного выше с помощью Jest
Ответ №1:
Вы могли бы просто просмотреть все случаи следующим образом:
describe('calculate', () => {
it('should return object with result, nextOperand, and operator as null if buttonName is "AC"', () => {
expect(calculate({}, "AC")).toEqual({
result: null,
nextOperand: null,
operator: null
});
});
it('should return empty object if buttonName is "." and object nextOperand contains a "."', () => {
expect(calculate({ nextOperand: ".5" }, ".")).toEqual({});
});
it('should return object with nextOperand appended with a "." if buttonName is "." and object nextOperand does not contain a "."', () => {
expect(calculate({ nextOperand: "60" }, ".")).toEqual({
nextOperand: "60."
});
});
it('should return object with nextOperand as 0." with a "." if buttonName is "." and object nextOperand does not exist', () => {
expect(calculate({}, ".")).toEqual({
nextOperand: "0."
});
});
});