some invalid script tests working
This commit is contained in:
parent
9ef8b78182
commit
03d200bad7
22
Script.js
22
Script.js
|
@ -33,8 +33,10 @@ function Script(buffer) {
|
||||||
} else {
|
} else {
|
||||||
this.buffer = util.EMPTY_BUFFER;
|
this.buffer = util.EMPTY_BUFFER;
|
||||||
}
|
}
|
||||||
|
console.log(buffertools.toHex(this.buffer));
|
||||||
this.chunks = [];
|
this.chunks = [];
|
||||||
this.parse();
|
this.parse();
|
||||||
|
console.log(this.chunks);
|
||||||
};
|
};
|
||||||
this.class = Script;
|
this.class = Script;
|
||||||
|
|
||||||
|
@ -51,19 +53,25 @@ Script.prototype.parse = function() {
|
||||||
while (!parser.eof()) {
|
while (!parser.eof()) {
|
||||||
var opcode = parser.word8();
|
var opcode = parser.word8();
|
||||||
|
|
||||||
var len;
|
var len, chunk;
|
||||||
if (opcode > 0 && opcode < OP_PUSHDATA1) {
|
if (opcode > 0 && opcode < OP_PUSHDATA1) {
|
||||||
// Read some bytes of data, opcode value is the length of data
|
// Read some bytes of data, opcode value is the length of data
|
||||||
this.chunks.push(parser.buffer(opcode));
|
this.chunks.push(parser.buffer(opcode));
|
||||||
} else if (opcode == OP_PUSHDATA1) {
|
} else if (opcode === OP_PUSHDATA1) {
|
||||||
len = parser.word8();
|
len = parser.word8();
|
||||||
this.chunks.push(parser.buffer(len));
|
chunk = parser.buffer(len);
|
||||||
} else if (opcode == OP_PUSHDATA2) {
|
if (chunk.length < len) throw new Error('Invalid data size: not enough data');
|
||||||
|
this.chunks.push(chunk);
|
||||||
|
} else if (opcode === OP_PUSHDATA2) {
|
||||||
len = parser.word16le();
|
len = parser.word16le();
|
||||||
this.chunks.push(parser.buffer(len));
|
chunk = parser.buffer(len);
|
||||||
} else if (opcode == OP_PUSHDATA4) {
|
if (chunk.length < len) throw new Error('Invalid data size: not enough data');
|
||||||
|
this.chunks.push(chunk);
|
||||||
|
} else if (opcode === OP_PUSHDATA4) {
|
||||||
len = parser.word32le();
|
len = parser.word32le();
|
||||||
this.chunks.push(parser.buffer(len));
|
chunk = parser.buffer(len);
|
||||||
|
if (chunk.length < len) throw new Error('Invalid data size: not enough data');
|
||||||
|
this.chunks.push(chunk);
|
||||||
} else {
|
} else {
|
||||||
this.chunks.push(opcode);
|
this.chunks.push(opcode);
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,23 +23,51 @@ describe('ScriptInterpreter', function() {
|
||||||
var si = new ScriptInterpreter();
|
var si = new ScriptInterpreter();
|
||||||
should.exist(si);
|
should.exist(si);
|
||||||
});
|
});
|
||||||
testdata.dataScriptValid.forEach(function(datum) {
|
var testScripts = function(data, valid) {
|
||||||
|
var i = 0;
|
||||||
|
data.forEach(function(datum) {
|
||||||
if (datum.length < 2) throw new Error('Invalid test data');
|
if (datum.length < 2) throw new Error('Invalid test data');
|
||||||
var scriptSig = datum[0]; // script inputs
|
var scriptSig = datum[0]; // script inputs
|
||||||
var scriptPubKey = datum[1]; // output script
|
var scriptPubKey = datum[1]; // output script
|
||||||
var human = scriptSig + ' ' + scriptPubKey;
|
var human = scriptSig + ' ' + scriptPubKey;
|
||||||
it('should validate script ' + human, function(done) {
|
it('should ' + (!valid ? 'not ' : '') + 'validate script ' + human, function(done) {
|
||||||
ScriptInterpreter.verify(Script.fromHumanReadable(scriptSig),
|
console.log((!valid ? 'invalid ' : 'valid ') + human + ';' + (i++) + ' - ' + datum[2]);
|
||||||
|
try {
|
||||||
|
ScriptInterpreter.verify(
|
||||||
|
Script.fromHumanReadable(scriptSig),
|
||||||
Script.fromHumanReadable(scriptPubKey),
|
Script.fromHumanReadable(scriptPubKey),
|
||||||
null, 0, 0, // tx, output index, and hashtype
|
null, 0, 0, // tx, output index, and hashtype
|
||||||
function(err, result) {
|
function(err, result) {
|
||||||
|
if (valid) {
|
||||||
should.not.exist(err);
|
should.not.exist(err);
|
||||||
result.should.equal(true);
|
} else {
|
||||||
|
var failed = (typeof err !== 'undefined') || (result === false);
|
||||||
|
console.log('err=' + err);
|
||||||
|
console.log('result=' + result);
|
||||||
|
failed.should.equal(true);
|
||||||
|
}
|
||||||
|
if (typeof result !== 'undefined') {
|
||||||
|
result.should.equal(valid);
|
||||||
|
}
|
||||||
done();
|
done();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
} catch (e) {
|
||||||
|
if (valid) {
|
||||||
|
console.log(e);
|
||||||
|
}
|
||||||
|
valid.should.equal(false);
|
||||||
|
done();
|
||||||
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
testScripts(testdata.dataScriptValid, true);
|
||||||
|
testScripts(testdata.dataScriptInvalid, false);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
testdata.dataSigCanonical.forEach(function(datum) {
|
testdata.dataSigCanonical.forEach(function(datum) {
|
||||||
it('should validate valid canonical signatures', function() {
|
it('should validate valid canonical signatures', function() {
|
||||||
ScriptInterpreter.isCanonicalSignature(new Buffer(datum, 'hex')).should.equal(true);
|
ScriptInterpreter.isCanonicalSignature(new Buffer(datum, 'hex')).should.equal(true);
|
||||||
|
@ -56,7 +84,8 @@ describe('ScriptInterpreter', function() {
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
|
||||||
if (isHex)
|
if (isHex)
|
||||||
ScriptInterpreter.isCanonicalSignature.bind(sig).should.throw();
|
ScriptInterpreter.isCanonicalSignature.bind(sig).should.
|
||||||
|
throw ();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -15,8 +15,8 @@ var examples = [
|
||||||
];
|
];
|
||||||
|
|
||||||
describe('Examples', function() {
|
describe('Examples', function() {
|
||||||
before(mute);
|
//before(mute);
|
||||||
after(unmute);
|
//after(unmute);
|
||||||
examples.forEach(function(example) {
|
examples.forEach(function(example) {
|
||||||
it('valid '+example, function() {
|
it('valid '+example, function() {
|
||||||
var ex = require('../examples/'+example);
|
var ex = require('../examples/'+example);
|
||||||
|
|
Loading…
Reference in New Issue