Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CubicWebJS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
CubicWebJS
Commits
a769c32540fc
Commit
a769c32540fc
authored
9 months ago
by
Arnaud Vergnet
Browse files
Options
Downloads
Patches
Plain Diff
feat(rql-generator): Update to match new client api
parent
e2ac8569a64b
No related branches found
No related tags found
1 merge request
!103
feat(client): Update to match new API format
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/rql-generator/src/__tests__/utils/resultset.specs.ts
+24
-6
24 additions, 6 deletions
...ages/rql-generator/src/__tests__/utils/resultset.specs.ts
packages/rql-generator/src/utils/resultset.ts
+10
-8
10 additions, 8 deletions
packages/rql-generator/src/utils/resultset.ts
with
34 additions
and
14 deletions
packages/rql-generator/src/__tests__/utils/resultset.specs.ts
+
24
−
6
View file @
a769c325
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
();
});
});
});
});
...
...
This diff is collapsed.
Click to expand it.
packages/rql-generator/src/utils/resultset.ts
+
10
−
8
View file @
a769c325
...
@@ -81,10 +81,10 @@
...
@@ -81,10 +81,10 @@
)
{
)
{
throw
new
Error
(
throw
new
Error
(
"
Mismatching arguments.
"
+
"
Mismatching arguments.
"
+
`Got
${
row
.
length
-
1
}
row
s (not counting eid in first position) for
${
`Got
${
row
.
length
-
1
}
cell
s (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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment