63 lines
2.0 KiB
Ruby
63 lines
2.0 KiB
Ruby
require "language/node"
|
|
|
|
class ProtocGenGrpcWeb < Formula
|
|
desc "Protoc plugin that generates code for gRPC-Web clients"
|
|
homepage "https://github.com/grpc/grpc-web"
|
|
url "https://github.com/grpc/grpc-web/archive/1.2.1.tar.gz"
|
|
sha256 "23cf98fbcb69743b8ba036728b56dfafb9e16b887a9735c12eafa7669862ec7b"
|
|
license "Apache-2.0"
|
|
revision 3
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "8625843e386cf1aec90d4f750ad1480586f10e90fa5f8d2092037b92583379d3"
|
|
sha256 cellar: :any, big_sur: "c706a6449039679963254536a30511f031fe11705ac36ed5d2f3ab2fd83a2aba"
|
|
sha256 cellar: :any, catalina: "3917c4c2ff273a01472cd46265b5d12a6df0012e721cb271f4c512a894e3ccd5"
|
|
sha256 cellar: :any, mojave: "b4486c699cd657005acd262ef592784f3bbf3b50408e90d2a84d42dcb5205853"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "node" => :test
|
|
depends_on "typescript" => :test
|
|
depends_on "protobuf"
|
|
|
|
def install
|
|
bin.mkpath
|
|
inreplace "javascript/net/grpc/web/Makefile", "/usr/local/bin/", "#{bin}/"
|
|
system "make", "install-plugin"
|
|
end
|
|
|
|
test do
|
|
# First use the plugin to generate the files.
|
|
testdata = <<~EOS
|
|
syntax = "proto3";
|
|
package test;
|
|
message TestCase {
|
|
string name = 4;
|
|
}
|
|
message Test {
|
|
repeated TestCase case = 1;
|
|
}
|
|
message TestResult {
|
|
bool passed = 1;
|
|
}
|
|
service TestService {
|
|
rpc RunTest(Test) returns (TestResult);
|
|
}
|
|
EOS
|
|
(testpath/"test.proto").write testdata
|
|
system "protoc", "test.proto", "--plugin=#{bin}/protoc-gen-grpc-web",
|
|
"--js_out=import_style=commonjs:.",
|
|
"--grpc-web_out=import_style=typescript,mode=grpcwebtext:."
|
|
|
|
# Now see if we can import them.
|
|
testts = <<~EOS
|
|
import * as grpcWeb from 'grpc-web';
|
|
import {TestServiceClient} from './TestServiceClientPb';
|
|
import {Test, TestResult} from './test_pb';
|
|
EOS
|
|
(testpath/"test.ts").write testts
|
|
system "npm", "install", *Language::Node.local_npm_install_args, "grpc-web", "@types/google-protobuf"
|
|
system "tsc", "test.ts"
|
|
end
|
|
end
|