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.
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.testLine = testLine;
|
|
exports.parseLine = parseLine;
|
|
exports.transformList = transformList;
|
|
const FileInfo_1 = require("./FileInfo");
|
|
/**
|
|
* This parser is based on the FTP client library source code in Apache Commons Net provided
|
|
* under the Apache 2.0 license. It has been simplified and rewritten to better fit the Javascript language.
|
|
*
|
|
* https://github.com/apache/commons-net/blob/master/src/main/java/org/apache/commons/net/ftp/parser/NTFTPEntryParser.java
|
|
*/
|
|
const RE_LINE = new RegExp("(\\S+)\\s+(\\S+)\\s+" // MM-dd-yy whitespace hh:mma|kk:mm swallow trailing spaces
|
|
+ "(?:(<DIR>)|([0-9]+))\\s+" // <DIR> or ddddd swallow trailing spaces
|
|
+ "(\\S.*)" // First non-space followed by rest of line (name)
|
|
);
|
|
/**
|
|
* Returns true if a given line might be a DOS-style listing.
|
|
*
|
|
* - Example: `12-05-96 05:03PM <DIR> myDir`
|
|
*/
|
|
function testLine(line) {
|
|
return /^\d{2}/.test(line) && RE_LINE.test(line);
|
|
}
|
|
/**
|
|
* Parse a single line of a DOS-style directory listing.
|
|
*/
|
|
function parseLine(line) {
|
|
const groups = line.match(RE_LINE);
|
|
if (groups === null) {
|
|
return undefined;
|
|
}
|
|
const name = groups[5];
|
|
if (name === "." || name === "..") { // Ignore parent directory links
|
|
return undefined;
|
|
}
|
|
const file = new FileInfo_1.FileInfo(name);
|
|
const fileType = groups[3];
|
|
if (fileType === "<DIR>") {
|
|
file.type = FileInfo_1.FileType.Directory;
|
|
file.size = 0;
|
|
}
|
|
else {
|
|
file.type = FileInfo_1.FileType.File;
|
|
file.size = parseInt(groups[4], 10);
|
|
}
|
|
file.rawModifiedAt = groups[1] + " " + groups[2];
|
|
return file;
|
|
}
|
|
function transformList(files) {
|
|
return files;
|
|
}
|