4bfc7529d6
no issue - `membersActivityFeed` is GA so we don't need any of the conditionals or now-unused code
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import {authenticateSession, invalidateSession} from 'ember-simple-auth/test-support';
|
|
import {currentURL} from '@ember/test-helpers';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupApplicationTest} from 'ember-mocha';
|
|
import {setupMirage} from 'ember-cli-mirage/test-support';
|
|
import {visit} from '../helpers/visit';
|
|
|
|
describe('Acceptance: Members activity', function () {
|
|
const hooks = setupApplicationTest();
|
|
setupMirage(hooks);
|
|
|
|
it('redirects when not authenticated', async function () {
|
|
await invalidateSession();
|
|
await visit('/members-activity');
|
|
expect(currentURL()).to.equal('/signin');
|
|
});
|
|
|
|
it('redirects non-admins', async function () {
|
|
await invalidateSession();
|
|
|
|
const role = this.server.create('role', {name: 'Editor'});
|
|
this.server.create('user', {roles: [role], slug: 'test-user'});
|
|
|
|
await authenticateSession();
|
|
await visit('/members-activity');
|
|
expect(currentURL()).to.equal('/site');
|
|
});
|
|
|
|
describe('as admin', function () {
|
|
beforeEach(async function () {
|
|
const role = this.server.create('role', {name: 'Administrator'});
|
|
this.server.create('user', {roles: [role]});
|
|
|
|
await authenticateSession();
|
|
});
|
|
|
|
it('renders', async function () {
|
|
await visit('/members-activity');
|
|
expect(currentURL()).to.equal('/members-activity');
|
|
});
|
|
});
|
|
});
|