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.
80 lines
3.0 KiB
JavaScript
80 lines
3.0 KiB
JavaScript
"use strict";
|
|
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 });
|
|
exports.parseList = parseList;
|
|
const dosParser = __importStar(require("./parseListDOS"));
|
|
const unixParser = __importStar(require("./parseListUnix"));
|
|
const mlsdParser = __importStar(require("./parseListMLSD"));
|
|
/**
|
|
* Available directory listing parsers. These are candidates that will be tested
|
|
* in the order presented. The first candidate will be used to parse the whole list.
|
|
*/
|
|
const availableParsers = [
|
|
dosParser,
|
|
unixParser,
|
|
mlsdParser // Keep MLSD last, may accept filename only
|
|
];
|
|
function firstCompatibleParser(line, parsers) {
|
|
return parsers.find(parser => parser.testLine(line) === true);
|
|
}
|
|
function isNotBlank(str) {
|
|
return str.trim() !== "";
|
|
}
|
|
function isNotMeta(str) {
|
|
return !str.startsWith("total");
|
|
}
|
|
const REGEX_NEWLINE = /\r?\n/;
|
|
/**
|
|
* Parse raw directory listing.
|
|
*/
|
|
function parseList(rawList) {
|
|
const lines = rawList
|
|
.split(REGEX_NEWLINE)
|
|
.filter(isNotBlank)
|
|
.filter(isNotMeta);
|
|
if (lines.length === 0) {
|
|
return [];
|
|
}
|
|
const testLine = lines[lines.length - 1];
|
|
const parser = firstCompatibleParser(testLine, availableParsers);
|
|
if (!parser) {
|
|
throw new Error("This library only supports MLSD, Unix- or DOS-style directory listing. Your FTP server seems to be using another format. You can see the transmitted listing when setting `client.ftp.verbose = true`. You can then provide a custom parser to `client.parseList`, see the documentation for details.");
|
|
}
|
|
const files = lines
|
|
.map(parser.parseLine)
|
|
.filter((info) => info !== undefined);
|
|
return parser.transformList(files);
|
|
}
|