// Copyright (c) 2001-2011 Hartmut Kaiser // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include "test.hpp" using namespace spirit_test; /////////////////////////////////////////////////////////////////////////////// int main() { using namespace boost::spirit; { // test big endian binaries BOOST_TEST(binary_test("\x01\x82", 2, big_word, 0x0182)); BOOST_TEST(binary_test("\x81\x02", 2, big_word, 0x8102)); BOOST_TEST(binary_test("\x01\x02\x03\x84", 4, big_dword, 0x01020384)); BOOST_TEST(binary_test("\x81\x02\x03\x04", 4, big_dword, 0x81020304)); #ifdef BOOST_HAS_LONG_LONG BOOST_TEST(binary_test("\x01\x02\x03\x04\x05\x06\x07\x88", 8, big_qword, 0x0102030405060788LL)); BOOST_TEST(binary_test("\x81\x02\x03\x04\x05\x06\x07\x08", 8, big_qword, 0x8102030405060708LL)); BOOST_TEST(binary_test_delimited("\x01\x02\x03\x04\x05\x06\x07\x08\x00\x00", 10, big_qword, 0x0102030405060708LL, pad(10))); #endif BOOST_TEST(binary_test("\x3f\x80\x00\x00", 4, big_bin_float, 1.0f)); BOOST_TEST(binary_test("\x3f\xf0\x00\x00\x00\x00\x00\x00", 8, big_bin_double, 1.0)); BOOST_TEST(binary_test_delimited("\x3f\xf0\x00\x00\x00\x00\x00\x00\x00\x00", 10, big_bin_double, 1.0, pad(10))); } { BOOST_TEST(binary_test("\x01\x02", 2, big_word(0x0102))); BOOST_TEST(binary_test("\x01\x02\x03\x04", 4, big_dword(0x01020304))); #ifdef BOOST_HAS_LONG_LONG BOOST_TEST(binary_test("\x01\x02\x03\x04\x05\x06\x07\x08", 8, big_qword(0x0102030405060708LL))); BOOST_TEST(binary_test_delimited("\x01\x02\x03\x04\x05\x06\x07\x08\x00\x00", 10, big_qword(0x0102030405060708LL), pad(10))); #endif BOOST_TEST(binary_test("\x3f\x80\x00\x00", 4, big_bin_float(1.0f))); BOOST_TEST(binary_test("\x3f\xf0\x00\x00\x00\x00\x00\x00", 8, big_bin_double(1.0))); BOOST_TEST(binary_test_delimited("\x3f\xf0\x00\x00\x00\x00\x00\x00\x00\x00", 10, big_bin_double(1.0), pad(10))); } { // test little endian binaries BOOST_TEST(binary_test("\x01\x82", 2, little_word, 0x8201)); BOOST_TEST(binary_test("\x81\x02", 2, little_word, 0x0281)); BOOST_TEST(binary_test("\x01\x02\x03\x84", 4, little_dword, 0x84030201)); BOOST_TEST(binary_test("\x81\x02\x03\x04", 4, little_dword, 0x04030281)); #ifdef BOOST_HAS_LONG_LONG BOOST_TEST(binary_test("\x01\x02\x03\x04\x05\x06\x07\x88", 8, little_qword, 0x8807060504030201LL)); BOOST_TEST(binary_test("\x81\x02\x03\x04\x05\x06\x07\x08", 8, little_qword, 0x0807060504030281LL)); BOOST_TEST(binary_test_delimited("\x01\x02\x03\x04\x05\x06\x07\x08\x00\x00", 10, little_qword, 0x0807060504030201LL, pad(10))); #endif BOOST_TEST(binary_test("\x00\x00\x80\x3f", 4, little_bin_float, 1.0f)); BOOST_TEST(binary_test("\x00\x00\x00\x00\x00\x00\xf0\x3f", 8, little_bin_double, 1.0)); BOOST_TEST(binary_test_delimited("\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00", 10, little_bin_double, 1.0, pad(10))); } { BOOST_TEST(binary_test("\x01\x02", 2, little_word(0x0201))); BOOST_TEST(binary_test("\x01\x02\x03\x04", 4, little_dword(0x04030201))); #ifdef BOOST_HAS_LONG_LONG BOOST_TEST(binary_test("\x01\x02\x03\x04\x05\x06\x07\x08", 8, little_qword(0x0807060504030201LL))); BOOST_TEST(binary_test_delimited("\x01\x02\x03\x04\x05\x06\x07\x08\x00\x00", 10, little_qword(0x0807060504030201LL), pad(10))); #endif BOOST_TEST(binary_test("\x00\x00\x80\x3f", 4, little_bin_float(1.0f))); BOOST_TEST(binary_test("\x00\x00\x00\x00\x00\x00\xf0\x3f", 8, little_bin_double(1.0))); BOOST_TEST(binary_test_delimited("\x00\x00\x00\x00\x00\x00\xf0\x3f\x00\x00", 10, little_bin_double(1.0), pad(10))); } { // test native endian binaries boost::optional v8; boost::optional v16; boost::optional v32; boost::optional vf; boost::optional vd; #if BOOST_ENDIAN_LITTLE_BYTE BOOST_TEST(!binary_test("", 0, byte_, v8)); BOOST_TEST(!binary_test("", 0, word, v16)); BOOST_TEST(!binary_test("", 0, dword, v32)); #ifdef BOOST_HAS_LONG_LONG boost::optional v64; BOOST_TEST(!binary_test("", 0, qword, v64)); #endif BOOST_TEST(!binary_test("", 0, bin_float, vf)); BOOST_TEST(!binary_test("", 0, bin_double, vd)); #else // BOOST_ENDIAN_LITTLE_BYTE BOOST_TEST(!binary_test("", 0, byte_, v8)); BOOST_TEST(!binary_test("", 0, word, v16)); BOOST_TEST(!binary_test("", 0, dword, v32)); #ifdef BOOST_HAS_LONG_LONG boost::optional v64; BOOST_TEST(!binary_test("", 0, qword, v64)); #endif BOOST_TEST(!binary_test("", 0, bin_float, vf)); BOOST_TEST(!binary_test("", 0, bin_double, vd)); #endif } return boost::report_errors(); }