Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions integration/test/ParseObjectTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,37 @@ describe('Parse Object', () => {
assert.equal(await object.exists(), false);
});

it('exists method should throw an error instead of returning false if limited by requiresAuthentication', async (done) => {
const clp = {
get: { requiresAuthentication: true },
find: {},
count: {},
create: { '*': true },
update: { requiresAuthentication: true },
delete: {},
addField: {},
protectedFields: {}
};
const testSchema = new Parse.Schema('SchemaTest');

testSchema.setCLP(clp);
const schema = await testSchema.save();

assert.deepEqual(schema.classLevelPermissions, clp);

const TestObject = Parse.Object.extend('SchemaTest');

const object = new TestObject();

await object.save();

object.exists().then(done.fail).catch((error) => {
assert.equal(error.code, Parse.Error.OperationForbidden);
done();
});

});

it('can find objects', (done) => {
const object = new TestObject({ foo: 'bar' });
object.save().then(() => {
Expand Down