Sha256: 980afde22b5459e6e82eaec0568e48e0d8dca2adc6adb0c14799f9892bfab9a8
Contents?: true
Size: 1.62 KB
Versions: 9
Compression:
Stored size: 1.62 KB
Contents
RSpec.describe Epics::GenericUploadRequest do let(:client) { Epics::Client.new( File.open(File.join( File.dirname(__FILE__), 'fixtures', 'SIZBN001.key')), 'secret' , 'https://194.180.18.30/ebicsweb/ebicsweb', 'SIZBN001', 'EBIX', 'EBICS') } subject { described_class.new(client, "\x01" * 12) } describe '#pad' do it 'will complete the block to the next 16byte' do expect(subject.pad("\x01" * 13).size).to eq(16) end it 'will pad a complete block if the size is a multiple of 16' do expect(subject.pad("\x01" * 16).size).to eq(32) end it 'will set the last byte to the padding length' do expect(subject.pad("\x01" * 13)[-1]).to eq([3].pack("C*")) end end describe '#signature_value' do before { allow(OpenSSL::Random).to receive(:random_bytes).and_return(Base64.strict_decode64("7wtROfiX4tyN60cygJUSsHkhzxX1RVJa8vGNYnflvKc=")) } it 'will be the signed document' do expect(subject.signature_value).to eq("BQBMyxGHYoAbbmbMJRFbGrvUNinY15+qeeRLF708VL+tuENnbJMO6xHLWxU1rksOnu4xDzxfua9b3IxIaxLyTTFDuVi6bbu3sBslhIt2frdigo0xBL14KUJQ/pYiMj+2pfNYhtVxzamrnvgPSLNAEn36JykK2d347chT87HlZ7CAGNBS7lJHAzRP1v7Hkc+kKttkkWCpOGk06R6FUCxxVKXmQketMEl/scsMyJ3JtBe/EcjEZdDe5WcqZYUu5ARrfEiAeyutVRZnu17c3nKwkmWl7UqFAwp16cS8IPNL4i5FGCytgKl/kyaoxaE/P1lrGOkHcCTsSR0bAbARhndfdQ==") end end describe '#order_signature' do before { allow(subject).to receive(:signature_value).and_return("FOOBAR") } let(:signature) { Nokogiri::XML(subject.order_signature) } it 'contains the untouched signature_value ' do expect(signature.at_xpath('//xmlns:SignatureValue').text).to eq("FOOBAR") end end end
Version data entries
9 entries across 9 versions & 1 rubygems