Vegard Nossum
14 years ago
committed by
Gavin Andresen
2 changed files with 38 additions and 0 deletions
@ -0,0 +1,37 @@
@@ -0,0 +1,37 @@
|
||||
#include <vector> |
||||
#include <boost/test/unit_test.hpp> |
||||
#include <boost/foreach.hpp> |
||||
|
||||
#include "../main.h" |
||||
#include "../wallet.h" |
||||
|
||||
using namespace std; |
||||
|
||||
BOOST_AUTO_TEST_SUITE(script_tests) |
||||
|
||||
BOOST_AUTO_TEST_CASE(script_PushData) |
||||
{ |
||||
// Check that PUSHDATA1, PUSHDATA2, and PUSHDATA4 create the same value on
|
||||
// the stack as the 1-75 opcodes do.
|
||||
static const unsigned char direct[] = { 1, 0x5a }; |
||||
static const unsigned char pushdata1[] = { OP_PUSHDATA1, 1, 0x5a }; |
||||
static const unsigned char pushdata2[] = { OP_PUSHDATA2, 1, 0, 0x5a }; |
||||
static const unsigned char pushdata4[] = { OP_PUSHDATA4, 1, 0, 0, 0, 0x5a }; |
||||
|
||||
vector<vector<unsigned char> > directStack; |
||||
BOOST_CHECK(EvalScript(directStack, CScript(&direct[0], &direct[sizeof(direct)]), CTransaction(), 0, 0)); |
||||
|
||||
vector<vector<unsigned char> > pushdata1Stack; |
||||
BOOST_CHECK(EvalScript(pushdata1Stack, CScript(&pushdata1[0], &pushdata1[sizeof(pushdata1)]), CTransaction(), 0, 0)); |
||||
BOOST_CHECK(pushdata1Stack == directStack); |
||||
|
||||
vector<vector<unsigned char> > pushdata2Stack; |
||||
BOOST_CHECK(EvalScript(pushdata2Stack, CScript(&pushdata2[0], &pushdata2[sizeof(pushdata2)]), CTransaction(), 0, 0)); |
||||
BOOST_CHECK(pushdata2Stack == directStack); |
||||
|
||||
vector<vector<unsigned char> > pushdata4Stack; |
||||
BOOST_CHECK(EvalScript(pushdata4Stack, CScript(&pushdata4[0], &pushdata4[sizeof(pushdata4)]), CTransaction(), 0, 0)); |
||||
BOOST_CHECK(pushdata4Stack == directStack); |
||||
} |
||||
|
||||
BOOST_AUTO_TEST_SUITE_END() |
Loading…
Reference in new issue