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.
199 lines
5.7 KiB
JavaScript
199 lines
5.7 KiB
JavaScript
'use strict'
|
|
module.exports = rfdc
|
|
|
|
function copyBuffer (cur) {
|
|
if (cur instanceof Buffer) {
|
|
return Buffer.from(cur)
|
|
}
|
|
|
|
return new cur.constructor(cur.buffer.slice(), cur.byteOffset, cur.length)
|
|
}
|
|
|
|
function rfdc (opts) {
|
|
opts = opts || {}
|
|
if (opts.circles) return rfdcCircles(opts)
|
|
|
|
const constructorHandlers = new Map()
|
|
constructorHandlers.set(Date, (o) => new Date(o))
|
|
constructorHandlers.set(Map, (o, fn) => new Map(cloneArray(Array.from(o), fn)))
|
|
constructorHandlers.set(Set, (o, fn) => new Set(cloneArray(Array.from(o), fn)))
|
|
if (opts.constructorHandlers) {
|
|
for (const handler of opts.constructorHandlers) {
|
|
constructorHandlers.set(handler[0], handler[1])
|
|
}
|
|
}
|
|
|
|
let handler = null
|
|
|
|
return opts.proto ? cloneProto : clone
|
|
|
|
function cloneArray (a, fn) {
|
|
const keys = Object.keys(a)
|
|
const a2 = new Array(keys.length)
|
|
for (let i = 0; i < keys.length; i++) {
|
|
const k = keys[i]
|
|
const cur = a[k]
|
|
if (typeof cur !== 'object' || cur === null) {
|
|
a2[k] = cur
|
|
} else if (cur.constructor !== Object && (handler = constructorHandlers.get(cur.constructor))) {
|
|
a2[k] = handler(cur, fn)
|
|
} else if (ArrayBuffer.isView(cur)) {
|
|
a2[k] = copyBuffer(cur)
|
|
} else {
|
|
a2[k] = fn(cur)
|
|
}
|
|
}
|
|
return a2
|
|
}
|
|
|
|
function clone (o) {
|
|
if (typeof o !== 'object' || o === null) return o
|
|
if (Array.isArray(o)) return cloneArray(o, clone)
|
|
if (o.constructor !== Object && (handler = constructorHandlers.get(o.constructor))) {
|
|
return handler(o, clone)
|
|
}
|
|
const o2 = {}
|
|
for (const k in o) {
|
|
if (Object.hasOwnProperty.call(o, k) === false) continue
|
|
const cur = o[k]
|
|
if (typeof cur !== 'object' || cur === null) {
|
|
o2[k] = cur
|
|
} else if (cur.constructor !== Object && (handler = constructorHandlers.get(cur.constructor))) {
|
|
o2[k] = handler(cur, clone)
|
|
} else if (ArrayBuffer.isView(cur)) {
|
|
o2[k] = copyBuffer(cur)
|
|
} else {
|
|
o2[k] = clone(cur)
|
|
}
|
|
}
|
|
return o2
|
|
}
|
|
|
|
function cloneProto (o) {
|
|
if (typeof o !== 'object' || o === null) return o
|
|
if (Array.isArray(o)) return cloneArray(o, cloneProto)
|
|
if (o.constructor !== Object && (handler = constructorHandlers.get(o.constructor))) {
|
|
return handler(o, cloneProto)
|
|
}
|
|
const o2 = {}
|
|
for (const k in o) {
|
|
const cur = o[k]
|
|
if (typeof cur !== 'object' || cur === null) {
|
|
o2[k] = cur
|
|
} else if (cur.constructor !== Object && (handler = constructorHandlers.get(cur.constructor))) {
|
|
o2[k] = handler(cur, cloneProto)
|
|
} else if (ArrayBuffer.isView(cur)) {
|
|
o2[k] = copyBuffer(cur)
|
|
} else {
|
|
o2[k] = cloneProto(cur)
|
|
}
|
|
}
|
|
return o2
|
|
}
|
|
}
|
|
|
|
function rfdcCircles (opts) {
|
|
const refs = []
|
|
const refsNew = []
|
|
|
|
const constructorHandlers = new Map()
|
|
constructorHandlers.set(Date, (o) => new Date(o))
|
|
constructorHandlers.set(Map, (o, fn) => new Map(cloneArray(Array.from(o), fn)))
|
|
constructorHandlers.set(Set, (o, fn) => new Set(cloneArray(Array.from(o), fn)))
|
|
if (opts.constructorHandlers) {
|
|
for (const handler of opts.constructorHandlers) {
|
|
constructorHandlers.set(handler[0], handler[1])
|
|
}
|
|
}
|
|
|
|
let handler = null
|
|
return opts.proto ? cloneProto : clone
|
|
|
|
function cloneArray (a, fn) {
|
|
const keys = Object.keys(a)
|
|
const a2 = new Array(keys.length)
|
|
for (let i = 0; i < keys.length; i++) {
|
|
const k = keys[i]
|
|
const cur = a[k]
|
|
if (typeof cur !== 'object' || cur === null) {
|
|
a2[k] = cur
|
|
} else if (cur.constructor !== Object && (handler = constructorHandlers.get(cur.constructor))) {
|
|
a2[k] = handler(cur, fn)
|
|
} else if (ArrayBuffer.isView(cur)) {
|
|
a2[k] = copyBuffer(cur)
|
|
} else {
|
|
const index = refs.indexOf(cur)
|
|
if (index !== -1) {
|
|
a2[k] = refsNew[index]
|
|
} else {
|
|
a2[k] = fn(cur)
|
|
}
|
|
}
|
|
}
|
|
return a2
|
|
}
|
|
|
|
function clone (o) {
|
|
if (typeof o !== 'object' || o === null) return o
|
|
if (Array.isArray(o)) return cloneArray(o, clone)
|
|
if (o.constructor !== Object && (handler = constructorHandlers.get(o.constructor))) {
|
|
return handler(o, clone)
|
|
}
|
|
const o2 = {}
|
|
refs.push(o)
|
|
refsNew.push(o2)
|
|
for (const k in o) {
|
|
if (Object.hasOwnProperty.call(o, k) === false) continue
|
|
const cur = o[k]
|
|
if (typeof cur !== 'object' || cur === null) {
|
|
o2[k] = cur
|
|
} else if (cur.constructor !== Object && (handler = constructorHandlers.get(cur.constructor))) {
|
|
o2[k] = handler(cur, clone)
|
|
} else if (ArrayBuffer.isView(cur)) {
|
|
o2[k] = copyBuffer(cur)
|
|
} else {
|
|
const i = refs.indexOf(cur)
|
|
if (i !== -1) {
|
|
o2[k] = refsNew[i]
|
|
} else {
|
|
o2[k] = clone(cur)
|
|
}
|
|
}
|
|
}
|
|
refs.pop()
|
|
refsNew.pop()
|
|
return o2
|
|
}
|
|
|
|
function cloneProto (o) {
|
|
if (typeof o !== 'object' || o === null) return o
|
|
if (Array.isArray(o)) return cloneArray(o, cloneProto)
|
|
if (o.constructor !== Object && (handler = constructorHandlers.get(o.constructor))) {
|
|
return handler(o, cloneProto)
|
|
}
|
|
const o2 = {}
|
|
refs.push(o)
|
|
refsNew.push(o2)
|
|
for (const k in o) {
|
|
const cur = o[k]
|
|
if (typeof cur !== 'object' || cur === null) {
|
|
o2[k] = cur
|
|
} else if (cur.constructor !== Object && (handler = constructorHandlers.get(cur.constructor))) {
|
|
o2[k] = handler(cur, cloneProto)
|
|
} else if (ArrayBuffer.isView(cur)) {
|
|
o2[k] = copyBuffer(cur)
|
|
} else {
|
|
const i = refs.indexOf(cur)
|
|
if (i !== -1) {
|
|
o2[k] = refsNew[i]
|
|
} else {
|
|
o2[k] = cloneProto(cur)
|
|
}
|
|
}
|
|
}
|
|
refs.pop()
|
|
refsNew.pop()
|
|
return o2
|
|
}
|
|
}
|