* feat(auth): init auth package & collection * feat(auth): register * feat(auth): use authenticator * feat(auth): mapRoles * feat(auth): refactor * feat(auth): base auth class * feat(auth): add plugin * chore(auth): test * chore(auth): add test cases * feat(auth): authenticators pane * chore(auth): custom hook useAuthTypes * feat(auth): authenticator pane * chore(auth): store options schema using context * feat(auth): signInPage provider * feat(auth): signUpPage provider * chore(auth): solve build errors * chore(auth): add dependency * chore(auth): remove dependency cycles * chore(auth): add plugin-auth to preset * chore(auth): fix test * feat(auth): authenticator enable status * fix(test): fix test using new authentication * feat(auth): migration, set up basic auth * chore(auth): can set options ui by component * fix(test): workflow manunal.test * fix(test): typo * feat(auth): support multi-language * chore(auth): imporve code * chore(auth): hide button if no configuration * chore(auth): readme * chore(auth): remove allowSignup prop * chore(auth): move configure pane to edit form * fix(auth): jwt options bug * feat(auth): init sms-auth * chore(auth): at least authenticator required * chore(auth): add test * feat(auth): support sms auth * fix(auth): fix test * chore(auth): move findOrCreateUser to AuthModel * chore(auth): history compatible processing * feat(auth): support SAML auth * chore(auth): saml auth list * chore(saml-auth): improve ui * Merge branch 'main' into feat/authentication * chore(auth): improve code * fix(saml-auth): fix bug * fix(saml-auth): fix saml options * chore(saml-auth): compatible processing && ut * fix(auth): signin page bug * chore(auth): saml compatible processing * feat(auth): oidc-auth * fix(oidc-auth): bug * fix(oidc-auth): bug * fix(auth): fix test * chore(auth): filter enabled authenticator * chore(oidc): add field map * chore(auth): update readme * docs(auth): create sms-auth readme * feat(auth): allow signup config * test(auth): fix test * feat(auth): allow saml and oidc use http * chore(oidc-auth): extends timeout * docs(auth): update readme * feat(auth): support sort * docs(saml): update readme * feat(auth): support sort all authenticator * Merge branch 'main' into feat/authentication * Merge branch 'main' into feat/authentication * feat: improve code * docs(auth): add doc * Merge branch 'main' into feat/authentication * chore: update yarn.lock * feat: improve code * chore(acl): write role to acl if it exists in database and not found … (#2001) * chore(acl): write role to acl if it exists in database and not found in acl * fix: test * fix: eager load with nested association (#2002) * chore: upgrade vitest * chore: edit * refactor: auth class * fix: set options * chore(acl): write role to acl if it exists in database and not found … (#2001) * chore(acl): write role to acl if it exists in database and not found in acl * fix: test * fix: eager load with nested association (#2002) * chore: upgrade vitest * chore: add migrations * test: fix api-client test * chore: add sms-auth * feat: avoid no permission after auth type disabled * fix: translation --------- Co-authored-by: chenos <chenlinxh@gmail.com>
178 lines
4.1 KiB
TypeScript
178 lines
4.1 KiB
TypeScript
import { Database, Model } from '@nocobase/database';
|
|
import { CollectionRepository } from '@nocobase/plugin-collection-manager';
|
|
import UsersPlugin from '@nocobase/plugin-users';
|
|
import { MockServer } from '@nocobase/test';
|
|
import { prepareApp } from './prepare';
|
|
|
|
describe('role resource api', () => {
|
|
let app: MockServer;
|
|
let db: Database;
|
|
let role: Model;
|
|
let admin;
|
|
let adminAgent;
|
|
|
|
afterEach(async () => {
|
|
await app.destroy();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
app = await prepareApp();
|
|
db = app.db;
|
|
|
|
role = await db.getRepository('roles').findOne({
|
|
filter: {
|
|
name: 'admin',
|
|
},
|
|
});
|
|
|
|
const UserRepo = db.getCollection('users').repository;
|
|
admin = await UserRepo.create({
|
|
values: {
|
|
roles: ['admin'],
|
|
},
|
|
});
|
|
|
|
const userPlugin = app.getPlugin('users') as UsersPlugin;
|
|
adminAgent = app.agent().login(admin);
|
|
});
|
|
|
|
it('should grant resource by createRepository', async () => {
|
|
const collectionManager = db.getRepository('collections') as CollectionRepository;
|
|
await collectionManager.create({
|
|
values: {
|
|
name: 'c1',
|
|
title: 'table1',
|
|
},
|
|
context: {},
|
|
});
|
|
|
|
await collectionManager.create({
|
|
values: {
|
|
name: 'c2',
|
|
title: 'table2',
|
|
},
|
|
context: {},
|
|
});
|
|
|
|
await db.getRepository('roles').create({
|
|
values: {
|
|
name: 'testRole',
|
|
resources: [
|
|
{
|
|
name: 'c1',
|
|
actions: [
|
|
{
|
|
name: 'create',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
const acl = app.acl;
|
|
const testRole = acl.getRole('testRole');
|
|
const resource = testRole.getResource('c1');
|
|
expect(resource).toBeDefined();
|
|
});
|
|
|
|
it('should grant resource action', async () => {
|
|
const collectionManager = db.getRepository('collections') as CollectionRepository;
|
|
|
|
await collectionManager.create({
|
|
values: {
|
|
name: 'c1',
|
|
title: 'table1',
|
|
},
|
|
context: {},
|
|
});
|
|
|
|
await collectionManager.create({
|
|
values: {
|
|
name: 'c2',
|
|
title: 'table2',
|
|
},
|
|
context: {},
|
|
});
|
|
|
|
// get collections list
|
|
let response = await adminAgent.resource('roles.collections', 'admin').list({
|
|
filter: {
|
|
$or: [{ name: 'c1' }, { name: 'c2' }],
|
|
},
|
|
sort: ['sort'],
|
|
});
|
|
|
|
expect(response.statusCode).toEqual(200);
|
|
|
|
expect(response.body.data).toMatchObject([
|
|
{
|
|
name: 'c1',
|
|
title: 'table1',
|
|
usingConfig: 'strategy',
|
|
exists: false,
|
|
},
|
|
{
|
|
name: 'c2',
|
|
title: 'table2',
|
|
usingConfig: 'strategy',
|
|
exists: false,
|
|
},
|
|
]);
|
|
|
|
// set resource actions
|
|
response = await adminAgent.resource('roles.resources', 'admin').create({
|
|
values: {
|
|
name: 'c1',
|
|
usingActionsConfig: true,
|
|
actions: [
|
|
{
|
|
name: 'create',
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
expect(response.statusCode).toEqual(200);
|
|
|
|
// get collections list
|
|
response = await adminAgent.resource('roles.collections').list({
|
|
associatedIndex: role.get('name') as string,
|
|
filter: {
|
|
name: 'c1',
|
|
},
|
|
});
|
|
|
|
expect(response.body.data[0]['usingConfig']).toEqual('resourceAction');
|
|
|
|
response = await adminAgent.resource('roles.resources').list({
|
|
associatedIndex: role.get('name') as string,
|
|
appends: 'actions',
|
|
});
|
|
|
|
expect(response.statusCode).toEqual(200);
|
|
const resources = response.body.data;
|
|
const resourceAction = resources[0]['actions'][0];
|
|
|
|
expect(resourceAction['name']).toEqual('create');
|
|
|
|
// update resource actions
|
|
response = await adminAgent.resource('roles.resources').update({
|
|
associatedIndex: role.get('name') as string,
|
|
values: {
|
|
name: 'c1',
|
|
usingActionsConfig: true,
|
|
actions: [
|
|
{
|
|
name: 'view',
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
expect(response.statusCode).toEqual(200);
|
|
expect(response.body.data[0]['actions'].length).toEqual(1);
|
|
expect(response.body.data[0]['actions'][0]['name']).toEqual('view');
|
|
});
|
|
});
|