mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/// bug-121
|
|
describe('Gun', function(){
|
|
var root;
|
|
(function(){
|
|
var env;
|
|
if(typeof global !== 'undefined'){ env = global }
|
|
if(typeof window !== 'undefined'){ env = window }
|
|
root = env.window? env.window : global;
|
|
try{ env.window && root.localStorage && root.localStorage.clear() }catch(e){}
|
|
try{ localStorage.clear() }catch(e){}
|
|
try{ indexedDB.deleteDatabase('radatatest') }catch(e){}
|
|
try{ require('fs').unlinkSync('data.json') }catch(e){}
|
|
try{ require('../../lib/fsrm')('radatatest') }catch(e){}
|
|
try{ var expect = global.expect = require("../expect") }catch(e){}
|
|
|
|
//root.Gun = root.Gun || require('../gun');
|
|
if(root.Gun){
|
|
root.Gun = root.Gun;
|
|
root.Gun.TESTING = true;
|
|
} else {
|
|
root.Gun = require('../../gun');
|
|
root.Gun.TESTING = true;
|
|
Gun.serve = require('../../lib/serve');
|
|
//require('../lib/file');
|
|
require('../../lib/store');
|
|
require('../../lib/rfs');
|
|
// require('../../sea.js');
|
|
}
|
|
}(this));
|
|
|
|
describe('API - map', function(){
|
|
it('map and put', function(done) {
|
|
var gun = Gun();
|
|
var ref = gun.get('test');
|
|
var value = {1:{v:11},2:{v:22},3:{v:33},4:{v:44},5:{v:55}};
|
|
ref.put(value, function(ack) {
|
|
if (ack.err) { expect(!ack.err).to.be(true); done(); return; }
|
|
var vput = 100;
|
|
ref.map().get('v').put(vput /*, function(ack) { console.log('MAP ACK:!!!!!!! ', ack); }*/);
|
|
var total = 0;
|
|
setTimeout(function() {
|
|
ref.map().get('v').once(function(v, k) {
|
|
expect(v === vput).to.be(true);
|
|
if (++total === 5) { done(); }
|
|
});
|
|
}, 1000);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|