realm-js/tests/js/schemas.js

211 lines
6.2 KiB
JavaScript
Raw Normal View History

2016-02-18 19:59:34 +00:00
////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 Realm Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////
2015-08-14 15:18:49 +00:00
2015-08-13 16:12:48 +00:00
'use strict';
const Realm = require('realm');
exports.TestObject = {
name: 'TestObject',
properties: {
2016-07-13 16:53:47 +00:00
doubleCol: 'double',
}
2015-08-13 16:12:48 +00:00
};
function PersonObject() {}
PersonObject.schema = {
name: 'PersonObject',
properties: {
name: 'string',
age: 'double',
married: {type: 'bool', default: false},
children: {type: 'list', objectType: 'PersonObject'},
parents: {type: 'linkingObjects', objectType: 'PersonObject', property: 'children'},
}
2015-08-13 16:12:48 +00:00
};
PersonObject.prototype.description = function() {
return this.name + ' ' + this.age;
};
PersonObject.prototype.toString = function() {
return this.name;
};
Object.setPrototypeOf(PersonObject, Realm.Object);
Object.setPrototypeOf(PersonObject.prototype, Realm.Object.prototype);
2015-10-02 21:57:54 +00:00
exports.PersonObject = PersonObject;
2015-08-13 16:12:48 +00:00
2016-02-18 21:41:11 +00:00
exports.PersonList = {
name: 'PersonList',
properties: {
list: {type: 'list', objectType: 'PersonObject'},
}
};
exports.BasicTypes = {
2015-08-13 16:12:48 +00:00
name: 'BasicTypesObject',
properties: {
2016-07-13 16:53:47 +00:00
boolCol: 'bool',
intCol: 'int',
floatCol: 'float',
doubleCol: 'double',
stringCol: 'string',
dateCol: 'date',
dataCol: 'data',
}
2015-08-13 16:12:48 +00:00
};
exports.NullableBasicTypes = {
2015-10-27 17:04:56 +00:00
name: 'NullableBasicTypesObject',
properties: {
2016-07-13 16:53:47 +00:00
boolCol: {type: 'bool', optional: true},
intCol: {type: 'int', optional: true},
floatCol: {type: 'float', optional: true},
doubleCol: {type: 'double', optional: true},
stringCol: {type: 'string', optional: true},
dateCol: {type: 'date', optional: true},
dataCol: {type: 'data', optional: true},
}
};
2016-04-28 19:16:16 +00:00
exports.IndexedTypes = {
name: 'IndexedTypesObject',
properties: {
boolCol: {type: 'bool', indexed: true},
intCol: {type: 'int', indexed: true},
stringCol: {type: 'string', indexed: true},
dateCol: {type: 'date', indexed: true},
}
};
exports.LinkTypes = {
2015-08-13 16:12:48 +00:00
name: 'LinkTypesObject',
properties: {
objectCol: 'TestObject',
2016-07-13 16:53:47 +00:00
objectCol1: {type: 'object', objectType: 'TestObject'},
arrayCol: {type: 'list', objectType: 'TestObject'},
}
2015-08-13 16:12:48 +00:00
};
2015-09-03 21:05:56 +00:00
exports.IntPrimary = {
name: 'IntPrimaryObject',
primaryKey: 'primaryCol',
properties: {
2016-07-13 16:53:47 +00:00
primaryCol: 'int',
valueCol: 'string',
}
2015-09-03 21:05:56 +00:00
};
exports.StringPrimary = {
name: 'StringPrimaryObject',
primaryKey: 'primaryCol',
properties: {
2016-07-13 16:53:47 +00:00
primaryCol: 'string',
valueCol: 'int',
}
};
exports.AllTypes = {
name: 'AllTypesObject',
primaryKey: 'primaryCol',
properties: {
primaryCol: 'string',
boolCol: 'bool',
intCol: 'int',
floatCol: 'float',
doubleCol: 'double',
stringCol: 'string',
dateCol: 'date',
dataCol: 'data',
objectCol: 'TestObject',
arrayCol: {type: 'list', objectType: 'TestObject'},
linkingObjectsCol: {type: 'linkingObjects', objectType: 'LinkToAllTypesObject', property: 'allTypesCol'},
}
2015-09-04 19:41:17 +00:00
};
exports.LinkToAllTypes = {
name: 'LinkToAllTypesObject',
properties: {
allTypesCol: 'AllTypesObject',
}
}
exports.DefaultValues = {
name: 'DefaultValuesObject',
properties: {
2016-07-13 16:53:47 +00:00
boolCol: {type: 'bool', default: true},
intCol: {type: 'int', default: -1},
floatCol: {type: 'float', default: -1.1},
doubleCol: {type: 'double', default: -1.11},
stringCol: {type: 'string', default: 'defaultString'},
dateCol: {type: 'date', default: new Date(1.111)},
dataCol: {type: 'data', default: new ArrayBuffer(1)},
objectCol: {type: 'TestObject', default: {doubleCol: 1}},
nullObjectCol: {type: 'TestObject', default: null},
2016-07-13 16:53:47 +00:00
arrayCol: {type: 'list', objectType: 'TestObject', default: [{doubleCol: 2}]},
}
2015-09-04 22:43:26 +00:00
};
2015-11-16 23:05:50 +00:00
exports.QueryObject = {
name: 'QueryObject',
properties: [
2016-07-13 16:53:47 +00:00
{name: 'bool1', type: 'bool'},
{name: 'bool2', type: 'bool'},
{name: 'int1', type: 'int'},
{name: 'int2', type: 'int'},
{name: 'float1', type: 'float'},
{name: 'float2', type: 'float'},
{name: 'double1', type: 'double'},
{name: 'double2', type: 'double'},
{name: 'string1', type: 'string'},
{name: 'string2', type: 'string'},
2015-11-16 23:05:50 +00:00
]
};
exports.NullQueryObject = {
name: 'NullQueryObject',
properties: [
2016-07-13 16:53:47 +00:00
{name: 'bool1', type: 'bool'},
{name: 'bool2', type: 'bool'},
{name: 'int1', type: 'int'},
{name: 'int2', type: 'int'},
{name: 'float1', type: 'float'},
{name: 'float2', type: 'float'},
{name: 'double1', type: 'double'},
{name: 'double2', type: 'double'},
{name: 'string1', type: 'string'},
{name: 'string2', type: 'string'},
2015-11-16 23:05:50 +00:00
]
};
2016-05-13 22:29:59 +00:00
exports.DateObject = {
name: 'Date',
properties: {
currentDate: 'date',
nullDate: { type: 'date', optional: true }
2016-05-13 22:29:59 +00:00
}
};
exports.LinkingObjectsObject = {
name: 'LinkingObjectsObject',
properties: {
value: 'int',
links: {type: 'list', objectType: 'LinkingObjectsObject'},
linkingObjects: {type: 'linkingObjects', objectType: 'LinkingObjectsObject', property: 'links'}
}
}