step-sequence-generator
Version:
A step sequence generator for figure skating programs
91 lines (90 loc) • 4.77 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
const vitest_1 = require("vitest");
const Utils = __importStar(require("./utils"));
const utils_1 = require("./utils");
(0, vitest_1.describe)('Utils of StepTracker', () => {
(0, vitest_1.describe)('Coordinates', () => {
(0, vitest_1.describe)('createCoord', () => {
(0, vitest_1.it)('должен выбрасывать ошибку при аргументе х > 59', () => {
const inputNumber = 60;
const inputName = 'x';
(0, vitest_1.expect)(() => Utils.createCoord(inputName, inputNumber)).toThrowError(`${inputName.toUpperCase()} coordinate must be between 1 and 59. Got: ${inputNumber}`);
});
(0, vitest_1.it)('должен выбрасывать ошибку при аргументе y > 29', () => {
const inputNumber = 40;
const inputName = 'y';
(0, vitest_1.expect)(() => Utils.createCoord(inputName, inputNumber)).toThrowError(`${inputName.toUpperCase()} coordinate must be between 1 and 29. Got: ${inputNumber}`);
});
(0, vitest_1.it)('должен выбрасывать ошибку при аргументе х < 0', () => {
const inputNumber = 0;
const inputName = 'x';
(0, vitest_1.expect)(() => Utils.createCoord(inputName, inputNumber)).toThrowError(`${inputName.toUpperCase()} coordinate must be between 1 and 59. Got: ${inputNumber}`);
});
});
(0, vitest_1.describe)('createCoordinates', () => {
(0, vitest_1.it)('должен вызывать метод createCoord', () => {
const spy = vitest_1.vi.spyOn(Utils, 'createCoord');
(0, utils_1.createCoordinates)(45, 10);
(0, vitest_1.expect)(spy).toHaveBeenCalledTimes(2); // x и y
(0, vitest_1.expect)(spy).toHaveBeenCalledWith('x', 45);
(0, vitest_1.expect)(spy).toHaveBeenCalledWith('y', 10);
});
});
});
(0, vitest_1.describe)('VectorCursor', () => {
(0, vitest_1.describe)('createCursor', () => {
const argsList = [1, 0, -1];
vitest_1.it.each(argsList)('должен вернуть %s', (arg) => {
const result = (0, utils_1.createCursor)(arg);
(0, vitest_1.expect)(result).toEqual(arg);
});
(0, vitest_1.it)('должен выбросить ошибку при значении не из [1, 0, -1]', () => {
const input = 2;
(0, vitest_1.expect)(() => (0, utils_1.createCursor)(input)).toThrowError(`Не допустимое значение для cursor. Должно быть (1, 0, -1), получил ${input}`);
});
});
(0, vitest_1.describe)('createVectorCursor', () => {
(0, vitest_1.it)('должен вызывать метод createCursor', () => {
const spy = vitest_1.vi.spyOn(Utils, 'createCursor');
(0, utils_1.createVectorCursor)(1, 0);
(0, vitest_1.expect)(spy).toHaveBeenCalledTimes(2);
(0, vitest_1.expect)(spy).toHaveBeenCalledWith(1);
(0, vitest_1.expect)(spy).toHaveBeenCalledWith(0);
});
});
});
});