Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Aurélien Vermylen
jio
Commits
1d9dd278
Commit
1d9dd278
authored
Jun 30, 2017
by
Vincent Bechu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mappingstorage: fix post when id is mapped
parent
d88755c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
10 deletions
+18
-10
src/jio.storage/mappingstorage.js
src/jio.storage/mappingstorage.js
+10
-7
test/jio.storage/mappingstorage.tests.js
test/jio.storage/mappingstorage.tests.js
+8
-3
No files found.
src/jio.storage/mappingstorage.js
View file @
1d9dd278
...
...
@@ -10,6 +10,12 @@
if
(
storage
.
_no_sub_query_id
)
{
throw
new
jIO
.
util
.
jIOError
(
'
no sub query id active
'
,
404
);
}
if
(
value
===
undefined
)
{
throw
new
jIO
.
util
.
jIOError
(
'
can not find document with
'
+
key
+
'
: undefined
'
,
404
);
}
query
=
new
SimpleQuery
({
key
:
key
,
value
:
value
,
...
...
@@ -30,13 +36,13 @@
"
limit
"
:
storage
.
_query
.
limit
})
.
push
(
function
(
data
)
{
if
(
data
.
data
.
rows
.
length
===
0
)
{
if
(
data
.
data
.
total_rows
===
0
)
{
throw
new
jIO
.
util
.
jIOError
(
"
Can not find
id
"
,
"
Can not find
document with (
"
+
key
+
"
,
"
+
value
+
"
)
"
,
404
);
}
if
(
data
.
data
.
rows
.
length
>
1
)
{
if
(
data
.
data
.
total_rows
>
1
)
{
throw
new
TypeError
(
"
id must be unique field:
"
+
key
+
"
, result:
"
+
data
.
data
.
rows
.
toString
());
}
...
...
@@ -63,9 +69,6 @@
doc
.
hasOwnProperty
(
storage
.
_property_for_sub_id
))
{
return
doc
[
storage
.
_property_for_sub_id
];
}
if
(
doc
.
hasOwnProperty
(
args
))
{
return
doc
[
args
];
}
}
return
getSubIdEqualSubProperty
(
storage
,
id
,
storage
.
_map_id
[
1
]);
},
...
...
@@ -342,7 +345,7 @@
if
(
this
.
_property_for_sub_id
&&
id
!==
undefined
)
{
return
this
.
_sub_storage
.
put
(
id
,
sub_doc
);
}
if
(
!
this
.
_id_mapped
||
doc
[
this
.
_id_mapped
]
!==
undefined
)
{
if
(
this
.
_id_mapped
&&
doc
[
this
.
_id_mapped
]
!==
undefined
)
{
return
getSubStorageId
(
storage
,
id
,
doc
)
.
push
(
function
(
sub_id
)
{
return
storage
.
_sub_storage
.
put
(
sub_id
,
sub_doc
);
...
...
test/jio.storage/mappingstorage.tests.js
View file @
1d9dd278
...
...
@@ -654,7 +654,7 @@
test
(
"
with id equalSubProperty and id in doc
"
,
function
()
{
stop
();
expect
(
3
);
expect
(
2
);
var
jio
=
jIO
.
createJIO
({
type
:
"
mapping
"
,
...
...
@@ -664,9 +664,14 @@
}
});
Storage2713
.
prototype
.
buildQuery
=
function
(
options
)
{
equal
(
options
.
query
,
'
otherId: "bar"
'
,
"
allDoc 2713 called
"
);
return
[];
};
Storage2713
.
prototype
.
post
=
function
(
doc
)
{
deepEqual
(
doc
,
{
"
title
"
:
"
foo
"
,
"
otherId
"
:
"
bar
"
},
"
post 2713 called
"
);
return
"
42
"
;
return
"
bar
"
;
};
Storage2713
.
prototype
.
put
=
function
(
id
,
doc
)
{
...
...
@@ -675,7 +680,7 @@
"
title
"
:
"
foo
"
,
"
otherId
"
:
"
bar
"
},
"
put 2713 called
"
);
return
"
42
"
;
return
"
bar
"
;
};
jio
.
post
({
"
title
"
:
"
foo
"
,
"
otherId
"
:
"
bar
"
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment