add service
Some checks failed
Deploy Smart Search Backend / deploy (push) Failing after 13m51s

This commit is contained in:
vallyenfail
2026-01-20 22:30:05 +03:00
parent 8b9554720d
commit 9b4b8bd012
16 changed files with 103 additions and 100 deletions

View File

@@ -15,7 +15,7 @@ func (s *IntegrationSuite) TestFullFlow_CompleteRequestLifecycle() {
loginReq := &authpb.LoginRequest{
Email: "test@example.com",
Password: "testpassword",
Password: "TestPassword123",
Ip: "127.0.0.1",
UserAgent: "integration-test",
}
@@ -135,7 +135,7 @@ func (s *IntegrationSuite) TestFullFlow_InviteCodeLifecycle() {
loginReq := &authpb.LoginRequest{
Email: "test@example.com",
Password: "testpassword",
Password: "TestPassword123",
Ip: "127.0.0.1",
UserAgent: "integration-test",
}
@@ -186,7 +186,7 @@ func (s *IntegrationSuite) TestFullFlow_CreateTZ_ApproveTZ_GetMailingListByID_Ex
loginReq := &authpb.LoginRequest{
Email: "test@example.com",
Password: "testpassword",
Password: "TestPassword123",
Ip: "127.0.0.1",
UserAgent: "integration-test",
}
@@ -263,7 +263,7 @@ func (s *IntegrationSuite) TestFullFlow_MultipleRefresh() {
loginReq := &authpb.LoginRequest{
Email: "test@example.com",
Password: "testpassword",
Password: "TestPassword123",
Ip: "127.0.0.1",
UserAgent: "integration-test",
}
@@ -273,10 +273,8 @@ func (s *IntegrationSuite) TestFullFlow_MultipleRefresh() {
s.NotEmpty(loginResp.AccessToken)
s.NotEmpty(loginResp.RefreshToken)
refreshToken := loginResp.RefreshToken
refreshReq1 := &authpb.RefreshRequest{
RefreshToken: refreshToken,
RefreshToken: loginResp.RefreshToken,
Ip: "127.0.0.1",
UserAgent: "integration-test",
}
@@ -284,9 +282,10 @@ func (s *IntegrationSuite) TestFullFlow_MultipleRefresh() {
refreshResp1, err := s.authClient.Refresh(ctx, refreshReq1)
s.NoError(err)
s.NotEmpty(refreshResp1.AccessToken)
s.NotEmpty(refreshResp1.RefreshToken)
refreshReq2 := &authpb.RefreshRequest{
RefreshToken: refreshToken,
RefreshToken: refreshResp1.RefreshToken,
Ip: "127.0.0.1",
UserAgent: "integration-test",
}