1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
#!/usr/bin/env ruby
require File.expand_path(File.join(File.dirname(__FILE__), "test_helper"))
describe BinData::DelayedIO, "when instantiating" do
describe "with no mandatory parameters supplied" do
it "raises an error" do
args = {}
_ { BinData::DelayedIO.new(args) }.must_raise ArgumentError
end
end
describe "with some but not all mandatory parameters supplied" do
it "raises an error" do
args = {read_abs_offset: 3}
_ { BinData::DelayedIO.new(args) }.must_raise ArgumentError
end
end
it "fails if a given type is unknown" do
args = {type: :does_not_exist, length: 3}
_ { BinData::DelayedIO.new(args) }.must_raise BinData::UnRegisteredTypeError
end
it "accepts BinData::Base as :type" do
obj = BinData::Int8.new(initial_value: 5)
array = BinData::DelayedIO.new(type: obj, read_abs_offset: 3)
_(array).must_equal 5
end
end
describe BinData::DelayedIO, "subclassed with a single type" do
class IntDelayedIO < BinData::DelayedIO
endian :big
default_parameter read_abs_offset: 5
uint16
end
it "behaves as type" do
obj = IntDelayedIO.new(3)
_(obj).must_equal 3
end
it "does not read" do
obj = IntDelayedIO.read "\001\002\003\004\005\006\007"
assert obj.clear?
end
it "does not do_num_bytes" do
obj = IntDelayedIO.new(3)
_(obj.do_num_bytes).must_equal 0
end
it "does num_bytes" do
obj = IntDelayedIO.new(3)
_(obj.num_bytes).must_equal 2
end
it "does not write" do
io = StringIO.new
obj = IntDelayedIO.new(3)
obj.write(io)
_(io.value).must_equal ""
end
it "uses read_abs_offset" do
obj = IntDelayedIO.new(3)
_(obj.abs_offset).must_equal 5
_(obj.rel_offset).must_equal 5
end
it "uses abs_offset if set" do
obj = IntDelayedIO.new(3)
obj.abs_offset = 10
_(obj.abs_offset).must_equal 10
_(obj.rel_offset).must_equal 10
end
it "must call #read before #read_now!" do
obj = IntDelayedIO.new(3)
_ {
obj.read_now!
}.must_raise IOError
end
it "reads explicitly" do
obj = IntDelayedIO.read "\001\002\003\004\005\006\007"
obj.read_now!
_(obj).must_equal 0x0607
end
it "must call #write before #write_now!" do
obj = IntDelayedIO.new(3)
_ {
obj.write_now!
}.must_raise IOError
end
it "writes explicitly" do
io = StringIO.new "\001\002\003\004\005\006\007\010\011".dup
obj = IntDelayedIO.new(3)
obj.write(io)
obj.write_now!
_(io.value).must_equal "\001\002\003\004\005\000\003\010\011"
end
it "writes explicitly after setting abs_offset" do
io = StringIO.new "\001\002\003\004\005\006\007\010\011".dup
obj = IntDelayedIO.new(7)
obj.write(io)
obj.abs_offset = 1
obj.write_now!
_(io.value).must_equal "\001\000\007\004\005\006\007\010\011"
end
end
describe BinData::DelayedIO, "subclassed with multiple types" do
class StringDelayedIO < BinData::DelayedIO
endian :big
default_parameter read_abs_offset: 5
uint16 :len, value: -> { str.length }
string :str, read_length: :len
end
it "behaves as type" do
obj = StringDelayedIO.new(str: "hello")
_(obj.snapshot).must_equal({len: 5, str: "hello"})
end
it "reads explicitly" do
obj = StringDelayedIO.read "\001\002\003\004\005\000\003abc\013"
obj.read_now!
_(obj.snapshot).must_equal({len: 3, str: "abc"})
end
it "writes explicitly" do
io = StringIO.new "\001\002\003\004\005\006\007\010\011\012\013\014\015".dup
obj = StringDelayedIO.new(str: "hello")
obj.write(io)
obj.write_now!
_(io.value).must_equal "\001\002\003\004\005\000\005hello\015"
end
end
describe BinData::DelayedIO, "inside a Record" do
class DelayedIORecord < BinData::Record
endian :little
uint16 :str_length, value: -> { str.length }
delayed_io :str, read_abs_offset: 4 do
string read_length: :str_length
end
delayed_io :my_int, read_abs_offset: 2 do
uint16 initial_value: 7
end
end
it "reads" do
obj = DelayedIORecord.read "\x05\x00\x03\x0012345"
_(obj.num_bytes).must_equal 2
_(obj.snapshot).must_equal({str_length: 0, str: "", my_int: 7})
end
it "reads explicitly" do
obj = DelayedIORecord.read "\x05\x00\x03\x0012345"
obj.str.read_now!
obj.my_int.read_now!
_(obj.num_bytes).must_equal 2
_(obj.snapshot).must_equal({str_length: 5, str: "12345", my_int: 3})
end
it "writes" do
obj = DelayedIORecord.new(str: "abc", my_int: 2)
io = StringIO.new
obj.write(io)
obj.str.write_now!
obj.my_int.write_now!
_(io.value).must_equal "\x03\x00\x02\x00abc"
end
end
describe BinData::DelayedIO, "inside a Record with onlyif" do
class DelayedIOOnlyIfRecord < BinData::Record
endian :little
uint8 :flag
delayed_io :my_int1, read_abs_offset: 4, onlyif: -> { flag != 0 } do
uint16 initial_value: 6
end
delayed_io :my_int2, read_abs_offset: 2, onlyif: -> { flag == 0 } do
uint16 initial_value: 7
end
end
it "reads" do
obj = DelayedIOOnlyIfRecord.read "\x01\x00\x03\x0012345"
_(obj.num_bytes).must_equal 1
_(obj.snapshot).must_equal({flag: 1, my_int1: 6})
end
it "reads explicitly when flag is set" do
obj = DelayedIOOnlyIfRecord.read "\x01\xff\x01\x00\x02\x00"
obj.my_int1.read_now!
obj.my_int2.read_now!
_(obj.num_bytes).must_equal 1
_(obj.snapshot).must_equal({flag: 1, my_int1: 2})
end
it "reads explicitly when flag is not set" do
obj = DelayedIOOnlyIfRecord.read "\x00\xff\x01\x00\x02\x00"
obj.my_int1.read_now!
obj.my_int2.read_now!
_(obj.num_bytes).must_equal 1
_(obj.snapshot).must_equal({flag: 0, my_int2: 1})
end
it "writes" do
obj = DelayedIOOnlyIfRecord.new(flag:1, my_int1: 3, my_int2: 4)
io = StringIO.new
obj.write(io)
obj.my_int1.write_now!
obj.my_int2.write_now!
_(io.value).must_equal "\x01\x00\x00\x00\x03\x00"
end
end
describe BinData::DelayedIO, "with auto_call" do
class AutoCallDelayedIORecord < BinData::Record
auto_call_delayed_io
uint8 :a
delayed_io :b, read_abs_offset: 1 do
uint8
end
end
it "class reads" do
obj = AutoCallDelayedIORecord.read "\x01\x02"
_(obj.snapshot).must_equal({a: 1, b: 2})
end
it "reads" do
obj = AutoCallDelayedIORecord.new
obj.read "\x01\x02"
_(obj.snapshot).must_equal({a: 1, b: 2})
end
it "writes" do
obj = AutoCallDelayedIORecord.new(a: 1, b: 2)
io = StringIO.new
obj.write(io)
_(io.value).must_equal "\x01\x02"
end
it "to_binary_s" do
obj = AutoCallDelayedIORecord.new(a: 1, b: 2)
_(obj.to_binary_s).must_equal_binary "\x01\x02"
end
it "num_bytes" do
obj = AutoCallDelayedIORecord.new(a: 1, b: 2)
_(obj.num_bytes).must_equal 2
end
end
describe BinData::DelayedIO, "with multiple auto_call" do
class MultipleAutoCallDelayedIORecord < BinData::Record
auto_call_delayed_io
auto_call_delayed_io
uint8 :a
delayed_io :b, read_abs_offset: 1 do
uint8
end
end
it "class reads" do
obj = MultipleAutoCallDelayedIORecord.read "\x01\x02"
_(obj.snapshot).must_equal({a: 1, b: 2})
end
end
|