File: hex_spec.rb

package info (click to toggle)
ruby3.3 3.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,620 kB
  • sloc: ruby: 1,244,308; ansic: 836,474; yacc: 28,074; pascal: 6,748; sh: 3,913; python: 1,719; cpp: 1,158; makefile: 742; asm: 712; javascript: 394; lisp: 97; perl: 62; awk: 36; sed: 23; xml: 4
file content (54 lines) | stat: -rw-r--r-- 1,540 bytes parent folder | download | duplicates (7)
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
require_relative '../../spec_helper'

require 'securerandom'

describe "SecureRandom.hex" do
  it "generates a random hex string of length twice the specified argument" do
    (1..64).each do |idx|
      hex = SecureRandom.hex(idx)
      hex.should be_kind_of(String)
      hex.length.should == 2 * idx
    end

    base64 = SecureRandom.hex(5.5)
    base64.should be_kind_of(String)
    base64.length.should eql(10)
  end

  it "returns an empty string when argument is 0" do
    SecureRandom.hex(0).should == ""
  end

  it "generates different hex strings with subsequent invocations" do
    # quick and dirty check, but good enough
    values = []
    256.times do
      hex = SecureRandom.hex
      # make sure the random values are not repeating
      values.include?(hex).should == false
      values << hex
    end
  end

  it "generates a random hex string of length 32 if no argument is provided" do
    SecureRandom.hex.should be_kind_of(String)
    SecureRandom.hex.length.should == 32
  end

  it "treats nil argument as default one and generates a random hex string of length 32" do
    SecureRandom.hex(nil).should be_kind_of(String)
    SecureRandom.hex(nil).length.should == 32
  end

  it "raises ArgumentError on negative arguments" do
    -> {
      SecureRandom.hex(-1)
    }.should raise_error(ArgumentError)
  end

  it "tries to convert the passed argument to an Integer using #to_int" do
    obj = mock("to_int")
    obj.should_receive(:to_int).and_return(5)
    SecureRandom.hex(obj).size.should eql(10)
  end
end