60e2149072
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date) - Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class - Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting - Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states - Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions - Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares) - Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline - Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements - Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations - Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary - Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds All tests follow AAA pattern and use data-testid selectors matching Angular version. Total: 245 tests across 10 feature suites.
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
import * as C from './constant';
|
|
|
|
var padStart = function padStart(string, length, pad) {
|
|
var s = String(string);
|
|
if (!s || s.length >= length) return string;
|
|
return "" + Array(length + 1 - s.length).join(pad) + string;
|
|
};
|
|
|
|
var padZoneStr = function padZoneStr(instance) {
|
|
var negMinutes = -instance.utcOffset();
|
|
var minutes = Math.abs(negMinutes);
|
|
var hourOffset = Math.floor(minutes / 60);
|
|
var minuteOffset = minutes % 60;
|
|
return "" + (negMinutes <= 0 ? '+' : '-') + padStart(hourOffset, 2, '0') + ":" + padStart(minuteOffset, 2, '0');
|
|
};
|
|
|
|
var monthDiff = function monthDiff(a, b) {
|
|
// function from moment.js in order to keep the same result
|
|
if (a.date() < b.date()) return -monthDiff(b, a);
|
|
var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month());
|
|
var anchor = a.clone().add(wholeMonthDiff, C.M);
|
|
var c = b - anchor < 0;
|
|
var anchor2 = a.clone().add(wholeMonthDiff + (c ? -1 : 1), C.M);
|
|
return +(-(wholeMonthDiff + (b - anchor) / (c ? anchor - anchor2 : anchor2 - anchor)) || 0);
|
|
};
|
|
|
|
var absFloor = function absFloor(n) {
|
|
return n < 0 ? Math.ceil(n) || 0 : Math.floor(n);
|
|
};
|
|
|
|
var prettyUnit = function prettyUnit(u) {
|
|
var special = {
|
|
M: C.M,
|
|
y: C.Y,
|
|
w: C.W,
|
|
d: C.D,
|
|
D: C.DATE,
|
|
h: C.H,
|
|
m: C.MIN,
|
|
s: C.S,
|
|
ms: C.MS,
|
|
Q: C.Q
|
|
};
|
|
return special[u] || String(u || '').toLowerCase().replace(/s$/, '');
|
|
};
|
|
|
|
var isUndefined = function isUndefined(s) {
|
|
return s === undefined;
|
|
};
|
|
|
|
export default {
|
|
s: padStart,
|
|
z: padZoneStr,
|
|
m: monthDiff,
|
|
a: absFloor,
|
|
p: prettyUnit,
|
|
u: isUndefined
|
|
}; |