homebrew-core/Formula/pass-otp.rb
2018-12-22 23:25:19 +08:00

46 lines
1.6 KiB
Ruby

class PassOtp < Formula
desc "The Pass extension for managing one-time-password (OTP) tokens"
homepage "https://github.com/tadfisher/pass-otp#readme"
url "https://github.com/tadfisher/pass-otp/releases/download/v1.2.0/pass-otp-1.2.0.tar.gz"
sha256 "5720a649267a240a4f7ba5a6445193481070049c1d08ba38b00d20fc551c3a67"
bottle do
cellar :any_skip_relocation
sha256 "74b97a3e1331e84067eee707a6242d30e9f215befc563e79b86102f6995ce374" => :mojave
sha256 "4b123f03ae8a1237e7b04731d3d39e66e9acf031924f757becf889c8b12f1efc" => :high_sierra
sha256 "4b123f03ae8a1237e7b04731d3d39e66e9acf031924f757becf889c8b12f1efc" => :sierra
end
depends_on "oath-toolkit"
depends_on "pass"
def install
system "make", "PREFIX=#{prefix}", "BASHCOMPDIR=#{bash_completion}", "install"
end
test do
(testpath/"batch.gpg").write <<~EOS
Key-Type: RSA
Key-Length: 2048
Subkey-Type: RSA
Subkey-Length: 2048
Name-Real: Testing
Name-Email: testing@foo.bar
Expire-Date: 1d
%no-protection
%commit
EOS
begin
system Formula["gnupg"].opt_bin/"gpg", "--batch", "--gen-key", "batch.gpg"
system "pass", "init", "Testing"
require "open3"
Open3.popen3("pass", "otp", "insert", "hotp-secret") do |stdin, _, _|
stdin.write "otpauth://hotp/hotp-secret?secret=AAAAAAAAAAAAAAAA&counter=1&issuer=hotp-secret"
stdin.close
end
assert_equal "073348", `pass otp show hotp-secret`.strip
ensure
system Formula["gnupg"].opt_bin/"gpgconf", "--kill", "gpg-agent"
end
end
end