From 94203f7ab59d69cb7c0779222c04311c03f77251 Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 14 Apr 2026 11:14:22 -0700 Subject: [PATCH] fix: inject deps for tests --- go/internal/network/service_test.go | 3 ++- go/internal/particle/service_test.go | 17 +++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/go/internal/network/service_test.go b/go/internal/network/service_test.go index b2f2032..c14e4fa 100644 --- a/go/internal/network/service_test.go +++ b/go/internal/network/service_test.go @@ -6,6 +6,7 @@ import ( "testing" pbaero "github.com/flowy-live/llink/genproto/aero" + "github.com/flowy-live/llink/internal/billing" "github.com/flowy-live/llink/internal/network" "github.com/flowy-live/llink/internal/network/mocks" "github.com/flowy-live/llink/internal/testhelper" @@ -31,7 +32,7 @@ func newTestService(t *testing.T) network.Service { ShootEmail(gomock.Any(), gomock.Any()). Return(&pbaero.ShootEmailResponse{}, nil). AnyTimes() - return network.NewService(dbPool, mockAero) + return network.NewService(dbPool, mockAero, billing.Noop()) } func TestNetworkService(t *testing.T) { diff --git a/go/internal/particle/service_test.go b/go/internal/particle/service_test.go index b85ac72..61a6946 100644 --- a/go/internal/particle/service_test.go +++ b/go/internal/particle/service_test.go @@ -6,6 +6,7 @@ import ( "os" "testing" + "github.com/flowy-live/llink/internal/billing" "github.com/flowy-live/llink/internal/network" "github.com/flowy-live/llink/internal/particle" "github.com/flowy-live/llink/internal/testhelper" @@ -33,7 +34,7 @@ func getStreamStatus(data json.RawMessage) string { func TestParticleService_CreateAndGet(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network first @@ -72,7 +73,7 @@ func TestParticleService_CreateAndGet(t *testing.T) { func TestParticleService_NestedParticles(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network @@ -118,7 +119,7 @@ func TestParticleService_NestedParticles(t *testing.T) { func TestParticleService_CustomVisibility(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network with a member @@ -160,7 +161,7 @@ func TestParticleService_CustomVisibility(t *testing.T) { func TestParticleService_UpdateAndDelete(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network @@ -198,7 +199,7 @@ func TestParticleService_UpdateAndDelete(t *testing.T) { func TestParticleService_ListRootParticles(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network @@ -224,7 +225,7 @@ func TestParticleService_ListRootParticles(t *testing.T) { func TestParticleService_OpenCloseStream(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network @@ -272,7 +273,7 @@ func TestParticleService_OpenCloseStream(t *testing.T) { func TestParticleService_NotAStream(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network @@ -301,7 +302,7 @@ func TestParticleService_NotAStream(t *testing.T) { func TestParticleService_AccessInheritance(t *testing.T) { ctx := context.Background() - networkSvc := network.NewService(dbPool, nil) + networkSvc := network.NewService(dbPool, nil, billing.Noop()) svc := particle.NewService(dbPool, networkSvc) // Create a network with members