mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
38 lines
1.9 KiB
TypeScript
38 lines
1.9 KiB
TypeScript
import { DataFactory, Store } from 'n3';
|
|
import type { AccessCheckerArgs } from '../../../../src/authorization/access/AccessChecker';
|
|
import { AgentClassAccessChecker } from '../../../../src/authorization/access/AgentClassAccessChecker';
|
|
import { ACL, FOAF } from '../../../../src/util/Vocabularies';
|
|
import namedNode = DataFactory.namedNode;
|
|
|
|
describe('An AgentClassAccessChecker', (): void => {
|
|
const webId = 'http://test.com/alice/profile/card#me';
|
|
const acl = new Store();
|
|
acl.addQuad(namedNode('agentMatch'), ACL.terms.agentClass, FOAF.terms.Agent);
|
|
acl.addQuad(namedNode('authenticatedMatch'), ACL.terms.agentClass, ACL.terms.AuthenticatedAgent);
|
|
const checker = new AgentClassAccessChecker();
|
|
|
|
it('can handle all requests.', async(): Promise<void> => {
|
|
await expect(checker.canHandle(null as any)).resolves.toBeUndefined();
|
|
});
|
|
|
|
it('returns true if the rule contains foaf:agent as supported class.', async(): Promise<void> => {
|
|
const input: AccessCheckerArgs = { acl, rule: namedNode('agentMatch'), credential: {}};
|
|
await expect(checker.handle(input)).resolves.toBe(true);
|
|
});
|
|
|
|
it('returns true for authenticated users with an acl:AuthenticatedAgent rule.', async(): Promise<void> => {
|
|
const input: AccessCheckerArgs = { acl, rule: namedNode('authenticatedMatch'), credential: { webId }};
|
|
await expect(checker.handle(input)).resolves.toBe(true);
|
|
});
|
|
|
|
it('returns false for unauthenticated users with an acl:AuthenticatedAgent rule.', async(): Promise<void> => {
|
|
const input: AccessCheckerArgs = { acl, rule: namedNode('authenticatedMatch'), credential: {}};
|
|
await expect(checker.handle(input)).resolves.toBe(false);
|
|
});
|
|
|
|
it('returns false if no class rule is found.', async(): Promise<void> => {
|
|
const input: AccessCheckerArgs = { acl, rule: namedNode('noMatch'), credential: {}};
|
|
await expect(checker.handle(input)).resolves.toBe(false);
|
|
});
|
|
});
|