Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bug fixes #558

Merged
merged 7 commits into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"release:antora": "echo \"$(yaml set docs/antora.yml version $(dot-json lerna.json version))\" > docs/antora.yml",
"start": "lerna run start --parallel",
"start:watch": "lerna run start:watch --parallel",
"test": "lerna run test --since HEAD",
"test": "lerna run test --since HEAD --stream --concurrency 1",
"test:all": "lerna run test",
"test:ci": "lerna run test:ci"
},
Expand Down
53 changes: 48 additions & 5 deletions packages/solid-crs-core/lib/solid/solid-store.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@ describe('SolidStore', () => {

describe('setPublicAccess', () => {

const resourceUri = 'https://test.uri/resource';
const containerUri = 'https://test.uri/container/';

beforeEach(() => {

(client.access.getPublicAccess as any) = jest.fn(async () => ({
Expand All @@ -365,7 +368,7 @@ describe('SolidStore', () => {

it('should update existing acl when one is present', async () => {

await service.setPublicAccess('https://test.uri/');
await service.setPublicAccess(resourceUri);
expect(client.access.setPublicAccess).toHaveBeenCalled();

});
Expand All @@ -376,7 +379,7 @@ describe('SolidStore', () => {
read: true,
}));

await service.setPublicAccess('https://test.uri/');
await service.setPublicAccess(resourceUri);
expect(client.access.setPublicAccess).not.toHaveBeenCalled();

});
Expand All @@ -385,7 +388,47 @@ describe('SolidStore', () => {

let aclCreated: boolean;

fetchMock.mockOnce(async () => {
fetchMock.mockOnce(async (req) => {

const body = await req.text();

expect(body).toContain(`acl:accessTo <${resourceUri}>`);

aclCreated = true;

return { body: 'created', init: { status: 201 } };

});

(client.access.getPublicAccess as any) = jest.fn(async () => {

if (!aclCreated) {

return Promise.reject({ response: { status: 404 } });

}

return {
read: false,
};

});

await service.setPublicAccess(resourceUri);
expect(client.access.setPublicAccess).toHaveBeenCalled();

});

it('should set default access for containers', async () => {

let aclCreated: boolean;

fetchMock.mockOnce(async (req) => {

const body = await req.text();

expect(body).toContain(`acl:accessTo <./>`);
expect(body).toContain(`acl:default <./>`);

aclCreated = true;

Expand All @@ -407,7 +450,7 @@ describe('SolidStore', () => {

});

await service.setPublicAccess('https://test.uri/');
await service.setPublicAccess(containerUri);
expect(client.access.setPublicAccess).toHaveBeenCalled();

});
Expand All @@ -418,7 +461,7 @@ describe('SolidStore', () => {

(client.access.getPublicAccess as any) = jest.fn(async () => Promise.reject(errResponse));

await expect(service.setPublicAccess('https://test.uri/')).rejects.toEqual(errResponse);
await expect(service.setPublicAccess(resourceUri)).rejects.toEqual(errResponse);

});

Expand Down
6 changes: 4 additions & 2 deletions packages/solid-crs-core/lib/solid/solid-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,16 @@ export class SolidStore<T extends Resource> implements Store<T> {
<#public>
a acl:Authorization;
acl:agentClass foaf:Agent;
acl:accessTo <${target}>;
acl:accessTo <${target.endsWith('/') ? './' : target}>;
${ target.endsWith('/') ? 'acl:default <./>;' : '' }
acl:mode acl:Read.

# The owner has full access to the entire directory.
<#owner>
a acl:Authorization;
acl:agent <${webId}>;
acl:accessTo <${target}>;
acl:accessTo <${target.endsWith('/') ? './' : target}>;
${ target.endsWith('/') ? 'acl:default <./>;' : '' }
acl:mode acl:Read, acl:Write, acl:Control.`;

await this.getSession().fetch(`${target}.acl`, {
Expand Down
4 changes: 2 additions & 2 deletions packages/solid-crs-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
],
"coverageThreshold": {
"global": {
"branches": 90.14,
"branches": 90.3,
"statements": 97.55,
"lines": 97.43,
"functions": 99.4
Expand Down Expand Up @@ -104,4 +104,4 @@
"testEnvironment": "jsdom",
"maxWorkers": 4
}
}
}
2 changes: 1 addition & 1 deletion packages/solid-crs-manage/.env.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_SEMCOM_NODE_URI=http://localhost:3003
VITE_SEMCOM_NODE_URI=https://solid-crs.netwerkdigitaalerfgoed.nl/semcom
VITE_TERM_ENDPOINT=https://termennetwerk-api.netwerkdigitaalerfgoed.nl/graphql
VITE_ID_PROXY_URI=https://auth.netwerkdigitaalerfgoed.nl/
VITE_WEBID_URI=https://webid.netwerkdigitaalerfgoed.nl/
Expand Down
33 changes: 23 additions & 10 deletions packages/solid-crs-manage/lib/app.machine.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,27 +125,40 @@ describe('AppMachine', () => {

});

it('should dismiss alert in context when sending dismissAlert', () => {
it('should dismiss alert in context when sending DismissAlertEvent', () => {

const alert: Alert = { type: 'success', message: 'foo' };

machine = interpret<AppContext>(
const machineWithAlerts = interpret<AppContext>(
appMachine(
solidService,
new CollectionMemoryStore([ collection1, collection2 ]),
new CollectionObjectMemoryStore([ object1 ]),
collection1,
object1
)
.withContext({
alerts: [ alert ],
}),
).withContext({
alerts: [ alert ],
}),
);

machine.start();
expect(machine.state.context.alerts.length).toBe(1);
machine.send(new DismissAlertEvent(alert));
expect(machine.state.context.alerts.length).toBe(0);
machineWithAlerts.start();

const first = true;

machineWithAlerts.onChange((context) => {

if (first) {

expect(context.alerts.length).toBe(1);
machineWithAlerts.send(new DismissAlertEvent(alert));

} else {

expect(context.alerts.length).toBe(0);

}

});

});

Expand Down
1 change: 1 addition & 0 deletions packages/solid-crs-manage/lib/app.machine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ export const appMachine = (
* The user has not been authenticated.
*/
[AppAuthenticateStates.UNAUTHENTICATED]: {
entry: send(() => new NavigatedEvent(`/login`)),
on: {
[AppEvents.LOGGED_IN]: {
target: AppAuthenticateStates.AUTHENTICATED,
Expand Down
3 changes: 0 additions & 3 deletions packages/solid-crs-manage/lib/app.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ export const createPod = async (solidService: SolidSDKService): Promise<string>
webId,
createPod: 'on',
podName: v5(webId, 'a2e08b56-67b9-49b9-894f-696052dbef9a'),
email: `${v5(webId, 'a2e08b56-67b9-49b9-894f-696052dbef9a')}@digita.ai`,
password: 'a',
confirmPassword: 'a',
}),
}
);
Expand Down
6 changes: 3 additions & 3 deletions packages/solid-crs-manage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@
],
"coverageThreshold": {
"global": {
"statements": 85.67,
"statements": 85.49,
"branches": 85.14,
"lines": 86.9,
"functions": 71.75
"lines": 86.7,
"functions": 71.26
}
},
"automock": false,
Expand Down
2 changes: 2 additions & 0 deletions packages/solid-crs-manage/tests/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ import { AuthenticateRootComponent } from '../lib/features/authenticate/authenti
},
});

(core.routerEventsConfig as any) = () => ({});

/**
* Enable mocks for fetch.
*/
Expand Down