Sha256: cd0ae9035c46850400d710cd1486f0d192f16bfde1889586ec17e6f387bb0d96
Contents?: true
Size: 1.87 KB
Versions: 1
Compression:
Stored size: 1.87 KB
Contents
require_relative '../spec_helper' require_relative '../../lib/rapid-vaults/encrypt' describe Encrypt do after(:all) do %w[tag.txt encrypted.txt].each { |file| File.delete(file) } end context '.openssl' do it 'outputs an encrypted file with the key and nonce from the cli' do Encrypt.openssl(ui: :cli, file: "foo: bar\n", key: '���b+����R�v�Í%("����=8o/���', nonce: 'Ëá!í^Uë^EÜ<83>oã^M') expect(File.file?('tag.txt')).to be true expect(File.file?('encrypted.txt')).to be true end it 'outputs an encrypted file with the key, nonce, and password from the cli' do Encrypt.openssl(ui: :cli, file: "foo: bar\n", key: '���b+����R�v�Í%("����=8o/���', nonce: 'Ëá!í^Uë^EÜ<83>oã^M', pw: 'password') expect(File.file?('tag.txt')).to be true expect(File.file?('encrypted.txt')).to be true end it 'outputs an array of encrypted content and tag with the key and nonce from the api' do encrypt = Encrypt.openssl(ui: :api, file: "foo: bar\n", key: '���b+����R�v�Í%("����=8o/���', nonce: 'Ëá!í^Uë^EÜ<83>oã^M') expect(encrypt).to be_a(Array) expect(encrypt[0]).to be_a(String) expect(encrypt[1]).to be_a(String) expect(encrypt.length).to eq(2) end end # travis ci cannot support non-interactive gpg encryption unless File.directory?('/home/travis') context '.gpgme' do it 'outputs an encrypted file with the key from the cli' do Encrypt.gpgme(ui: :cli, file: "foo: bar\n", key: '', pw: 'foo') expect(File.file?('encrypted.txt')).to be true end it 'outputs a string of encrypted content with the key from the api' do encrypt = Encrypt.gpgme(ui: :api, file: "foo: bar\n", key: '', pw: 'foo') expect(encrypt).to be_a(String) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rapid-vaults-1.1.0 | spec/rapid-vaults/encrypt_spec.rb |