Merge pull request #207012 from Homebrew/bump-tailwindcss-4.0.5
[Homebrew/homebrew-core.git] / Formula / t / trezor-bridge.rb
blob6288c72154550b2c1b195102cd5aef9d6baf4d6c
1 class TrezorBridge < Formula
2   desc "Trezor Communication Daemon"
3   homepage "https://github.com/trezor/trezord-go"
4   url "https://github.com/trezor/trezord-go.git",
5       tag:      "v2.0.33",
6       revision: "2680d5e6f7b02f06aefac1c2a9fef2c6052685de"
7   license "LGPL-3.0-only"
8   revision 1
10   bottle do
11     sha256 cellar: :any_skip_relocation, arm64_sequoia:  "026eae2c42ba181bbb882176d03e3592558cb7d2d946d3de7c1766c30dd4fdce"
12     sha256 cellar: :any_skip_relocation, arm64_sonoma:   "2ed7f24a07138a009a6ae6f962138c0ea9bee316ebe730b534ba072140b48629"
13     sha256 cellar: :any_skip_relocation, arm64_ventura:  "c207cb9221f8c6ce8e813200cc98bd0cca5dd3e29e85e5ece6c74b0dce071db7"
14     sha256 cellar: :any_skip_relocation, arm64_monterey: "34ad3a642fda0faf46777da05d3a0deb9f691e4a0bf60a4db5da213c2b1e413a"
15     sha256 cellar: :any_skip_relocation, sonoma:         "55eab81dca886c7fcb19eef1859d7166a3db6a4a24c1bcfae2b49829af8c45f2"
16     sha256 cellar: :any_skip_relocation, ventura:        "5f6906f339f0c85c6d048aff26fa7a87adea4e87b8e262f54dd482e7d31231fc"
17     sha256 cellar: :any_skip_relocation, monterey:       "3c19a0c1ec5d0ede24e8178c9a8e79fa7777e266ce9a941fdbdc5fc7abd4f6d7"
18     sha256 cellar: :any_skip_relocation, x86_64_linux:   "0039559d527cb2841e04cff9bb7bc59b6db17f6f74f442768af8a81776ccacd9"
19   end
21   depends_on "go" => :build
23   # upstream patch ref, https://github.com/trezor/trezord-go/pull/300
24   patch do
25     url "https://github.com/trezor/trezord-go/commit/318b01237604256b1a561b2fa57826aa0ebb218d.patch?full_index=1"
26     sha256 "b48d0026281814f9a6a8cac48b701db741391d285867593b4ce272e70aff229a"
27   end
29   def install
30     system "go", "build", *std_go_args(output: bin/"trezord-go", ldflags: "-s -w")
31   end
33   service do
34     run opt_bin/"trezord-go"
35     keep_alive true
36     require_root true
37     working_dir HOMEBREW_PREFIX
38   end
40   test do
41     # start the server with the USB disabled and enable UDP interface instead
42     server = IO.popen("#{bin}/trezord-go -u=false -e 21324")
43     sleep 1
45     output = shell_output("curl -s -X POST -H 'Origin: https://test.trezor.io' http://localhost:21325/")
46     assert_equal version.to_s, JSON.parse(output)["version"]
48     assert_match "[]",
49         shell_output("curl -s -X POST -H 'Origin: https://test.trezor.io' http://localhost:21325/enumerate")
50   ensure
51     Process.kill("SIGINT", server.pid)
52     Process.wait(server.pid)
53   end
54 end