2019-06-24 21:30:47 +03:00
|
|
|
import { expect } from 'chai';
|
2023-11-17 12:43:04 +03:00
|
|
|
import { Display, screen } from 'electron/main';
|
2019-06-24 21:30:47 +03:00
|
|
|
|
|
|
|
describe('screen module', () => {
|
2020-12-07 20:20:50 +03:00
|
|
|
describe('methods reassignment', () => {
|
|
|
|
it('works for a selected method', () => {
|
|
|
|
const originalFunction = screen.getPrimaryDisplay;
|
|
|
|
try {
|
|
|
|
(screen as any).getPrimaryDisplay = () => null;
|
|
|
|
expect(screen.getPrimaryDisplay()).to.be.null();
|
|
|
|
} finally {
|
|
|
|
screen.getPrimaryDisplay = originalFunction;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-06-24 21:30:47 +03:00
|
|
|
describe('screen.getCursorScreenPoint()', () => {
|
|
|
|
it('returns a point object', () => {
|
|
|
|
const point = screen.getCursorScreenPoint();
|
|
|
|
expect(point.x).to.be.a('number');
|
|
|
|
expect(point.y).to.be.a('number');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('screen.getPrimaryDisplay()', () => {
|
2023-11-17 12:43:04 +03:00
|
|
|
let display: Display | null = null;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
display = screen.getPrimaryDisplay();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
display = null;
|
|
|
|
});
|
|
|
|
|
2019-06-24 21:30:47 +03:00
|
|
|
it('returns a display object', () => {
|
|
|
|
expect(display).to.be.an('object');
|
|
|
|
});
|
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
it('has the correct non-object properties', function () {
|
2019-06-24 21:30:47 +03:00
|
|
|
expect(display).to.have.property('accelerometerSupport').that.is.a('string');
|
|
|
|
expect(display).to.have.property('colorDepth').that.is.a('number');
|
|
|
|
expect(display).to.have.property('colorSpace').that.is.a('string');
|
2023-11-17 12:43:04 +03:00
|
|
|
expect(display).to.have.property('depthPerComponent').that.is.a('number');
|
|
|
|
expect(display).to.have.property('detected').that.is.a('boolean');
|
2020-11-17 02:33:51 +03:00
|
|
|
expect(display).to.have.property('displayFrequency').that.is.a('number');
|
2023-11-17 12:43:04 +03:00
|
|
|
expect(display).to.have.property('id').that.is.a('number');
|
|
|
|
expect(display).to.have.property('internal').that.is.a('boolean');
|
|
|
|
expect(display).to.have.property('label').that.is.a('string');
|
|
|
|
expect(display).to.have.property('monochrome').that.is.a('boolean');
|
|
|
|
expect(display).to.have.property('scaleFactor').that.is.a('number');
|
|
|
|
expect(display).to.have.property('rotation').that.is.a('number');
|
|
|
|
expect(display).to.have.property('touchSupport').that.is.a('string');
|
2019-06-24 21:30:47 +03:00
|
|
|
});
|
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
it('has a maximumCursorSize object property', () => {
|
|
|
|
expect(display).to.have.property('maximumCursorSize').that.is.an('object');
|
2019-06-24 21:30:47 +03:00
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
const { maximumCursorSize } = display!;
|
|
|
|
expect(maximumCursorSize).to.have.property('width').that.is.a('number');
|
|
|
|
expect(maximumCursorSize).to.have.property('height').that.is.a('number');
|
2019-06-24 21:30:47 +03:00
|
|
|
});
|
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
it('has a nativeOrigin object property', () => {
|
|
|
|
expect(display).to.have.property('nativeOrigin').that.is.an('object');
|
2019-06-24 21:30:47 +03:00
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
const { nativeOrigin } = display!;
|
|
|
|
expect(nativeOrigin).to.have.property('x').that.is.a('number');
|
|
|
|
expect(nativeOrigin).to.have.property('y').that.is.a('number');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('has a size object property', () => {
|
|
|
|
expect(display).to.have.property('size').that.is.an('object');
|
|
|
|
|
|
|
|
const { size } = display!;
|
|
|
|
|
|
|
|
if (process.platform === 'linux') {
|
|
|
|
expect(size).to.have.property('width').that.is.a('number');
|
|
|
|
expect(size).to.have.property('height').that.is.a('number');
|
|
|
|
} else {
|
|
|
|
expect(size).to.have.property('width').that.is.greaterThan(0);
|
|
|
|
expect(size).to.have.property('height').that.is.greaterThan(0);
|
|
|
|
}
|
2019-06-24 21:30:47 +03:00
|
|
|
});
|
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
it('has a workAreaSize object property', () => {
|
|
|
|
expect(display).to.have.property('workAreaSize').that.is.an('object');
|
|
|
|
|
|
|
|
const { workAreaSize } = display!;
|
|
|
|
|
|
|
|
if (process.platform === 'linux') {
|
|
|
|
expect(workAreaSize).to.have.property('width').that.is.a('number');
|
|
|
|
expect(workAreaSize).to.have.property('height').that.is.a('number');
|
|
|
|
} else {
|
|
|
|
expect(workAreaSize).to.have.property('width').that.is.greaterThan(0);
|
|
|
|
expect(workAreaSize).to.have.property('height').that.is.greaterThan(0);
|
|
|
|
}
|
|
|
|
});
|
2019-06-24 21:30:47 +03:00
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
it('has a bounds object property', () => {
|
2019-06-24 21:30:47 +03:00
|
|
|
expect(display).to.have.property('bounds').that.is.an('object');
|
2023-11-17 12:43:04 +03:00
|
|
|
|
|
|
|
const { bounds } = display!;
|
2019-06-24 21:30:47 +03:00
|
|
|
expect(bounds).to.have.property('x').that.is.a('number');
|
|
|
|
expect(bounds).to.have.property('y').that.is.a('number');
|
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
if (process.platform === 'linux') {
|
|
|
|
expect(bounds).to.have.property('width').that.is.a('number');
|
|
|
|
expect(bounds).to.have.property('height').that.is.a('number');
|
|
|
|
} else {
|
|
|
|
expect(bounds).to.have.property('width').that.is.greaterThan(0);
|
|
|
|
expect(bounds).to.have.property('height').that.is.greaterThan(0);
|
|
|
|
}
|
|
|
|
});
|
2019-06-24 21:30:47 +03:00
|
|
|
|
2023-11-17 12:43:04 +03:00
|
|
|
it('has a workArea object property', () => {
|
2019-06-24 21:30:47 +03:00
|
|
|
expect(display).to.have.property('workArea').that.is.an('object');
|
2023-11-17 12:43:04 +03:00
|
|
|
|
|
|
|
const { workArea } = display!;
|
2019-06-24 21:30:47 +03:00
|
|
|
expect(workArea).to.have.property('x').that.is.a('number');
|
|
|
|
expect(workArea).to.have.property('y').that.is.a('number');
|
|
|
|
expect(workArea).to.have.property('width').that.is.greaterThan(0);
|
|
|
|
expect(workArea).to.have.property('height').that.is.greaterThan(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|