summaryrefslogtreecommitdiff
path: root/devel/electron13/files/patch-electron_spec-main_api-app-spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron13/files/patch-electron_spec-main_api-app-spec.ts')
-rw-r--r--devel/electron13/files/patch-electron_spec-main_api-app-spec.ts128
1 files changed, 128 insertions, 0 deletions
diff --git a/devel/electron13/files/patch-electron_spec-main_api-app-spec.ts b/devel/electron13/files/patch-electron_spec-main_api-app-spec.ts
new file mode 100644
index 000000000000..bbe727322acd
--- /dev/null
+++ b/devel/electron13/files/patch-electron_spec-main_api-app-spec.ts
@@ -0,0 +1,128 @@
+--- electron/spec-main/api-app-spec.ts.orig 2021-10-27 21:25:28 UTC
++++ electron/spec-main/api-app-spec.ts
+@@ -123,7 +123,7 @@ describe('app module', () => {
+ describe('app.getLocaleCountryCode()', () => {
+ it('should be empty or have length of two', () => {
+ let expectedLength = 2;
+- if (process.platform === 'linux' && process.env.CI) {
++ if ((process.platform === 'linux' || process.platform === 'freebsd') && process.env.CI) {
+ // Linux CI machines have no locale.
+ expectedLength = 0;
+ }
+@@ -179,7 +179,7 @@ describe('app module', () => {
+ });
+
+ it('exits gracefully', async function () {
+- if (!['darwin', 'linux'].includes(process.platform)) {
++ if (!['darwin', 'linux', 'freebsd'].includes(process.platform)) {
+ this.skip();
+ return;
+ }
+@@ -328,7 +328,7 @@ describe('app module', () => {
+ // let w = null
+
+ // before(function () {
+- // if (process.platform !== 'linux') {
++ // if (process.platform !== 'linux' && process.platform !== 'freebsd') {
+ // this.skip()
+ // }
+ // })
+@@ -565,7 +565,7 @@ describe('app module', () => {
+ describe('app.badgeCount', () => {
+ const platformIsNotSupported =
+ (process.platform === 'win32') ||
+- (process.platform === 'linux' && !app.isUnityRunning());
++ ((process.platform === 'linux' || process.platform === 'freebsd') && !app.isUnityRunning());
+
+ const expectedBadgeCount = 42;
+
+@@ -609,7 +609,7 @@ describe('app module', () => {
+ });
+ });
+
+- ifdescribe(process.platform !== 'linux' && !process.mas)('app.get/setLoginItemSettings API', function () {
++ ifdescribe((process.platform !== 'linux' && process.platform !== 'freebsd') && !process.mas)('app.get/setLoginItemSettings API', function () {
+ const updateExe = path.resolve(path.dirname(process.execPath), '..', 'Update.exe');
+ const processStartArgs = [
+ '--processStart', `"${path.basename(process.execPath)}"`,
+@@ -926,7 +926,7 @@ describe('app module', () => {
+ });
+ });
+
+- ifdescribe(process.platform !== 'linux')('accessibilitySupportEnabled property', () => {
++ ifdescribe(process.platform !== 'linux' && process.platform !== 'freebsd')('accessibilitySupportEnabled property', () => {
+ it('with properties', () => {
+ it('can set accessibility support enabled', () => {
+ expect(app.accessibilitySupportEnabled).to.eql(false);
+@@ -1040,7 +1040,7 @@ describe('app module', () => {
+ let w: BrowserWindow;
+
+ before(function () {
+- if (process.platform === 'linux') {
++ if (process.platform === 'linux' || process.platform === 'freebsd') {
+ this.skip();
+ }
+ session.fromPartition('empty-certificate').setCertificateVerifyProc((req, cb) => { cb(0); });
+@@ -1181,7 +1181,7 @@ describe('app module', () => {
+ // We can't expect particular app names here, but these protocols should
+ // at least have _something_ registered. Except on our Linux CI
+ // environment apparently.
+- if (process.platform === 'linux') {
++ if (process.platform === 'linux' || process.platform === 'freebsd') {
+ this.skip();
+ }
+
+@@ -1199,7 +1199,7 @@ describe('app module', () => {
+ });
+ });
+
+- ifdescribe(process.platform !== 'linux')('getApplicationInfoForProtocol()', () => {
++ ifdescribe(process.platform !== 'linux' && process.platform !== 'freebsd')('getApplicationInfoForProtocol()', () => {
+ it('returns promise rejection for a bogus protocol', async function () {
+ await expect(
+ app.getApplicationInfoForProtocol('bogus-protocol://')
+@@ -1249,7 +1249,7 @@ describe('app module', () => {
+ });
+
+ // FIXME Get these specs running on Linux CI
+- ifdescribe(process.platform !== 'linux')('getFileIcon() API', () => {
++ ifdescribe(process.platform !== 'linux' && process.platform !== 'freebsd')('getFileIcon() API', () => {
+ const iconPath = path.join(__dirname, 'fixtures/assets/icon.ico');
+ const sizes = {
+ small: 16,
+@@ -1330,7 +1330,7 @@ describe('app module', () => {
+ expect(entry.memory).to.have.property('privateBytes').that.is.greaterThan(0);
+ }
+
+- if (process.platform !== 'linux') {
++ if (process.platform !== 'linux' && process.platform !== 'freebsd') {
+ expect(entry.sandboxed).to.be.a('boolean');
+ }
+
+@@ -1356,7 +1356,7 @@ describe('app module', () => {
+ });
+
+ // FIXME https://github.com/electron/electron/issues/24224
+- ifdescribe(process.platform !== 'linux')('getGPUInfo() API', () => {
++ ifdescribe(process.platform !== 'linux' && process.platform !== 'freebsd')('getGPUInfo() API', () => {
+ const appPath = path.join(fixturesPath, 'api', 'gpu-info.js');
+
+ const getGPUInfo = async (type: string) => {
+@@ -1398,7 +1398,7 @@ describe('app module', () => {
+
+ it('succeeds with complete GPUInfo', async () => {
+ const completeInfo = await getGPUInfo('complete');
+- if (process.platform === 'linux') {
++ if (process.platform === 'linux' || process.platform === 'freebsd') {
+ // For linux and macOS complete info is same as basic info
+ await verifyBasicGPUInfo(completeInfo);
+ const basicInfo = await getGPUInfo('basic');
+@@ -1428,7 +1428,7 @@ describe('app module', () => {
+ const socketPath = process.platform === 'win32' ? '\\\\.\\pipe\\electron-mixed-sandbox' : '/tmp/electron-mixed-sandbox';
+
+ beforeEach(function (done) {
+- if (process.platform === 'linux' && (process.arch === 'arm64' || process.arch === 'arm')) {
++ if ((process.platform === 'linux' || process.platform === 'freebsd') && (process.arch === 'arm64' || process.arch === 'arm')) {
+ // Our ARM tests are run on VSTS rather than CircleCI, and the Docker
+ // setup on VSTS disallows syscalls that Chrome requires for setting up
+ // sandboxing.