Skip to content

Commit

Permalink
Fix: Proper handling of arrays for cloud validator (#7178)
Browse files Browse the repository at this point in the history
* fix: proper handling of arrays for cloud validator

* Update CloudCode.Validator.spec.js
  • Loading branch information
dblythy authored Feb 11, 2021
1 parent 7f47b04 commit 27d56f0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
18 changes: 18 additions & 0 deletions spec/CloudCode.Validator.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,24 @@ describe('cloud validator', () => {
});
});

it('set params type allow array', async () => {
Parse.Cloud.define(
'hello',
() => {
return 'Hello world!';
},
{
fields: {
data: {
type: Array,
},
},
}
);
const result = await Parse.Cloud.run('hello', { data: [{ foo: 'bar' }] });
expect(result).toBe('Hello world!');
});

it('set params type', done => {
Parse.Cloud.define(
'hello',
Expand Down
5 changes: 2 additions & 3 deletions src/triggers.js
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,8 @@ function builtInTriggerValidator(options, request) {
}
if (opt.type) {
const type = getType(opt.type);
if (type == 'array' && !Array.isArray(val)) {
throw `Validation failed. Invalid type for ${key}. Expected: array`;
} else if (typeof val !== type) {
const valType = Array.isArray(val) ? 'array' : typeof val;
if (valType !== type) {
throw `Validation failed. Invalid type for ${key}. Expected: ${type}`;
}
}
Expand Down

0 comments on commit 27d56f0

Please sign in to comment.