-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
recompute has-permissions helper when permissions service attributes …
…change (#6473)
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 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
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,31 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupRenderingTest } from 'ember-qunit'; | ||
import { render } from '@ember/test-helpers'; | ||
import { run } from '@ember/runloop'; | ||
import hbs from 'htmlbars-inline-precompile'; | ||
import Service from '@ember/service'; | ||
|
||
const Permissions = Service.extend({ | ||
globPaths: null, | ||
hasNavPermission() { | ||
return this.globPaths ? true : false; | ||
}, | ||
}); | ||
|
||
module('Integration | Helper | has-permission', function(hooks) { | ||
setupRenderingTest(hooks); | ||
hooks.beforeEach(function() { | ||
this.owner.register('service:permissions', Permissions); | ||
this.permissions = this.owner.lookup('service:permissions'); | ||
}); | ||
|
||
test('it renders', async function(assert) { | ||
await render(hbs`{{#if (has-permission)}}Yes{{else}}No{{/if}}`); | ||
|
||
assert.equal(this.element.textContent.trim(), 'No'); | ||
await run(() => { | ||
this.permissions.set('globPaths', { 'test/': { capabilities: ['update'] } }); | ||
}); | ||
assert.equal(this.element.textContent.trim(), 'Yes', 'the helper re-computes when globPaths changes'); | ||
}); | ||
}); |