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.
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
// given a set of versions and a range, create a "simplified" range
|
|
// that includes the same versions that the original range does
|
|
// If the original range is shorter than the simplified one, return that.
|
|
const satisfies = require('../functions/satisfies.js')
|
|
const compare = require('../functions/compare.js')
|
|
module.exports = (versions, range, options) => {
|
|
const set = []
|
|
let min = null
|
|
let prev = null
|
|
const v = versions.sort((a, b) => compare(a, b, options))
|
|
for (const version of v) {
|
|
const included = satisfies(version, range, options)
|
|
if (included) {
|
|
prev = version
|
|
if (!min)
|
|
min = version
|
|
} else {
|
|
if (prev) {
|
|
set.push([min, prev])
|
|
}
|
|
prev = null
|
|
min = null
|
|
}
|
|
}
|
|
if (min)
|
|
set.push([min, null])
|
|
|
|
const ranges = []
|
|
for (const [min, max] of set) {
|
|
if (min === max)
|
|
ranges.push(min)
|
|
else if (!max && min === v[0])
|
|
ranges.push('*')
|
|
else if (!max)
|
|
ranges.push(`>=${min}`)
|
|
else if (min === v[0])
|
|
ranges.push(`<=${max}`)
|
|
else
|
|
ranges.push(`${min} - ${max}`)
|
|
}
|
|
const simplified = ranges.join(' || ')
|
|
const original = typeof range.raw === 'string' ? range.raw : String(range)
|
|
return simplified.length < original.length ? simplified : range
|
|
}
|