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.
198 lines
7.7 KiB
JavaScript
198 lines
7.7 KiB
JavaScript
'use strict';
|
|
|
|
describe('node-resemble.js', function() {
|
|
var EXAMPLE_LARGE_IMAGE = 'example/LargeImage.png';
|
|
var EXAMPLE_SMALL_IMAGE = 'example/SmallImage.png';
|
|
var EXAMPLE_PEOPLE_IMAGES = [
|
|
'example/People.png',
|
|
'example/People2.png'
|
|
];
|
|
var OPTIMISATION_SKIP_STEP = 6;
|
|
var DEFAULT_LARGE_IMAGE_THRESHOLD = 1200;
|
|
|
|
var resemble = require('./resemble.js');
|
|
|
|
describe('largeImageThreshold', function() {
|
|
describe('when unset', function() {
|
|
describe('when ignoreAntialiasing is enabled', function() {
|
|
it('skips pixels when a dimension is larger than the default threshold (1200)', function(done) {
|
|
getLargeImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels when both dimensions are smaller than the default threshold (1200)', function(done) {
|
|
getSmallImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when ignoreAntialiasing is disabled', function() {
|
|
it('does not skip pixels when a dimension is larger than the default threshold (1200)', function(done) {
|
|
getLargeImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels when both dimensions are smaller than the default threshold (1200)', function(done) {
|
|
getSmallImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when explicitly set', function() {
|
|
afterAll(function() {
|
|
resemble.outputSettings({largeImageThreshold: DEFAULT_LARGE_IMAGE_THRESHOLD});
|
|
});
|
|
|
|
describe('when ignoreAntialiasing is enabled', function() {
|
|
it('skips pixels on images with a dimension larger than the given threshold', function(done) {
|
|
resemble.outputSettings({largeImageThreshold: 999});
|
|
getSmallImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels on images with a dimension equal to the given threshold', function(done) {
|
|
resemble.outputSettings({largeImageThreshold: 1000});
|
|
getSmallImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels on images with both dimensions smaller than the given threshold', function(done) {
|
|
resemble.outputSettings({largeImageThreshold: 1001});
|
|
getSmallImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when ignoreAntialiasing is disabled', function() {
|
|
it('does not skip pixels on images with a dimension larger than the given threshold', function(done) {
|
|
resemble.outputSettings({largeImageThreshold: 999});
|
|
getSmallImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels on images with a dimension equal to the given threshold', function(done) {
|
|
resemble.outputSettings({largeImageThreshold: 1000});
|
|
getSmallImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels on images with both dimensions smaller than the given threshold', function(done) {
|
|
resemble.outputSettings({largeImageThreshold: 1001});
|
|
getSmallImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when set to a falsy value', function() {
|
|
beforeEach(function() {
|
|
resemble.outputSettings({largeImageThreshold: 0});
|
|
});
|
|
|
|
afterAll(function() {
|
|
resemble.outputSettings({largeImageThreshold: DEFAULT_LARGE_IMAGE_THRESHOLD});
|
|
});
|
|
|
|
describe('when ignoreAntialiasing is enabled', function() {
|
|
it('does not skip pixels on images with a dimension larger than the default threshold (1200)', function(done) {
|
|
getLargeImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels on images with a dimension smaller than the default threshold (1200)', function(done) {
|
|
getSmallImageComparison().ignoreAntialiasing().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when ignoreAntialiasing is disabled', function() {
|
|
it('does not skip pixels on images with a dimension larger than the default threshold (1200)', function(done) {
|
|
getLargeImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('does not skip pixels on images with a dimension smaller than the default threshold (1200)', function(done) {
|
|
getSmallImageComparison().onComplete(function(data) {
|
|
expectPixelsNotToBeSkipped(data.getDiffImage(), OPTIMISATION_SKIP_STEP);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
function expectPixelsToBeSkipped(image, step) {
|
|
expect(getPixelForLocation(image, 1, step - 1).alpha).not.toBe(0);
|
|
expect(getPixelForLocation(image, 1, step).alpha).toBe(0);
|
|
expect(getPixelForLocation(image, 1, step + 1).alpha).not.toBe(0);
|
|
|
|
expect(getPixelForLocation(image, step - 1, 1).alpha).not.toBe(0);
|
|
expect(getPixelForLocation(image, step, 1).alpha).toBe(0);
|
|
expect(getPixelForLocation(image, step + 1, 1).alpha).not.toBe(0);
|
|
|
|
expect(getPixelForLocation(image, step, step).alpha).toBe(0);
|
|
}
|
|
|
|
function expectPixelsNotToBeSkipped(image, step) {
|
|
expect(getPixelForLocation(image, 1, step).alpha).not.toBe(0);
|
|
expect(getPixelForLocation(image, step, 1).alpha).not.toBe(0);
|
|
expect(getPixelForLocation(image, step, step).alpha).not.toBe(0);
|
|
}
|
|
});
|
|
|
|
it('rawMisMatchPercentage contains raw result', function(done) {
|
|
resemble(
|
|
EXAMPLE_PEOPLE_IMAGES[0]
|
|
).compareTo(
|
|
EXAMPLE_PEOPLE_IMAGES[1]
|
|
).onComplete(function(data) {
|
|
expect(data.rawMisMatchPercentage).toBe(8.6612);
|
|
done();
|
|
});
|
|
});
|
|
|
|
function getLargeImageComparison() {
|
|
return resemble(EXAMPLE_LARGE_IMAGE).compareTo(EXAMPLE_LARGE_IMAGE);
|
|
}
|
|
|
|
function getSmallImageComparison() {
|
|
return resemble(EXAMPLE_SMALL_IMAGE).compareTo(EXAMPLE_SMALL_IMAGE);
|
|
}
|
|
|
|
function getPixelForLocation(image, x, y) {
|
|
var index = (image.width * y + x) << 2;
|
|
return {
|
|
red: image.data[index],
|
|
green: image.data[index + 1],
|
|
blue: image.data[index + 2],
|
|
alpha: image.data[index + 3]
|
|
};
|
|
}
|
|
});
|