spec/script_spec.rb in btcruby-1.1.4 vs spec/script_spec.rb in btcruby-1.1.5

- old
+ new

@@ -1,44 +1,44 @@ require_relative 'spec_helper' describe BTC::Script do - + it "should instantiate with empty data" do - empty_script = Script.new + empty_script = BTC::Script.new empty_script.data.must_equal "".b empty_script.to_s.must_equal '' end it "should support standard P2PKH script" do - script = (Script.new << OP_DUP << OP_HASH160 << "5a73e920b7836c74f9e740a5bb885e8580557038".from_hex << OP_EQUALVERIFY << OP_CHECKSIG) + script = (BTC::Script.new << BTC::OP_DUP << BTC::OP_HASH160 << "5a73e920b7836c74f9e740a5bb885e8580557038".from_hex << BTC::OP_EQUALVERIFY << BTC::OP_CHECKSIG) script.standard?.must_equal true script.public_key_hash_script?.must_equal true script.script_hash_script?.must_equal false script.multisig_script?.must_equal false script.standard_multisig_script?.must_equal false - script.standard_address.class.must_equal PublicKeyAddress + script.standard_address.class.must_equal BTC::PublicKeyAddress script.standard_address.data.must_equal "5a73e920b7836c74f9e740a5bb885e8580557038".from_hex script.to_s.must_equal "OP_DUP OP_HASH160 5a73e920b7836c74f9e740a5bb885e8580557038 OP_EQUALVERIFY OP_CHECKSIG" end it "should support standard P2SH script" do - script = (Script.new << OP_HASH160 << "5a73e920b7836c74f9e740a5bb885e8580557038".from_hex << OP_EQUAL) + script = (BTC::Script.new << BTC::OP_HASH160 << "5a73e920b7836c74f9e740a5bb885e8580557038".from_hex << BTC::OP_EQUAL) script.standard?.must_equal true script.public_key_hash_script?.must_equal false script.script_hash_script?.must_equal true script.multisig_script?.must_equal false script.standard_multisig_script?.must_equal false - script.standard_address.class.must_equal ScriptHashAddress + script.standard_address.class.must_equal BTC::ScriptHashAddress script.standard_address.data.must_equal "5a73e920b7836c74f9e740a5bb885e8580557038".from_hex script.to_s.must_equal "OP_HASH160 5a73e920b7836c74f9e740a5bb885e8580557038 OP_EQUAL" end it "should support standard multisig script" do - script = (Script.new << OP_1 << + script = (BTC::Script.new << BTC::OP_1 << "c4bbcb1fbec99d65bf59d85c8cb62ee2db963f0fe106f483d9afa73bd4e39a8a".from_hex << "bffbec99da8a6573bd4e359d85c8cb62e6f483d9afac4be2db963f0fe10bcb19".from_hex << - OP_2 << - OP_CHECKMULTISIG) + BTC::OP_2 << + BTC::OP_CHECKMULTISIG) script.standard?.must_equal true script.public_key_hash_script?.must_equal false script.script_hash_script?.must_equal false script.multisig_script?.must_equal true script.standard_multisig_script?.must_equal true @@ -49,11 +49,11 @@ ] script.multisig_signatures_required.must_equal 1 script.to_s.must_equal "OP_1 c4bbcb1fbec99d65bf59d85c8cb62ee2db963f0fe106f483d9afa73bd4e39a8a "+ "bffbec99da8a6573bd4e359d85c8cb62e6f483d9afac4be2db963f0fe10bcb19 OP_2 OP_CHECKMULTISIG" - script2 = Script.multisig(public_keys:[ + script2 = BTC::Script.multisig(public_keys:[ "c4bbcb1fbec99d65bf59d85c8cb62ee2db963f0fe106f483d9afa73bd4e39a8a".from_hex, "bffbec99da8a6573bd4e359d85c8cb62e6f483d9afac4be2db963f0fe10bcb19".from_hex ], signatures_required: 1) script2.standard_multisig_script?.must_equal true @@ -61,39 +61,39 @@ end it "should support subscripts" do - s = Script.new << OP_DUP << OP_HASH160 << OP_CODESEPARATOR << "some data" << OP_EQUALVERIFY << OP_CHECKSIG + s = BTC::Script.new << BTC::OP_DUP << BTC::OP_HASH160 << BTC::OP_CODESEPARATOR << "some data" << BTC::OP_EQUALVERIFY << BTC::OP_CHECKSIG s.subscript(0..-1).must_equal s s[0..-1].must_equal s - s.subscript(3..-1).must_equal(Script.new << "some data" << OP_EQUALVERIFY << OP_CHECKSIG) - s[3..-1].must_equal(Script.new << "some data" << OP_EQUALVERIFY << OP_CHECKSIG) + s.subscript(3..-1).must_equal(BTC::Script.new << "some data" << BTC::OP_EQUALVERIFY << BTC::OP_CHECKSIG) + s[3..-1].must_equal(BTC::Script.new << "some data" << BTC::OP_EQUALVERIFY << BTC::OP_CHECKSIG) end it "removing subscript does not modify the receiver" do - s = Script.new << OP_DUP << OP_HASH160 << OP_CODESEPARATOR << "some data" << OP_EQUALVERIFY << OP_CHECKSIG + s = BTC::Script.new << BTC::OP_DUP << BTC::OP_HASH160 << BTC::OP_CODESEPARATOR << "some data" << BTC::OP_EQUALVERIFY << BTC::OP_CHECKSIG s1 = s.dup - s2 = s1.find_and_delete(Script.new << OP_HASH160) + s2 = s1.find_and_delete(BTC::Script.new << BTC::OP_HASH160) s.must_equal s1 - s2.must_equal(Script.new << OP_DUP << OP_CODESEPARATOR << "some data" << OP_EQUALVERIFY << OP_CHECKSIG) + s2.must_equal(BTC::Script.new << BTC::OP_DUP << BTC::OP_CODESEPARATOR << "some data" << BTC::OP_EQUALVERIFY << BTC::OP_CHECKSIG) end it "should find subsequence" do - s = Script.new << OP_1 << OP_3 << OP_1 << OP_2 << OP_1 << OP_2 << OP_1 << OP_3 - s2 = s.find_and_delete(Script.new << OP_1 << OP_2 << OP_1) - s2.must_equal(Script.new << OP_1 << OP_3 << OP_2 << OP_1 << OP_3) + s = BTC::Script.new << BTC::OP_1 << BTC::OP_3 << BTC::OP_1 << BTC::OP_2 << BTC::OP_1 << BTC::OP_2 << BTC::OP_1 << BTC::OP_3 + s2 = s.find_and_delete(BTC::Script.new << BTC::OP_1 << BTC::OP_2 << BTC::OP_1) + s2.must_equal(BTC::Script.new << BTC::OP_1 << BTC::OP_3 << BTC::OP_2 << BTC::OP_1 << BTC::OP_3) end it "should not find-and-delete non-matching encoding for the same pushdata" do - s = Script.new.append_pushdata("foo").append_pushdata("foo", opcode:OP_PUSHDATA1) - s2 = s.find_and_delete(Script.new << "foo") - s2.must_equal(Script.new.append_pushdata("foo", opcode:OP_PUSHDATA1)) + s = BTC::Script.new.append_pushdata("foo").append_pushdata("foo", opcode:BTC::OP_PUSHDATA1) + s2 = s.find_and_delete(BTC::Script.new << "foo") + s2.must_equal(BTC::Script.new.append_pushdata("foo", opcode:BTC::OP_PUSHDATA1)) end it "should parse interpreted data and pushdata correctly" do - script = Script.new << OP_0 << OP_1NEGATE << OP_NOP << OP_RESERVED << OP_1 << OP_16 << "1" << "2" << "chancellor" + script = BTC::Script.new << BTC::OP_0 << BTC::OP_1NEGATE << BTC::OP_NOP << BTC::OP_RESERVED << BTC::OP_1 << BTC::OP_16 << "1" << "2" << "chancellor" script.chunks.map{|c| c.interpreted_data }.must_equal ["", "\x81".b, nil, nil, "\x01".b, "\x10".b, "1", "2", "chancellor"] script.chunks.map{|c| c.pushdata }.must_equal ["", nil, nil, nil, nil, nil, "1", "2", "chancellor"] end end