mirror of
https://github.com/elyby/chrly.git
synced 2024-12-26 15:00:25 +05:30
132 lines
3.8 KiB
Go
132 lines
3.8 KiB
Go
package mojang
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
var mockProfile = &ProfileInfo{Id: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", Name: "UserName"}
|
|
|
|
type UuidsProviderMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (m *UuidsProviderMock) GetUuid(ctx context.Context, username string) (*ProfileInfo, error) {
|
|
args := m.Called(ctx, username)
|
|
var result *ProfileInfo
|
|
if casted, ok := args.Get(0).(*ProfileInfo); ok {
|
|
result = casted
|
|
}
|
|
|
|
return result, args.Error(1)
|
|
}
|
|
|
|
type MojangUuidsStorageMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (m *MojangUuidsStorageMock) GetUuidForMojangUsername(ctx context.Context, username string) (string, string, error) {
|
|
args := m.Called(ctx, username)
|
|
return args.String(0), args.String(1), args.Error(2)
|
|
}
|
|
|
|
func (m *MojangUuidsStorageMock) StoreMojangUuid(ctx context.Context, username string, uuid string) error {
|
|
m.Called(ctx, username, uuid)
|
|
return nil
|
|
}
|
|
|
|
type UuidsProviderWithCacheSuite struct {
|
|
suite.Suite
|
|
|
|
Original *UuidsProviderMock
|
|
Storage *MojangUuidsStorageMock
|
|
Provider *UuidsProviderWithCache
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) SetupTest() {
|
|
s.Original = &UuidsProviderMock{}
|
|
s.Storage = &MojangUuidsStorageMock{}
|
|
s.Provider, _ = NewUuidsProviderWithCache(s.Original, s.Storage)
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TearDownTest() {
|
|
s.Original.AssertExpectations(s.T())
|
|
s.Storage.AssertExpectations(s.T())
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TestUncachedSuccessfully() {
|
|
ctx := context.Background()
|
|
|
|
s.Storage.On("GetUuidForMojangUsername", ctx, "username").Return("", "", nil)
|
|
s.Storage.On("StoreMojangUuid", ctx, "UserName", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").Once().Return(nil)
|
|
|
|
s.Original.On("GetUuid", ctx, "username").Once().Return(mockProfile, nil)
|
|
|
|
result, err := s.Provider.GetUuid(ctx, "username")
|
|
|
|
s.Require().NoError(err)
|
|
s.Require().Equal(mockProfile, result)
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TestUncachedNotExistsMojangUsername() {
|
|
s.Storage.On("GetUuidForMojangUsername", mock.Anything, "username").Return("", "", nil)
|
|
s.Storage.On("StoreMojangUuid", mock.Anything, "username", "").Once().Return(nil)
|
|
|
|
s.Original.On("GetUuid", mock.Anything, "username").Once().Return(nil, nil)
|
|
|
|
result, err := s.Provider.GetUuid(context.Background(), "username")
|
|
|
|
s.Require().NoError(err)
|
|
s.Require().Nil(result)
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TestKnownCachedUsername() {
|
|
s.Storage.On("GetUuidForMojangUsername", mock.Anything, "username").Return("mock-uuid", "UserName", nil)
|
|
|
|
result, err := s.Provider.GetUuid(context.Background(), "username")
|
|
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(result)
|
|
s.Require().Equal("UserName", result.Name)
|
|
s.Require().Equal("mock-uuid", result.Id)
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TestUnknownCachedUsername() {
|
|
s.Storage.On("GetUuidForMojangUsername", mock.Anything, "username").Return("", "UserName", nil)
|
|
|
|
result, err := s.Provider.GetUuid(context.Background(), "username")
|
|
|
|
s.Require().NoError(err)
|
|
s.Require().Nil(result)
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TestErrorDuringCacheQuery() {
|
|
expectedError := errors.New("mock error")
|
|
s.Storage.On("GetUuidForMojangUsername", mock.Anything, "username").Return("", "", expectedError)
|
|
|
|
result, err := s.Provider.GetUuid(context.Background(), "username")
|
|
|
|
s.Require().Same(expectedError, err)
|
|
s.Require().Nil(result)
|
|
}
|
|
|
|
func (s *UuidsProviderWithCacheSuite) TestErrorFromOriginalProvider() {
|
|
expectedError := errors.New("mock error")
|
|
s.Storage.On("GetUuidForMojangUsername", mock.Anything, "username").Return("", "", nil)
|
|
|
|
s.Original.On("GetUuid", mock.Anything, "username").Once().Return(nil, expectedError)
|
|
|
|
result, err := s.Provider.GetUuid(context.Background(), "username")
|
|
|
|
s.Require().Same(expectedError, err)
|
|
s.Require().Nil(result)
|
|
}
|
|
|
|
func TestUuidsProviderWithCache(t *testing.T) {
|
|
suite.Run(t, new(UuidsProviderWithCacheSuite))
|
|
}
|