I am generating binary files for use in Unit Tests which simulate a network. Some of the data sent through the network is in Little Endian or Big Endian mode and I'd like to simulate that data with stub and creating binary files.
So, in other words, instead of using an active network for my unit tests, I would generate binary files that contain the equivelent data I would expect from the network sockets.
I am using Python 2.7 to generate the byte arrays and save them to files, but I am having trouble converting my float array to little endian mode.
from array import array
output_file = open(r"C:\temp\bin.dat", "wb")
float_array = array('d', [1, 1.2, 0.34, 9.8, 0.13, 1.1, 0.88, 72])
float_array.byteswap(); #This doesn't convert it to little endian!
float_array.tofile(output_file)
output_file.close()
So I wondering if anyone knows off how how to manipulate the array such that when I do float_array.tofile()
it will write the binary data in little/big endian mode.
This code gives the following output:
Val = 8.6184E-41
Val = 0.0
Val = 4.1897916E-8
Val = 4.172325E-8
Val = -1.9212016E-29
Val = -490.3153
Val = -1.5834067E-23
Which doesn't match the wanted array('d', [1, 1.2, 0.34, 9.8, 0.13, 1.1, 0.88, 72])
When I comment out the byteswap
method, I get the following
Val = 0.0
Val = 1.875
Val = 4.172325E-8
Val = 1.9
Val = 1.9023206E17
Val = 1.67
Val = -1.5881868E-23
However, in the real networking mode, it works great. But that doesn't help with unit testing!
Val = 0.0
lines? When I run your code, I get binary files, not anything in that format. And the first 8 bytes are0, 0, 0, 0, 0, 0, 240, 63
if not swapped,63, 240, 0, 0, 0, 0, 0, 0
if swapped. Is it possible that the files are being written just fine, but the code you use to read them in and display them and/or re-array-ify them (which you haven't shown us) is wrong? – abarnert