* WIP * feat: Add collection.memberships endpoint * feat: Add ability to filter collection.memberships with query * WIP * Merge stashed work * feat: Add ability to filter memberships by permission * continued refactoring * paginated list component * Collection member management * fix: Incorrect policy data sent down after collection.update * Reduce duplication, add empty state * cleanup * fix: Modal close should be a real button * fix: Allow opening edit from modal * fix: remove unused methods * test: fix * Passing test suite * Refactor * fix: Flow UI errors * test: Add collections.update tests * lint * test: moar tests * fix: Missing scopes, more missing tests * fix: Handle collection privacy change over socket * fix: More membership scopes * fix: view endpoint permissions * fix: respond to privacy change on socket event * policy driven menus * fix: share endpoint policies * chore: Use policies to drive documents UI * alignment * fix: Header height * fix: Correct behavior when collection becomes private * fix: Header height for read-only collection * send id's over socket instead of serialized objects * fix: Remote policy change * fix: reduce collection fetching * More websocket efficiencies * fix: Document collection pinning * fix: Restored ability to edit drafts fix: Removed ability to star drafts * fix: Require write permissions to pin doc to collection * fix: Header title overlaying document actions at small screen sizes * fix: Jank on load caused by previous commit * fix: Double collection fetch post-publish * fix: Hide publish button if draft is in no longer accessible collection * fix: Always allow deleting drafts fix: Improved handling of deleted documents * feat: Show collections in drafts view feat: Show more obvious 'draft' badge on documents * fix: incorrect policies after publish to private collection * fix: Duplicating a draft publishes it
287 lines
8.0 KiB
JavaScript
287 lines
8.0 KiB
JavaScript
/* eslint-disable flowtype/require-valid-file-annotation */
|
|
import TestServer from 'fetch-test-server';
|
|
import app from '../app';
|
|
|
|
import { flushdb, seed } from '../test/support';
|
|
import { buildUser } from '../test/factories';
|
|
|
|
const server = new TestServer(app.callback());
|
|
|
|
beforeEach(flushdb);
|
|
afterAll(server.close);
|
|
|
|
describe('#users.list', async () => {
|
|
it('should allow filtering by user name', async () => {
|
|
const user = await buildUser({ name: 'Tester' });
|
|
|
|
const res = await server.post('/api/users.list', {
|
|
body: {
|
|
query: 'test',
|
|
token: user.getJwtToken(),
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.length).toEqual(1);
|
|
expect(body.data[0].id).toEqual(user.id);
|
|
});
|
|
|
|
it('should return teams paginated user list', async () => {
|
|
const { admin, user } = await seed();
|
|
|
|
const res = await server.post('/api/users.list', {
|
|
body: { token: admin.getJwtToken() },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.length).toEqual(2);
|
|
expect(body.data[0].id).toEqual(user.id);
|
|
expect(body.data[1].id).toEqual(admin.id);
|
|
});
|
|
|
|
it('should require admin for detailed info', async () => {
|
|
const { user, admin } = await seed();
|
|
const res = await server.post('/api/users.list', {
|
|
body: { token: user.getJwtToken() },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.length).toEqual(2);
|
|
expect(body.data[0].email).toEqual(undefined);
|
|
expect(body.data[1].email).toEqual(undefined);
|
|
expect(body.data[0].id).toEqual(user.id);
|
|
expect(body.data[1].id).toEqual(admin.id);
|
|
});
|
|
});
|
|
|
|
describe('#users.info', async () => {
|
|
it('should return known user', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.info', {
|
|
body: { token: user.getJwtToken() },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.id).toEqual(user.id);
|
|
expect(body.data.name).toEqual(user.name);
|
|
});
|
|
|
|
it('should require authentication', async () => {
|
|
const res = await server.post('/api/users.info');
|
|
expect(res.status).toEqual(401);
|
|
});
|
|
});
|
|
|
|
describe('#users.delete', async () => {
|
|
it('should not allow deleting without confirmation', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.delete', {
|
|
body: { token: user.getJwtToken() },
|
|
});
|
|
expect(res.status).toEqual(400);
|
|
});
|
|
|
|
it('should allow deleting last admin if only user', async () => {
|
|
const user = await buildUser({ isAdmin: true });
|
|
const res = await server.post('/api/users.delete', {
|
|
body: { token: user.getJwtToken(), confirmation: true },
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
});
|
|
|
|
it('should not allow deleting last admin if many users', async () => {
|
|
const user = await buildUser({ isAdmin: true });
|
|
await buildUser({ teamId: user.teamId, isAdmin: false });
|
|
|
|
const res = await server.post('/api/users.delete', {
|
|
body: { token: user.getJwtToken(), confirmation: true },
|
|
});
|
|
expect(res.status).toEqual(400);
|
|
});
|
|
|
|
it('should allow deleting user account with confirmation', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.delete', {
|
|
body: { token: user.getJwtToken(), confirmation: true },
|
|
});
|
|
expect(res.status).toEqual(200);
|
|
});
|
|
|
|
it('should require authentication', async () => {
|
|
const res = await server.post('/api/users.delete');
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(401);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('#users.update', async () => {
|
|
it('should update user profile information', async () => {
|
|
const { user } = await seed();
|
|
const res = await server.post('/api/users.update', {
|
|
body: { token: user.getJwtToken(), name: 'New name' },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body.data.name).toEqual('New name');
|
|
});
|
|
|
|
it('should require authentication', async () => {
|
|
const res = await server.post('/api/users.update');
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(401);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('#users.promote', async () => {
|
|
it('should promote a new admin', async () => {
|
|
const { admin, user } = await seed();
|
|
|
|
const res = await server.post('/api/users.promote', {
|
|
body: { token: admin.getJwtToken(), id: user.id },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
|
|
it('should require admin', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.promote', {
|
|
body: { token: user.getJwtToken(), id: user.id },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(403);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('#users.demote', async () => {
|
|
it('should demote an admin', async () => {
|
|
const { admin, user } = await seed();
|
|
await user.update({ isAdmin: true }); // Make another admin
|
|
|
|
const res = await server.post('/api/users.demote', {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
id: user.id,
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
|
|
it("shouldn't demote admins if only one available ", async () => {
|
|
const admin = await buildUser({ isAdmin: true });
|
|
|
|
const res = await server.post('/api/users.demote', {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
id: admin.id,
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(400);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
|
|
it('should require admin', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.promote', {
|
|
body: { token: user.getJwtToken(), id: user.id },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(403);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('#users.suspend', async () => {
|
|
it('should suspend an user', async () => {
|
|
const { admin, user } = await seed();
|
|
|
|
const res = await server.post('/api/users.suspend', {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
id: user.id,
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
|
|
it("shouldn't allow suspending the user themselves", async () => {
|
|
const admin = await buildUser({ isAdmin: true });
|
|
const res = await server.post('/api/users.suspend', {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
id: admin.id,
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(400);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
|
|
it('should require admin', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.suspend', {
|
|
body: { token: user.getJwtToken(), id: user.id },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(403);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('#users.activate', async () => {
|
|
it('should activate a suspended user', async () => {
|
|
const { admin, user } = await seed();
|
|
await user.update({
|
|
suspendedById: admin.id,
|
|
suspendedAt: new Date(),
|
|
});
|
|
|
|
expect(user.isSuspended).toBe(true);
|
|
const res = await server.post('/api/users.activate', {
|
|
body: {
|
|
token: admin.getJwtToken(),
|
|
id: user.id,
|
|
},
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(200);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
|
|
it('should require admin', async () => {
|
|
const user = await buildUser();
|
|
const res = await server.post('/api/users.activate', {
|
|
body: { token: user.getJwtToken(), id: user.id },
|
|
});
|
|
const body = await res.json();
|
|
|
|
expect(res.status).toEqual(403);
|
|
expect(body).toMatchSnapshot();
|
|
});
|
|
});
|