aboutsummaryrefslogtreecommitdiffstats
path: root/test/plum/test_binary_string.rb
blob: e14123d012e5079894faa469dd34c9345993c2c2 (plain)
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
require "test_helper"

using BinaryString

class BinaryStringTest < Minitest::Test
  def test_uint8
    assert_equal(0x67, "\x67".uint8)
    assert_equal(0x75, "\x67\x75".uint8(1))
  end

  def test_uint16
    assert_equal(0x78ff, "\x78\xff".uint16)
    assert_equal(0xee55, "\x78\xee\x55".uint16(1))
  end

  def test_uint24
    assert_equal(0x005554, "\x00\x55\x54".uint24)
    assert_equal(0x005554, "\x2f\xaa\x00\x55\x54".uint24(2))
  end

  def test_uint32
    assert_equal(0x00555400, "\x00\x55\x54\x00".uint32)
    assert_equal(0x00555400, "\x2f\xaa\x00\x55\x54\x00".uint32(2))
  end

  def test_push_uint8
    assert_equal("\x24", "".push_uint8(0x24))
  end

  def test_push_uint16
    assert_equal("\x24\x11", "".push_uint16(0x2411))
  end

  def test_push_uint24
    assert_equal("\x11\x11\x24", "".push_uint24(0x111124))
  end

  def test_push_uint32
    assert_equal("\x10\x00\x00\x24", "".push_uint32(0x10000024))
  end

  def test_push
    assert_equal("adh", "ad".push("h"))
  end

  def test_byteshift
    sushi = "\u{1f363}".encode(Encoding::UTF_8)
    assert_equal("\xf0".b, sushi.byteshift(1).b)
    assert_equal("\x9f\x8d\xa3".b, sushi.b)
  end

  def test_each_byteslice_block
    ret = []
    string = "12345678"
    string.each_byteslice(3) { |part| ret << part }
    assert_equal(["123", "456", "78"], ret)
  end

  def test_each_byteslice_enume
    string = "12345678"
    ret = string.each_byteslice(3)
    assert_equal(["123", "456", "78"], ret.to_a)
  end

  def test_chunk
    string = "12345678"
    ret = string.chunk(3)
    assert_equal(["123", "456", "78"], ret)
  end
end