-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: call every contribution on unload
The current procedure bails early on the first contribution that prevents unloading. This means that other contributions are not notified. This commit makes sure that all contributions are called. Signed-off-by: Paul Maréchal <[email protected]>
- Loading branch information
1 parent
9e950a8
commit d80d83b
Showing
3 changed files
with
87 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
packages/core/src/browser/window/default-window-service.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2020 Ericsson and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
import { Container } from 'inversify'; | ||
import { ContributionProvider } from '../../common'; | ||
import { CorePreferences } from '../core-preferences'; | ||
import { FrontendApplicationContribution } from '../frontend-application'; | ||
import { DefaultWindowService } from './default-window-service'; | ||
import assert = require('assert'); | ||
|
||
describe('DefaultWindowService', () => { | ||
class TestFrontendApplicationContribution implements FrontendApplicationContribution { | ||
constructor(private preventUnload: boolean) { } | ||
onWillStopCalled = false; | ||
onWillStop(): boolean { | ||
this.onWillStopCalled = true; | ||
return this.preventUnload; | ||
} | ||
} | ||
function setupWindowService(confirmExit: CorePreferences['application.confirmExit'], frontendContributions: FrontendApplicationContribution[]): DefaultWindowService { | ||
const container = new Container(); | ||
container.bind(DefaultWindowService).toSelf().inSingletonScope(); | ||
container.bind<Partial<ContributionProvider<FrontendApplicationContribution>>>(ContributionProvider) | ||
.toConstantValue({ | ||
getContributions: () => frontendContributions, | ||
}) | ||
.whenTargetNamed(FrontendApplicationContribution); | ||
container.bind<Partial<CorePreferences>>(CorePreferences) | ||
.toConstantValue({ | ||
'application.confirmExit': confirmExit, | ||
}); | ||
return container.get(DefaultWindowService); | ||
} | ||
it('onWillStop should be called on every contribution (never)', () => { | ||
const frontendContributions: TestFrontendApplicationContribution[] = [ | ||
// preventUnload should be ignored here | ||
new TestFrontendApplicationContribution(true), | ||
]; | ||
const windowService = setupWindowService('never', frontendContributions); | ||
assert(frontendContributions.every(contribution => !contribution.onWillStopCalled), 'contributions should not be called yet'); | ||
assert(windowService.canUnload(), 'canUnload should return true'); | ||
assert(frontendContributions.every(contribution => contribution.onWillStopCalled), 'contributions should have been called'); | ||
}); | ||
it('onWillStop should be called on every contribution (ifRequired)', () => { | ||
const frontendContributions: TestFrontendApplicationContribution[] = [ | ||
new TestFrontendApplicationContribution(true), | ||
// canUnload should not stop at the previous contribution | ||
new TestFrontendApplicationContribution(false), | ||
]; | ||
const windowService = setupWindowService('ifRequired', frontendContributions); | ||
assert(frontendContributions.every(contribution => !contribution.onWillStopCalled), 'contributions should not be called yet'); | ||
assert(!windowService.canUnload(), 'canUnload should return false'); | ||
assert(frontendContributions.every(contribution => contribution.onWillStopCalled), 'contributions should have been called'); | ||
}); | ||
it('onWillStop should be called on every contribution (always)', () => { | ||
const frontendContributions: TestFrontendApplicationContribution[] = [ | ||
// canUnload should return false despite preventUnload not being set | ||
new TestFrontendApplicationContribution(false), | ||
]; | ||
const windowService = setupWindowService('always', frontendContributions); | ||
assert(frontendContributions.every(contribution => !contribution.onWillStopCalled), 'contributions should not be called yet'); | ||
assert(!windowService.canUnload(), 'canUnload should return false'); | ||
assert(frontendContributions.every(contribution => contribution.onWillStopCalled), 'contributions should have been called'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters