2015-10-27 20:59:15 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
2015-08-14 15:18:49 +00:00
|
|
|
|
2015-08-13 16:12:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-08 23:19:19 +00:00
|
|
|
var Realm = require('realm');
|
2015-10-14 22:25:58 +00:00
|
|
|
var BaseTest = require('./base-test');
|
2015-10-06 07:57:35 +00:00
|
|
|
var TestCase = require('./asserts');
|
|
|
|
var schemas = require('./schemas');
|
|
|
|
|
2015-10-14 22:25:58 +00:00
|
|
|
module.exports = BaseTest.extend({
|
2015-08-13 16:12:48 +00:00
|
|
|
testResultsLength: function() {
|
2015-10-06 07:57:35 +00:00
|
|
|
var realm = new Realm({schema: [schemas.TestObject]});
|
2015-08-13 16:12:48 +00:00
|
|
|
var objects = realm.objects('TestObject');
|
|
|
|
TestCase.assertEqual(objects.length, 0);
|
|
|
|
|
|
|
|
realm.write(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
realm.create('TestObject', {doubleCol: 1});
|
2015-08-13 16:12:48 +00:00
|
|
|
TestCase.assertEqual(objects.length, 1);
|
|
|
|
});
|
|
|
|
TestCase.assertEqual(objects.length, 1);
|
|
|
|
},
|
|
|
|
testResultsSubscript: function() {
|
2015-10-06 07:57:35 +00:00
|
|
|
var realm = new Realm({schema: [schemas.PersonObject]});
|
2015-08-13 16:12:48 +00:00
|
|
|
realm.write(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
realm.create('PersonObject', {name: 'name1', age: 1});
|
|
|
|
realm.create('PersonObject', {name: 'name2', age: 2});
|
2015-08-13 16:12:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var people = realm.objects('PersonObject');
|
|
|
|
TestCase.assertEqual(people[0].age, 1);
|
|
|
|
TestCase.assertEqual(people[1].age, 2);
|
2015-10-12 22:35:13 +00:00
|
|
|
TestCase.assertEqual(people[2], undefined);
|
|
|
|
TestCase.assertEqual(people[-1], undefined);
|
2015-10-06 07:57:35 +00:00
|
|
|
TestCase.assertTrue(Object.getPrototypeOf(people[0]) === schemas.PersonObject.prototype);
|
2015-10-21 22:17:55 +00:00
|
|
|
TestCase.assertTrue(people[0] instanceof schemas.PersonObject);
|
2015-08-13 16:12:48 +00:00
|
|
|
},
|
2015-10-21 22:25:15 +00:00
|
|
|
testResultsReadonly: function() {
|
|
|
|
var realm = new Realm({schema: [schemas.TestObject]});
|
|
|
|
var objects = realm.objects('TestObject');
|
|
|
|
|
|
|
|
realm.write(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
realm.create('TestObject', {doubleCol: 1});
|
2015-10-21 22:25:15 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
TestCase.assertThrows(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
objects[-1] = {doubleCol: 0};
|
2015-10-21 22:25:15 +00:00
|
|
|
});
|
|
|
|
TestCase.assertThrows(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
objects[0] = {doubleCol: 0};
|
2015-10-21 22:25:15 +00:00
|
|
|
});
|
|
|
|
TestCase.assertThrows(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
objects[1] = {doubleCol: 0};
|
2015-10-21 22:25:15 +00:00
|
|
|
});
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
objects.length = 0;
|
|
|
|
});
|
|
|
|
},
|
2015-08-13 16:12:48 +00:00
|
|
|
testResultsInvalidProperty: function() {
|
2015-10-06 07:57:35 +00:00
|
|
|
var realm = new Realm({schema: [schemas.TestObject]});
|
2015-08-13 16:12:48 +00:00
|
|
|
var objects = realm.objects('TestObject');
|
|
|
|
TestCase.assertEqual(undefined, objects.ablasdf);
|
|
|
|
},
|
2015-09-01 23:23:42 +00:00
|
|
|
testResultsInvalidObjectType: function() {
|
2015-10-06 07:57:35 +00:00
|
|
|
var realm = new Realm({schema: [schemas.TestObject]});
|
2015-09-01 23:23:42 +00:00
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
var objects = realm.objects('NotTestObject');
|
|
|
|
});
|
|
|
|
},
|
2015-08-14 17:47:56 +00:00
|
|
|
testResultsEnumerate: function() {
|
2015-10-06 07:57:35 +00:00
|
|
|
var realm = new Realm({schema: [schemas.TestObject]});
|
2015-08-13 16:12:48 +00:00
|
|
|
var objects = realm.objects('TestObject');
|
2015-11-02 20:02:53 +00:00
|
|
|
|
|
|
|
for (var index in objects) {
|
2015-08-13 16:12:48 +00:00
|
|
|
TestCase.assertTrue(false, "No objects should have been enumerated");
|
|
|
|
}
|
|
|
|
|
|
|
|
realm.write(function() {
|
2015-11-02 20:02:53 +00:00
|
|
|
realm.create('TestObject', {doubleCol: 1});
|
2015-08-13 16:12:48 +00:00
|
|
|
TestCase.assertEqual(objects.length, 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
var count = 0;
|
2015-10-21 22:21:17 +00:00
|
|
|
var keys = Object.keys(objects);
|
|
|
|
for (var index in objects) {
|
|
|
|
TestCase.assertEqual(count++, +index);
|
|
|
|
TestCase.assertEqual(keys[index], index);
|
|
|
|
}
|
|
|
|
|
|
|
|
TestCase.assertEqual(count, 1);
|
|
|
|
TestCase.assertEqual(keys.length, 1);
|
2015-08-13 16:12:48 +00:00
|
|
|
},
|
2016-02-18 04:06:42 +00:00
|
|
|
testResultsFiltered: function() {
|
|
|
|
var realm = new Realm({schema: [schemas.PersonObject, schemas.DefaultValues, schemas.TestObject]});
|
|
|
|
realm.write(function() {
|
|
|
|
realm.create('PersonObject', {name: 'Ari', age: 10});
|
|
|
|
realm.create('PersonObject', {name: 'Tim', age: 11});
|
|
|
|
realm.create('PersonObject', {name: 'Bjarne', age: 12});
|
|
|
|
realm.create('PersonObject', {name: 'Alex', age: 12, married: true});
|
|
|
|
});
|
|
|
|
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered("truepredicate").length, 4);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').length, 4);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age = 11').length, 1);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age = 11')[0].name, 'Tim');
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age = 12').length, 2);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age = 13').length, 0);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age < 12').length, 2);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age > 10 && age < 13').length, 3);
|
2016-02-18 04:09:39 +00:00
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age > 10').filtered('age < 13').length, 3);
|
|
|
|
|
2016-02-18 04:06:42 +00:00
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age >= 11 && age < 13').length, 3);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('name = "Tim"').length, 1);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('name = \'Tim\'').length, 1);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('married == TRUE').length, 1);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('married == false').length, 3);
|
|
|
|
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('name = $0', 'Tim').length, 1);
|
|
|
|
TestCase.assertEqual(realm.objects('PersonObject').filtered('age > $1 && age < $0', 13, 10).length, 3);
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
realm.objects('PersonObject').filtered('age > $2 && age < $0', 13, 10)
|
|
|
|
});
|
|
|
|
|
|
|
|
realm.write(function() {
|
|
|
|
realm.create('DefaultValuesObject', {'dateCol': new Date(3)});
|
|
|
|
realm.create('DefaultValuesObject', {'dateCol': new Date(4)});
|
|
|
|
realm.create('DefaultValuesObject', {'dateCol': new Date(5)});
|
|
|
|
});
|
|
|
|
|
|
|
|
TestCase.assertEqual(realm.objects('DefaultValuesObject').filtered('dateCol > $0', new Date(4)).length, 1);
|
|
|
|
TestCase.assertEqual(realm.objects('DefaultValuesObject').filtered('dateCol <= $0', new Date(4)).length, 2);
|
2016-02-18 04:51:03 +00:00
|
|
|
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
realm.objects('PersonObject').filtered("invalidQuery");
|
|
|
|
});
|
2016-02-18 04:06:42 +00:00
|
|
|
},
|
2015-09-03 22:46:31 +00:00
|
|
|
testSort: function() {
|
2016-01-13 10:40:26 +00:00
|
|
|
var realm = new Realm({schema: [schemas.IntPrimary]});
|
|
|
|
var objects = realm.objects('IntPrimaryObject');
|
2015-11-02 20:02:53 +00:00
|
|
|
|
2015-09-03 22:46:31 +00:00
|
|
|
realm.write(function() {
|
2016-01-13 10:40:26 +00:00
|
|
|
realm.create('IntPrimaryObject', {primaryCol: 2, valueCol: 'a'});
|
|
|
|
realm.create('IntPrimaryObject', {primaryCol: 3, valueCol: 'a'});
|
|
|
|
realm.create('IntPrimaryObject', {primaryCol: 1, valueCol: 'b'});
|
|
|
|
realm.create('IntPrimaryObject', {primaryCol: 4, valueCol: 'c'});
|
|
|
|
realm.create('IntPrimaryObject', {primaryCol: 0, valueCol: 'c'});
|
|
|
|
});
|
|
|
|
|
|
|
|
var primaries = function(results, prop) {
|
|
|
|
return Array.prototype.map.call(results, function(object) {
|
|
|
|
return object.primaryCol;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
objects = objects.sortedBy('primaryCol');
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [0, 1, 2, 3, 4]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy('primaryCol', true);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [4, 3, 2, 1, 0]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['primaryCol', 'valueCol']);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [0, 1, 2, 3, 4]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['primaryCol', 'valueCol'], true);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [4, 3, 2, 1, 0]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['primaryCol', 'valueCol'], [false]);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [0, 1, 2, 3, 4]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['valueCol', 'primaryCol']);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [2, 3, 1, 0, 4]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['valueCol', 'primaryCol'], [false, true]);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [3, 2, 1, 4, 0]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['valueCol', 'primaryCol'], [true, false]);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [0, 4, 1, 2, 3]);
|
|
|
|
|
|
|
|
objects = objects.sortedBy(['valueCol', 'primaryCol'], true);
|
|
|
|
TestCase.assertArraysEqual(primaries(objects), [4, 0, 1, 3, 2]);
|
|
|
|
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
objects.sortedBy(1);
|
|
|
|
});
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
objects.sortedBy([1]);
|
|
|
|
});
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
objects.sortedBy('fish');
|
|
|
|
});
|
|
|
|
TestCase.assertThrows(function() {
|
|
|
|
objects.sortedBy(['valueCol', 'fish']);
|
|
|
|
});
|
2015-09-03 22:46:31 +00:00
|
|
|
},
|
2015-10-14 22:25:58 +00:00
|
|
|
});
|