File: bytes_spec.rb

package info (click to toggle)
ruby2.5 2.5.5-3%2Bdeb10u4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 101,532 kB
  • sloc: ruby: 732,598; ansic: 669,262; xml: 25,363; yacc: 20,963; javascript: 6,680; sh: 3,610; lisp: 2,627; makefile: 596; python: 198; sed: 76; perl: 62; awk: 36; asm: 35
file content (39 lines) | stat: -rw-r--r-- 1,196 bytes parent folder | download
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
# -*- encoding: binary -*-
require File.expand_path('../../../spec_helper', __FILE__)

describe "Random#bytes" do
  it "returns a String" do
    Random.new.bytes(1).should be_an_instance_of(String)
  end

  it "returns a String of the length given as argument" do
    Random.new.bytes(15).length.should == 15
  end

  it "returns an ASCII-8BIT String" do
    Random.new.bytes(15).encoding.should == Encoding::ASCII_8BIT
  end

  it "returns the same output for a given seed" do
    Random.new(33).bytes(2).should == Random.new(33).bytes(2)
  end

  # Should double check this is official spec
  it "returns the same numeric output for a given seed across all implementations and platforms" do
    rnd = Random.new(33)
    rnd.bytes(2).should == "\x14\\"
    rnd.bytes(1000) # skip some
    rnd.bytes(2).should == "\xA1p"
  end

  it "returns the same numeric output for a given huge seed across all implementations and platforms" do
    rnd = Random.new(bignum_value ** 4)
    rnd.bytes(2).should == "_\x91"
    rnd.bytes(1000) # skip some
    rnd.bytes(2).should == "\x17\x12"
  end

  it "returns a random binary String" do
    Random.new.bytes(12).should_not == Random.new.bytes(12)
  end
end