Sha256: 9a9ebf953a7b192357679c0f170dcbfd6813dc734a0d7b1eebc2ca7e0d7aac0c

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

# encoding: binary
# frozen_string_literal: true

RSpec.describe RbNaCl::Box do
  let(:alicepk)   { vector :alice_public }
  let(:bobsk)     { vector :bob_private  }
  let(:alice_key) { RbNaCl::PublicKey.new(alicepk) }
  let(:bob_key)   { RbNaCl::PrivateKey.new(bobsk) }

  context "new" do
    it "accepts strings" do
      expect { RbNaCl::Box.new(alicepk, bobsk) }.to_not raise_error
    end

    it "accepts KeyPairs" do
      expect { RbNaCl::Box.new(alice_key, bob_key) }.to_not raise_error
    end

    it "raises TypeError on a nil public key" do
      expect { RbNaCl::Box.new(nil, bobsk) }.to raise_error(TypeError)
    end

    it "raises RbNaCl::LengthError on an invalid public key" do
      expect { RbNaCl::Box.new("hello", bobsk) }.to raise_error(RbNaCl::LengthError, /Public key was 5 bytes \(Expected 32\)/)
    end

    it "raises TypeError on a nil secret key" do
      expect { RbNaCl::Box.new(alicepk, nil) }.to raise_error(TypeError)
    end

    it "raises RbNaCl::LengthError on an invalid secret key" do
      expect { RbNaCl::Box.new(alicepk, "hello") }.to raise_error(RbNaCl::LengthError, /Private key was 5 bytes \(Expected 32\)/)
    end
  end

  include_examples "box" do
    let(:box) { RbNaCl::Box.new(alicepk, bobsk) }
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rbnacl-5.0.0 spec/rbnacl/boxes/curve25519xsalsa20poly1305_spec.rb
rbnacl-4.0.2 spec/rbnacl/boxes/curve25519xsalsa20poly1305_spec.rb
rbnacl-4.0.1 spec/rbnacl/boxes/curve25519xsalsa20poly1305_spec.rb
rbnacl-4.0.0 spec/rbnacl/boxes/curve25519xsalsa20poly1305_spec.rb
rbnacl-4.0.0.pre spec/rbnacl/boxes/curve25519xsalsa20poly1305_spec.rb