- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
79 lines
5.3 KiB
JavaScript
79 lines
5.3 KiB
JavaScript
"use strict";
|
|
|
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
var _metadata2 = _interopRequireDefault(require("../metadata.js"));
|
|
var _metadataMax = _interopRequireDefault(require("../../metadata.max.json"));
|
|
var _metadataMin = _interopRequireDefault(require("../../test/metadata/1.0.0/metadata.min.json"));
|
|
var _checkNumberLength = _interopRequireWildcard(require("./checkNumberLength.js"));
|
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
describe('checkNumberLength', function () {
|
|
it('should check phone number length', function () {
|
|
// Too short.
|
|
expect(checkNumberLengthWithCountry('800555353', 'RU', 'FIXED_LINE')).to.equal('TOO_SHORT');
|
|
// Normal.
|
|
expect(checkNumberLengthWithCountry('8005553535', 'RU', 'FIXED_LINE')).to.equal('IS_POSSIBLE');
|
|
// Too long.
|
|
expect(checkNumberLengthWithCountry('80055535355', 'RU', 'FIXED_LINE')).to.equal('TOO_LONG');
|
|
|
|
// No such type.
|
|
expect(checkNumberLengthWithCountry('169454850', 'AC', 'VOIP')).to.equal('INVALID_LENGTH');
|
|
// No such possible length.
|
|
expect(checkNumberLengthWithCountry('1694548', 'AD', undefined)).to.equal('INVALID_LENGTH');
|
|
|
|
// FIXED_LINE_OR_MOBILE
|
|
expect(checkNumberLengthWithCountry('1694548', 'AD', 'FIXED_LINE_OR_MOBILE')).to.equal('INVALID_LENGTH');
|
|
// No mobile phones.
|
|
expect(checkNumberLengthWithCountry('8123', 'TA', 'FIXED_LINE_OR_MOBILE')).to.equal('IS_POSSIBLE');
|
|
// No "possible lengths" for "mobile".
|
|
expect(checkNumberLengthWithCountry('81234567', 'SZ', 'FIXED_LINE_OR_MOBILE')).to.equal('IS_POSSIBLE');
|
|
});
|
|
it('should check phone number length (no `country` specified)', function () {
|
|
// Too short.
|
|
expect(checkNumberLengthWithoutCountry('800555353', 'RU', 'FIXED_LINE')).to.equal('TOO_SHORT');
|
|
// Normal.
|
|
expect(checkNumberLengthWithoutCountry('8005553535', 'RU', 'FIXED_LINE')).to.equal('IS_POSSIBLE');
|
|
// Too long.
|
|
expect(checkNumberLengthWithoutCountry('80055535355', 'RU', 'FIXED_LINE')).to.equal('TOO_LONG');
|
|
|
|
// No such type.
|
|
expect(checkNumberLengthWithoutCountry('169454850', 'AC', 'VOIP')).to.equal('INVALID_LENGTH');
|
|
// No such possible length.
|
|
expect(checkNumberLengthWithoutCountry('1694548', 'AD', undefined)).to.equal('INVALID_LENGTH');
|
|
|
|
// FIXED_LINE_OR_MOBILE
|
|
expect(checkNumberLengthWithoutCountry('1694548', 'AD', 'FIXED_LINE_OR_MOBILE')).to.equal('INVALID_LENGTH');
|
|
// No mobile phones.
|
|
expect(checkNumberLengthWithoutCountry('8123', 'TA', 'FIXED_LINE_OR_MOBILE')).to.equal('IS_POSSIBLE');
|
|
// No "possible lengths" for "mobile".
|
|
expect(checkNumberLengthWithoutCountry('81234567', 'SZ', 'FIXED_LINE_OR_MOBILE')).to.equal('IS_POSSIBLE');
|
|
});
|
|
it('should work for old metadata', function () {
|
|
var _oldMetadata = new _metadata2["default"](_metadataMin["default"]);
|
|
_oldMetadata.country('RU');
|
|
expect((0, _checkNumberLength.checkNumberLengthForType)('8005553535', 'RU', 'FIXED_LINE', _oldMetadata)).to.equal('IS_POSSIBLE');
|
|
});
|
|
it('should work for old metadata (no `country` specified)', function () {
|
|
var _oldMetadata = new _metadata2["default"](_metadataMin["default"]);
|
|
_oldMetadata.country('RU');
|
|
expect((0, _checkNumberLength.checkNumberLengthForType)('8005553535', undefined, 'FIXED_LINE', _oldMetadata)).to.equal('IS_POSSIBLE');
|
|
});
|
|
it('should handle the cases when multiple countries share the same country calling code and a phone number is possible in non-"main" country and is not possible in the "main" country', function () {
|
|
var _metadata = new _metadata2["default"](_metadataMax["default"]);
|
|
_metadata.country('US');
|
|
expect((0, _checkNumberLength["default"])('3100000', undefined, _metadata)).to.equal('TOO_SHORT');
|
|
expect((0, _checkNumberLength["default"])('3100000', 'US', _metadata)).to.equal('TOO_SHORT');
|
|
expect((0, _checkNumberLength["default"])('3100000', 'CA', _metadata)).to.equal('IS_POSSIBLE');
|
|
});
|
|
});
|
|
function checkNumberLengthWithCountry(number, country, type) {
|
|
var _metadata = new _metadata2["default"](_metadataMax["default"]);
|
|
_metadata.country(country);
|
|
return (0, _checkNumberLength.checkNumberLengthForType)(number, country, type, _metadata);
|
|
}
|
|
function checkNumberLengthWithoutCountry(number, country, type) {
|
|
var _metadata = new _metadata2["default"](_metadataMax["default"]);
|
|
_metadata.country(country);
|
|
return (0, _checkNumberLength.checkNumberLengthForType)(number, undefined, type, _metadata);
|
|
}
|
|
//# sourceMappingURL=checkNumberLength.test.js.map
|