1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 23:41:32 +00:00
8bitworkshop/test/cli/teststore.js

153 lines
4.1 KiB
JavaScript
Raw Normal View History

2018-06-29 23:44:04 +00:00
"use strict";
var vm = require('vm');
var fs = require('fs');
var assert = require('assert');
var includeInThisContext = function(path) {
var code = fs.readFileSync(path);
vm.runInThisContext(code, path);
};
var localItems = {};
2018-06-30 14:26:41 +00:00
var localMods = 0;
2018-06-29 23:44:04 +00:00
global.localStorage = {
2018-06-30 14:26:41 +00:00
clear: function() {
localItems = {};
localMods = 0;
this.length = 0;
},
2018-06-29 23:44:04 +00:00
getItem: function(k) {
2018-06-30 14:26:41 +00:00
console.log('get',k);
2018-06-29 23:44:04 +00:00
return localItems[k];
},
setItem: function(k,v) {
2018-06-30 14:26:41 +00:00
console.log('set',k,v);
if (!localItems[k]) this.length++;
2018-06-29 23:44:04 +00:00
localItems[k] = v;
2018-06-30 14:26:41 +00:00
localMods++;
},
removeItem: function(k) {
if (localItems[k]) {
this.length--;
delete localItems[k];
localMods++;
}
},
length: 0,
key: function(i) {
var keys = [];
for (var k in localItems)
keys.push(k);
console.log(i,keys[i]);
return keys[i];
2018-06-29 23:44:04 +00:00
}
};
2018-06-30 14:26:41 +00:00
includeInThisContext("localForage/dist/localforage.js");
includeInThisContext("src/util.js");
2018-06-30 14:26:41 +00:00
includeInThisContext("src/store.js");
includeInThisContext("src/project.js");
var test_platform_id = "_TEST";
2018-06-29 23:44:04 +00:00
describe('Store', function() {
2018-06-30 14:26:41 +00:00
it('Should convert from local storage', function(done) {
localStorage.clear();
localStorage.setItem('_TEST/test', 'a');
localStorage.setItem('_TEST/local/test', 'b');
assert.equal(2, localMods);
var store = createNewPersistentStore(test_platform_id, function() {
assert.equal('true', localItems['__migrated__TEST']);
store.getItem('test', function(err, result) {
if (err) done(err);
assert.equal(result, 'a');
assert.equal(7, localMods);
done();
});
});
});
it('Should load local project', function(done) {
localStorage.clear();
localStorage.setItem('_TEST/test', 'a');
var store = createNewPersistentStore(test_platform_id, function() {
var worker = {};
var platform = {};
var project = new CodeProject(worker, test_platform_id, platform, store);
project.loadFiles(['test'], function(err, result) {
assert.equal(null, err);
assert.deepEqual([ { path: 'test', filename: 'test', data: 'a' } ], result);
2018-06-30 14:26:41 +00:00
done();
});
});
});
it('Should build project', function(done) {
localStorage.clear();
localItems['__migrated__TEST'] = 'true';
var msgs = [];
var expectmsgs = [
true,
{ preload: 'dasm', platform: '_TEST' },
{
buildsteps: [
{ path: "test.a", platform: "_TEST", tool: "dasm", mainfile:true },
],
updates: [
{ path: "test.a", data: " lda #0" }
]
}
2018-06-30 14:26:41 +00:00
];
var store = createNewPersistentStore(test_platform_id);
var worker = {
postMessage: function(m) { msgs.push(m); },
};
var platform = {
getToolForFilename: function(fn) { return 'dasm'; },
};
var project = new CodeProject(worker, test_platform_id, platform, store);
project.callbackBuildStatus = function(b) { msgs.push(b) };
project.updateFile('test.a', ' lda #0');
project.updateFile('test.a', ' lda #1'); // don't send twice (yet)
assert.deepEqual(msgs, expectmsgs);
store.getItem('test.a', function(err, result) {
assert.equal(null, err);
assert.equal(' lda #1', result);
done();
});
2018-06-29 23:44:04 +00:00
});
2018-06-30 14:26:41 +00:00
// lines: [ { line: 3, offset: 61440, insns: 'a9 00', iscode: true } ] }
it('Should build project', function(done) {
localStorage.clear();
localItems['__migrated__TEST'] = 'true';
var msgs = [];
var store = createNewPersistentStore(test_platform_id);
var worker = {
};
var platform = {
};
var project = new CodeProject(worker, test_platform_id, platform, store);
project.callbackBuildStatus = function(b) { msgs.push(b) };
var buildresult = {
listings: {
test: {
lines: [ { line: 3, offset: 61440, insns: 'a9 00', iscode: true } ]
}
}
};
worker.onmessage({data:buildresult});
assert.deepEqual([false], msgs);
var lst = buildresult.listings.test;
console.log(lst);
assert.equal(3, lst.sourcefile.findLineForOffset(61440+15));
assert.equal(0, lst.sourcefile.findLineForOffset(61440+16));
assert.equal(0, lst.sourcefile.findLineForOffset(61440-1));
assert.equal(1, lst.sourcefile.lineCount());
done();
});
2018-06-29 23:44:04 +00:00
});