Skip to content
Snippets Groups Projects
Commit a769c32540fc authored by Arnaud Vergnet's avatar Arnaud Vergnet :sun_with_face:
Browse files

feat(rql-generator): Update to match new client api

parent e2ac8569a64b
No related branches found
No related tags found
1 merge request!103feat(client): Update to match new API format
import { rowToEntity } from "../../utils/resultset.js"; import { rowToEntity } from "../../utils/resultset.js";
import { getLooseSchema } from "@cubicweb/client"; import { ResultSetRow, getLooseSchema } from "@cubicweb/client";
import { import {
BLOG_ENTRY_ATTRIBUTES, BLOG_ENTRY_ATTRIBUTES,
BLOG_ENTRY_SUBJECTS, BLOG_ENTRY_SUBJECTS,
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
const blogEntity = getLooseSchema(mockBlogSchema).getEntity("Blog")!; const blogEntity = getLooseSchema(mockBlogSchema).getEntity("Blog")!;
it("should return an empty object", () => { it("should return an empty object", () => {
expect(rowToEntity([], [], [], [])).toMatchObject({}); expect(rowToEntity(new ResultSetRow([], []), [], [], [])).toMatchObject({});
}); });
describe("handling data", () => { describe("handling data", () => {
it("should handle attributes", () => { it("should handle attributes", () => {
expect( expect(
rowToEntity( rowToEntity(
...@@ -16,10 +16,13 @@ ...@@ -16,10 +16,13 @@
}); });
describe("handling data", () => { describe("handling data", () => {
it("should handle attributes", () => { it("should handle attributes", () => {
expect( expect(
rowToEntity( rowToEntity(
[0, "test_content", "test_content_format", "test_title"], new ResultSetRow(
[],
[0, "test_content", "test_content_format", "test_title"]
),
BLOG_ENTRY_ATTRIBUTES, BLOG_ENTRY_ATTRIBUTES,
[], [],
[] []
...@@ -33,7 +36,12 @@ ...@@ -33,7 +36,12 @@
}); });
it("should handle subject relations", () => { it("should handle subject relations", () => {
expect( expect(
rowToEntity([0, "5, 2", "1"], [], BLOG_ENTRY_SUBJECTS, []) rowToEntity(
new ResultSetRow([], [0, "5, 2", "1"]),
[],
BLOG_ENTRY_SUBJECTS,
[]
)
).toMatchObject({ ).toMatchObject({
eid: 0, eid: 0,
creator: [5, 2], creator: [5, 2],
...@@ -42,7 +50,12 @@ ...@@ -42,7 +50,12 @@
}); });
it("should handle object relations", () => { it("should handle object relations", () => {
expect( expect(
rowToEntity([0, "1"], [], [], blogEntity.relationDefinitions.object) rowToEntity(
new ResultSetRow([], [0, "1"]),
[],
[],
blogEntity.relationDefinitions.object
)
).toMatchObject({ ).toMatchObject({
eid: 0, eid: 0,
reverse_entry_of: [1], reverse_entry_of: [1],
...@@ -50,7 +63,12 @@ ...@@ -50,7 +63,12 @@
}); });
it("should detect arrays of different lengths", () => { it("should detect arrays of different lengths", () => {
expect(() => expect(() =>
rowToEntity([0, "test"], blogEntryEntity.attributes, [], []) rowToEntity(
new ResultSetRow([], [0, "test"]),
blogEntryEntity.attributes,
[],
[]
)
).toThrow(); ).toThrow();
}); });
}); });
......
...@@ -81,10 +81,10 @@ ...@@ -81,10 +81,10 @@
) { ) {
throw new Error( throw new Error(
"Mismatching arguments. " + "Mismatching arguments. " +
`Got ${row.length - 1} rows (not counting eid in first position) for ${ `Got ${row.length - 1} cells (not counting eid in first position) for ${
attributes.length attributes.length
} attributes, ${subjectRelations.length} subject relations and ${ } attributes, ${subjectRelations.length} subject relations and ${
objectRelations.length objectRelations.length
} object relations.` } object relations.`
); );
} }
...@@ -85,10 +85,10 @@ ...@@ -85,10 +85,10 @@
attributes.length attributes.length
} attributes, ${subjectRelations.length} subject relations and ${ } attributes, ${subjectRelations.length} subject relations and ${
objectRelations.length objectRelations.length
} object relations.` } object relations.`
); );
} }
let parsedId = row[0] as EntityId; let parsedId = row.getCell(0) as EntityId;
if (typeof parsedId === "string") { if (typeof parsedId === "string") {
parsedId = parseInt(parsedId); parsedId = parseInt(parsedId);
if (isNaN(parsedId)) { if (isNaN(parsedId)) {
...@@ -92,8 +92,8 @@ ...@@ -92,8 +92,8 @@
if (typeof parsedId === "string") { if (typeof parsedId === "string") {
parsedId = parseInt(parsedId); parsedId = parseInt(parsedId);
if (isNaN(parsedId)) { if (isNaN(parsedId)) {
parsedId = row[0] as EntityId; parsedId = row.getCell(0) as EntityId;
} }
} }
const result: EntityData = { eid: parsedId }; const result: EntityData = { eid: parsedId };
attributes.forEach((r, i) => { attributes.forEach((r, i) => {
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
} }
} }
const result: EntityData = { eid: parsedId }; const result: EntityData = { eid: parsedId };
attributes.forEach((r, i) => { attributes.forEach((r, i) => {
result[r.type] = row[i + 1]; result[r.type] = row.getCell(i + 1);
}); });
subjectRelations.forEach((r, i) => { subjectRelations.forEach((r, i) => {
...@@ -101,9 +101,9 @@ ...@@ -101,9 +101,9 @@
}); });
subjectRelations.forEach((r, i) => { subjectRelations.forEach((r, i) => {
const value = row[i + attributes.length + 1]; const value = row.getCell(i + attributes.length + 1);
result[r.type] = result[r.type] =
isCardinalityMultiple(r.cardinality.subject) && value isCardinalityMultiple(r.cardinality.subject) && value
? parseEidList(value as string) ? parseEidList(value as string)
: value; : value;
}); });
objectRelations.forEach((r, i) => { objectRelations.forEach((r, i) => {
...@@ -104,10 +104,12 @@ ...@@ -104,10 +104,12 @@
result[r.type] = result[r.type] =
isCardinalityMultiple(r.cardinality.subject) && value isCardinalityMultiple(r.cardinality.subject) && value
? parseEidList(value as string) ? parseEidList(value as string)
: value; : value;
}); });
objectRelations.forEach((r, i) => { objectRelations.forEach((r, i) => {
const value = row[i + attributes.length + subjectRelations.length + 1]; const value = row.getCell(
i + attributes.length + subjectRelations.length + 1
);
result[getReverseRelationType(r.type)] = result[getReverseRelationType(r.type)] =
isCardinalityMultiple(r.cardinality.object) && value isCardinalityMultiple(r.cardinality.object) && value
? parseEidList(value as string) ? parseEidList(value as string)
...@@ -132,7 +134,7 @@ ...@@ -132,7 +134,7 @@
getRelationsSchemata(entitySchema, relations); getRelationsSchemata(entitySchema, relations);
return rowToEntity( return rowToEntity(
resultSet.rows[0], resultSet.getRow(0),
attributes, attributes,
subjectRelations, subjectRelations,
objectRelations objectRelations
...@@ -154,7 +156,7 @@ ...@@ -154,7 +156,7 @@
getRelationsSchemata(entitySchema, resolve); getRelationsSchemata(entitySchema, resolve);
return rowsToEntities( return rowsToEntities(
resultSet.rows, Array.from(resultSet),
attributes, attributes,
subjectRelations, subjectRelations,
objectRelations objectRelations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment