39 lines
889 B
Go
39 lines
889 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"go.uber.org/zap"
|
||
|
"mailnotifier/internal/clients"
|
||
|
"mailnotifier/internal/proto/notifyer"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func Test_GetQuizzes(t *testing.T) {
|
||
|
logger, _ := zap.NewProduction()
|
||
|
client := clients.NewQuizClient("localhost:9000", logger)
|
||
|
ctx := context.Background()
|
||
|
|
||
|
resp, err := client.GetQuizzes(ctx, ¬ifyer.GetQuizzesRequest{
|
||
|
AccountId: "64f2cd7a7047f28fdabf6d9e",
|
||
|
})
|
||
|
if err != nil {
|
||
|
logger.Error("error", zap.Error(err))
|
||
|
}
|
||
|
fmt.Println(resp.QuizIds)
|
||
|
}
|
||
|
|
||
|
func Test_GetStartedQuizzes(t *testing.T) {
|
||
|
logger, _ := zap.NewProduction()
|
||
|
client := clients.NewQuizClient("localhost:9000", logger)
|
||
|
ctx := context.Background()
|
||
|
|
||
|
resp, err := client.GetStartedQuizzes(ctx, ¬ifyer.GetStartedQuizzesRequest{
|
||
|
AccountId: "64f2cd7a7047f28fdabf6d9e",
|
||
|
})
|
||
|
if err != nil {
|
||
|
logger.Error("error", zap.Error(err))
|
||
|
}
|
||
|
fmt.Println(resp.QuizIds)
|
||
|
}
|