Skip to content
This repository was archived by the owner on Jan 8, 2025. It is now read-only.

Commit 2cf9035

Browse files
committed
fix: test coverage
1 parent f2267b8 commit 2cf9035

10 files changed

+1669
-3003
lines changed

.example.env

-3
This file was deleted.

.vscode/settings.json

-7
This file was deleted.

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@
4444
"url": "https://github.com/ludwigschubi/shex-methods/issues"
4545
},
4646
"devDependencies": {
47-
"@babel/preset-env": "7.16.4",
48-
"@babel/preset-typescript": "7.16.0",
47+
"@babel/helper-get-function-arity": "^7.16.7",
48+
"@babel/preset-env": "^7.22.20",
49+
"@babel/preset-typescript": "^7.23.0",
4950
"@shexjs/neighborhood-api": "^1.0.0-alpha.25",
5051
"@types/jest": "26.0.24",
5152
"@types/n3": "^1.10.4",
@@ -58,12 +59,12 @@
5859
"eslint-plugin-prettier": "3.4.1",
5960
"gh-pages": "3.2.3",
6061
"husky": "7.0.4",
61-
"jest": "26.6.3",
62+
"jest": "^29.7.0",
6263
"lint-staged": "12.1.2",
6364
"nodemon": "2.0.15",
6465
"prettier": "2.5.1",
6566
"rimraf": "3.0.2",
66-
"shex-codegen": "^0.4.3",
67+
"shex-codegen": "^0.4.9",
6768
"solid-node-client": "2.1.0",
6869
"ts-node": "10.4.0",
6970
"typedoc": "0.22.10",

shex-codegen.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# path to the folder or file with shape expressions
2-
schema: "test/resources"
2+
schema: 'test/resources'
33
generates:
44
# this will be the path of the generated file. It has to end with .ts
55
test/resources/shex.ts:
66
# the visitors to visit the schema with
77
- typescript
8-
- typescript-methods
8+
- typescript-methods
9+
customMethodsImport: '../../src'

src/handlers/create.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { IndexedFormula, NamedNode, Statement, UpdateManager } from 'rdflib'
1+
import { IndexedFormula, NamedNode, Statement } from 'rdflib'
22

33
import { QueryResult, Shape } from '../shape'
44
import {
5+
ValidationResult,
56
getAllStatementsOfNode,
67
validateShex,
7-
ValidationResult,
88
} from '../validate'
99

1010
export interface CreateArgs<CreateShapeArgs> {

test/handlers/create.test.ts

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Literal } from 'rdflib';
22

33
import setupTests from '../setupTests';
4-
import { Shape } from '../../lib';
4+
import { Shape } from '../../src';
55
import { podUrl } from '../common';
66
import {
77
chatShex,
@@ -61,9 +61,9 @@ describe('.create()', () => {
6161
expect(errors).toBeUndefined();
6262
expect(data).toBeDefined();
6363
expect(doc).toBe(testDoc);
64-
expect(data.title).toBe('Test Chat');
65-
expect(data.author).toBe(webId);
66-
expect(data.type).toBe(ChatShapeType.LongChat);
64+
expect(data?.title).toBe('Test Chat');
65+
expect(data?.author).toBe(webId);
66+
expect(data?.type).toBe(ChatShapeType.LongChat);
6767
});
6868

6969
it('can create one shape in a new doc', async () => {
@@ -81,10 +81,10 @@ describe('.create()', () => {
8181
expect(errors).toBeUndefined();
8282
expect(data).toBeDefined();
8383
expect(doc).toBe(newDoc);
84-
expect(data.id).toBe(newChatIri);
85-
expect(data.title).toBe('Test Chat');
86-
expect(data.author).toBe(webId);
87-
expect(data.type).toBe(ChatShapeType.LongChat);
84+
expect(data?.id).toBe(newChatIri);
85+
expect(data?.title).toBe('Test Chat');
86+
expect(data?.author).toBe(webId);
87+
expect(data?.type).toBe(ChatShapeType.LongChat);
8888
});
8989

9090
it('can create one shape without type', async () => {
@@ -102,8 +102,8 @@ describe('.create()', () => {
102102
expect(errors).toBeUndefined();
103103
expect(data).toBeDefined();
104104
expect(doc).toBe(testDoc);
105-
expect(data.content).toBe('Test Message');
106-
expect(data.maker).toBe(webId);
105+
expect(data?.content).toBe('Test Message');
106+
expect(data?.maker).toBe(webId);
107107
});
108108

109109
it("throws error when data doesn't match cardinality", async () => {
@@ -121,7 +121,7 @@ describe('.create()', () => {
121121
expect(doc).toBe(testDoc);
122122
expect(data).toBeUndefined();
123123
expect(errors).toBeDefined();
124-
expect(errors.join('\n')).toContain('exceeds cardinality');
124+
expect(errors?.join('\n')).toContain('exceeds cardinality');
125125
});
126126

127127
it('throws error when shape with id already exists in doc', async () => {
@@ -152,7 +152,7 @@ describe('.create()', () => {
152152
data: {
153153
id: secondChatIri,
154154
type: ChatShapeType.LongChat,
155-
title: 0,
155+
title: 0 as unknown as string,
156156
author: new URL(webId),
157157
created: new Literal(new Date().toISOString()),
158158
},
@@ -161,7 +161,7 @@ describe('.create()', () => {
161161
expect(doc).toBe(testDoc);
162162
expect(data).toBeUndefined();
163163
expect(errors).toBeDefined();
164-
expect(errors.join('\n')).toContain('Missing property');
164+
expect(errors?.join('\n')).toContain('Missing property');
165165
});
166166

167167
it("throws error when validating and context doesn't match", async () => {

test/handlers/findOne.test.ts

+10-6
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,22 @@ describe('.findOne()', () => {
4848
});
4949
const { doc, data } = shape;
5050
expect(doc).toBe(profileIri);
51-
expect(data.name).toBe('Local Solid User');
52-
expect(data['foaf:name']).toBe('Local Solid User');
53-
expect(data.trustedApp['acl:origin']).toBe('http://example.org/');
51+
expect(data).toBeDefined()
52+
if (data && data.trustedApp) {
53+
expect(data.name).toBe('Local Solid User');
54+
expect(data['foaf:name']).toBe('Local Solid User');
55+
expect(data.trustedApp['acl:origin']).toBe('http://example.org/');
56+
}
5457
});
55-
58+
5659
it('can display document of one shape', async () => {
5760
const shape = await solidProfile.findOne({
5861
doc: profileIri,
5962
where: { id: profileIri },
6063
});
61-
const { data } = shape;
62-
expect(data.__doc).toBe(profileIri);
64+
const { data, doc } = shape;
65+
expect(data).toBeDefined()
66+
expect(doc).toBe(profileIri);
6367
});
6468

6569
it('should return an error for finding the wrong shape', async () => {

test/handlers/update.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Literal } from 'rdflib';
22

3-
import { Shape } from '../../lib';
3+
import { Shape } from '../../src';
44
import { podUrl } from '../common';
55
import {
66
chatShex,
@@ -88,9 +88,9 @@ describe('.update()', () => {
8888
expect(errors).toBeUndefined();
8989
expect(data).toBeDefined();
9090
expect(doc).toBe(testDoc);
91-
expect(data.title).toBe(testString);
92-
expect(data.author).toBe(profileIri);
93-
expect(data.type).toBe(ChatShapeType.LongChat);
91+
expect(data?.title).toBe(testString);
92+
expect(data?.author).toBe(profileIri);
93+
expect(data?.type).toBe(ChatShapeType.LongChat);
9494
});
9595

9696
it('deletes values if they are empty', async () => {
@@ -105,7 +105,7 @@ describe('.update()', () => {
105105
expect(errors).toBeUndefined();
106106
expect(data).toBeDefined();
107107
expect(doc).toBe(testDoc);
108-
expect(data.sharedPreferences).toBeUndefined();
108+
expect(data?.sharedPreferences).toBeUndefined();
109109
});
110110

111111
it('can update a shape with a nested value', async () => {
@@ -131,7 +131,7 @@ describe('.update()', () => {
131131
expect(errors).toBeUndefined();
132132
expect(data).toBeDefined();
133133
expect(doc).toBe(profileIri);
134-
expect((data.trustedApp as TrustedAppShape)[0].origin).toBeDefined();
134+
expect((data?.trustedApp as TrustedAppShape)[0].origin).toBeDefined();
135135
});
136136

137137
it("throws error when data doesn't match cardinality", async () => {
@@ -146,7 +146,7 @@ describe('.update()', () => {
146146
expect(doc).toBe(testDoc);
147147
expect(data).toBeUndefined();
148148
expect(errors).toBeDefined();
149-
expect(errors.join('\n')).toContain('exceeds cardinality');
149+
expect(errors?.join('\n')).toContain('exceeds cardinality');
150150
});
151151

152152
it("throws error when data doesn't match shex", async () => {
@@ -161,7 +161,7 @@ describe('.update()', () => {
161161
expect(doc).toBe(testDoc);
162162
expect(data).toBeUndefined();
163163
expect(errors).toBeDefined();
164-
expect(errors.join('\n')).toContain('Missing property');
164+
expect(errors?.join('\n')).toContain('Missing property');
165165
});
166166

167167
it("throws error when transforming and context doesn't match", async () => {

test/setupTests.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import { rmSync, existsSync } from 'fs';
22

3-
import { SolidNodeClient } from 'solid-node-client';
3+
import { SolidNodeClient } from 'solid-node-client/dist/esm';
44

5-
export default (): SolidNodeClient => {
5+
export const setup = (): SolidNodeClient => {
66
const client = new SolidNodeClient();
77
if (existsSync(`${process.cwd()}/testdata`)) {
88
rmSync(`${process.cwd()}/testdata`, { recursive: true });
99
}
1010
return client;
1111
};
12+
13+
export default setup

0 commit comments

Comments
 (0)