2017-02-01 13:18:59 +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.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/* eslint-env es6, node */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const Realm = require('realm');
|
|
|
|
const TestCase = require('./asserts');
|
2017-05-11 20:22:28 +00:00
|
|
|
const tmp = require('tmp');
|
|
|
|
const fs = require('fs');
|
|
|
|
const execFile = require('child_process').execFile;
|
|
|
|
|
|
|
|
tmp.setGracefulCleanup();
|
2017-02-01 13:18:59 +00:00
|
|
|
|
|
|
|
function uuid() {
|
2017-05-11 20:22:28 +00:00
|
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
|
|
|
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
|
|
|
return v.toString(16);
|
|
|
|
});
|
2017-02-01 13:18:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function promisifiedRegister(server, username, password) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Realm.Sync.User.register(server, username, password, (error, user) => {
|
|
|
|
if (error) {
|
2017-05-11 20:22:28 +00:00
|
|
|
console.log(`promisifiedRegister ${error}`);
|
2017-02-01 13:18:59 +00:00
|
|
|
reject(error);
|
|
|
|
} else {
|
|
|
|
resolve(user);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-11 20:22:28 +00:00
|
|
|
function promisifiedLogin(server, username, password) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Realm.Sync.User.login(server, username, password, (error, user) => {
|
|
|
|
if (error) {
|
|
|
|
console.log(`promisifiedLogin ${error}`);
|
|
|
|
reject(error);
|
|
|
|
} else {
|
|
|
|
resolve(user);
|
|
|
|
}
|
2017-05-06 23:26:14 +00:00
|
|
|
});
|
2017-05-11 20:22:28 +00:00
|
|
|
});
|
|
|
|
}
|
2017-05-06 23:26:14 +00:00
|
|
|
|
2017-05-11 20:22:28 +00:00
|
|
|
module.exports = {
|
2017-05-06 23:26:14 +00:00
|
|
|
|
2017-05-11 20:22:28 +00:00
|
|
|
// testLocalRealmHasNoSession() {
|
|
|
|
// let realm = new Realm();
|
|
|
|
// TestCase.assertNull(realm.syncSession);
|
|
|
|
// },
|
|
|
|
|
|
|
|
// testProperties() {
|
|
|
|
// return promisifiedRegister('http://localhost:9080', uuid(), 'password').then(user => {
|
|
|
|
// return new Promise((resolve, reject) => {
|
|
|
|
|
|
|
|
// const accessTokenRefreshed = this;
|
|
|
|
// let successCounter = 0;
|
|
|
|
// function checkSuccess() {
|
|
|
|
// successCounter++;
|
|
|
|
// if (successCounter == 2) {
|
|
|
|
// resolve();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// function postTokenRefreshChecks(sender, error) {
|
|
|
|
// try {
|
|
|
|
// TestCase.assertEqual(error, accessTokenRefreshed);
|
|
|
|
// TestCase.assertEqual(sender.url, `realm://localhost:9080/${user.identity}/myrealm`);
|
|
|
|
// checkSuccess();
|
|
|
|
// }
|
|
|
|
// catch (e) {
|
|
|
|
// reject(e)
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
|
|
|
|
// // Let the error handler trigger our checks when the access token was refreshed.
|
|
|
|
// postTokenRefreshChecks._notifyOnAccessTokenRefreshed = accessTokenRefreshed;
|
|
|
|
|
|
|
|
// const config = { sync: { user, url: 'realm://localhost:9080/~/myrealm', error: postTokenRefreshChecks } };
|
|
|
|
// const realm = new Realm(config);
|
|
|
|
// const session = realm.syncSession;
|
|
|
|
// TestCase.assertInstanceOf(session, Realm.Sync.Session);
|
|
|
|
// TestCase.assertEqual(session.user.identity, user.identity);
|
|
|
|
// TestCase.assertEqual(session.config.url, config.sync.url);
|
|
|
|
// TestCase.assertEqual(session.config.user.identity, config.sync.user.identity);
|
|
|
|
// TestCase.assertUndefined(session.url);
|
|
|
|
// TestCase.assertEqual(session.state, 'active');
|
|
|
|
// checkSuccess();
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
|
|
|
|
testRealmOpen() {
|
|
|
|
const isNodeProccess = typeof process === 'object';
|
|
|
|
|
|
|
|
if (!isNodeProccess) {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
const username = uuid();
|
|
|
|
const username2 = uuid();
|
|
|
|
const realmName = uuid();
|
|
|
|
const expectedObjectsCount = 3;
|
|
|
|
|
|
|
|
let tmpDir = tmp.dirSync();
|
|
|
|
let content = fs.readFileSync(__dirname + '/download-api-helper.js', 'utf8');
|
|
|
|
let tmpFile = tmp.fileSync({ dir: tmpDir.name });
|
|
|
|
fs.appendFileSync(tmpFile.fd, content, { encoding : 'utf8' });
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const child = execFile('node', [tmpFile.name, username, realmName, REALM_MODULE_PATH], { cwd: tmpDir.name }, (error, stdout, stderr) => {
|
|
|
|
if (error) {
|
|
|
|
reject(new Error('Error executing download api helper' + error));
|
2017-05-06 23:26:14 +00:00
|
|
|
}
|
2017-05-11 20:22:28 +00:00
|
|
|
resolve();
|
2017-05-06 23:26:14 +00:00
|
|
|
});
|
2017-05-11 20:22:28 +00:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return promisifiedLogin('http://localhost:9080', username, 'password').then(user => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const accessTokenRefreshed = this;
|
|
|
|
let successCounter = 0;
|
|
|
|
|
|
|
|
let config = {
|
|
|
|
sync: { user, url: `realm://localhost:9080/~/${realmName}` },
|
|
|
|
schema: [{ name: 'Dog', properties: { name: 'string' } }],
|
|
|
|
};
|
|
|
|
|
|
|
|
Realm.open(config)
|
|
|
|
.then(realm => {
|
|
|
|
let actualObjectsCount = realm.objects('Dog').length;
|
|
|
|
TestCase.assertEqual(actualObjectsCount, expectedObjectsCount, "Synced realm does not contain the expected objects count");
|
|
|
|
|
|
|
|
const session = realm.syncSession;
|
|
|
|
TestCase.assertInstanceOf(session, Realm.Sync.Session);
|
|
|
|
TestCase.assertEqual(session.user.identity, user.identity);
|
|
|
|
TestCase.assertEqual(session.config.url, config.sync.url);
|
|
|
|
TestCase.assertEqual(session.config.user.identity, config.sync.user.identity);
|
|
|
|
TestCase.assertEqual(session.state, 'active');
|
|
|
|
resolve();
|
|
|
|
}).catch(e => { reject(e)});
|
2017-05-06 23:26:14 +00:00
|
|
|
});
|
2017-02-01 13:18:59 +00:00
|
|
|
});
|
2017-04-20 14:03:15 +00:00
|
|
|
});
|
2017-02-01 13:18:59 +00:00
|
|
|
}
|
2017-05-11 20:22:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
// testPropertiesWithOpenAsync() {
|
|
|
|
// return promisifiedRegister('http://localhost:9080', uuid(), 'password').then(user => {
|
|
|
|
// return new Promise((resolve, reject) => {
|
|
|
|
|
|
|
|
// const accessTokenRefreshed = this;
|
|
|
|
// let successCounter = 0;
|
|
|
|
|
|
|
|
// function checkSuccess() {
|
|
|
|
// successCounter++;
|
|
|
|
// if (successCounter == 2) {
|
|
|
|
// resolve();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// function postTokenRefreshChecks(sender, error) {
|
|
|
|
// try {
|
|
|
|
// TestCase.assertEqual(error, accessTokenRefreshed);
|
|
|
|
// TestCase.assertEqual(sender.url, `realm://localhost:9080/${user.identity}/myrealm`);
|
|
|
|
// checkSuccess();
|
|
|
|
// }
|
|
|
|
// catch (e) {
|
|
|
|
// reject(e)
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
|
|
|
|
// // Let the error handler trigger our checks when the access token was refreshed.
|
|
|
|
// postTokenRefreshChecks._notifyOnAccessTokenRefreshed = accessTokenRefreshed;
|
|
|
|
|
|
|
|
// const config = { sync: { user, url: 'realm://localhost:9080/~/myrealm', error: postTokenRefreshChecks } };
|
|
|
|
// Realm.openAsync(config, (error, realm) => {
|
|
|
|
// if (error) {
|
|
|
|
// reject(error);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// const session = realm.syncSession;
|
|
|
|
// TestCase.assertInstanceOf(session, Realm.Sync.Session);
|
|
|
|
// TestCase.assertEqual(session.user.identity, user.identity);
|
|
|
|
// TestCase.assertEqual(session.config.url, config.sync.url);
|
|
|
|
// TestCase.assertEqual(session.config.user.identity, config.sync.user.identity);
|
|
|
|
// TestCase.assertEqual(session.state, 'active');
|
|
|
|
|
|
|
|
// checkSuccess();
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
|
|
|
|
// testErrorHandling() {
|
|
|
|
// return promisifiedRegister('http://localhost:9080', uuid(), 'password').then(user => {
|
|
|
|
// return new Promise((resolve, _reject) => {
|
|
|
|
// const config = { sync: { user, url: 'realm://localhost:9080/~/myrealm' } };
|
|
|
|
// config.sync.error = (sender, error) => {
|
|
|
|
// try {
|
|
|
|
// TestCase.assertEqual(error.message, 'simulated error');
|
|
|
|
// TestCase.assertEqual(error.code, 123);
|
|
|
|
// resolve();
|
|
|
|
// }
|
|
|
|
// catch (e) {
|
|
|
|
// _reject(e);
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
// const realm = new Realm(config);
|
|
|
|
// const session = realm.syncSession;
|
|
|
|
|
|
|
|
// TestCase.assertEqual(session.config.error, config.sync.error);
|
|
|
|
// session._simulateError(123, 'simulated error');
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
}
|