From c847cc32d99d214a8454df0d0c17c5f6ad9e6bd8 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 8 Oct 2023 11:31:45 +0200 Subject: refactor(tvix/castore): move tests to grpc client, rm tonic-mock Similar to gen_directorysvc_grpc_client, introduce a gen_blobsvc_grpc_client function that provides a gRPC client connected to a blobservice. The test is update to use that client to test against, rather than the server trait, removing the last usage of tonic_mock, so it's removed as well. Fixes b/243. Change-Id: If746e8600588da247eb53a63b70fe72f139e9e77 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9564 Tested-by: BuildkiteCI Reviewed-by: tazjin Reviewed-by: Connor Brewster Autosubmit: flokli --- tvix/Cargo.nix | 45 --------------------------------------------- 1 file changed, 45 deletions(-) (limited to 'tvix/Cargo.nix') diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 1f57cd2f33..2c47ef9bfc 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -7751,47 +7751,6 @@ rec { }; resolvedDefaultFeatures = [ "default" "prost" "prost-build" "transport" ]; }; - "tonic-mock" = rec { - crateName = "tonic-mock"; - version = "0.1.0"; - edition = "2018"; - workspace_member = null; - src = pkgs.fetchgit { - url = "https://github.com/brainrake/tonic-mock"; - rev = "ec1a15510875de99d709d684190db5d9beab175e"; - sha256 = "0lwa03hpp0mxa6aa1zv5w68k61y4hccfm0q2ykyq392fwal8vb50"; - }; - authors = [ - "Tyr Chen " - ]; - dependencies = [ - { - name = "bytes"; - packageId = "bytes"; - } - { - name = "futures"; - packageId = "futures"; - } - { - name = "http"; - packageId = "http"; - } - { - name = "http-body"; - packageId = "http-body"; - } - { - name = "prost"; - packageId = "prost"; - } - { - name = "tonic"; - packageId = "tonic"; - } - ]; - - }; "tonic-reflection" = rec { crateName = "tonic-reflection"; version = "0.5.0"; @@ -8399,10 +8358,6 @@ rec { name = "test-case"; packageId = "test-case"; } - { - name = "tonic-mock"; - packageId = "tonic-mock"; - } ]; features = { "tonic-reflection" = [ "dep:tonic-reflection" ]; -- cgit 1.4.1