mirror of
https://github.com/elyby/chrly.git
synced 2024-12-26 15:00:25 +05:30
586 lines
18 KiB
Go
586 lines
18 KiB
Go
package http
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
testify "github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"ely.by/chrly/internal/db"
|
|
)
|
|
|
|
type ProfilesProviderMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (m *ProfilesProviderMock) FindProfileByUsername(ctx context.Context, username string, allowProxy bool) (*db.Profile, error) {
|
|
args := m.Called(ctx, username, allowProxy)
|
|
var result *db.Profile
|
|
if casted, ok := args.Get(0).(*db.Profile); ok {
|
|
result = casted
|
|
}
|
|
|
|
return result, args.Error(1)
|
|
}
|
|
|
|
type SignerServiceMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (m *SignerServiceMock) Sign(ctx context.Context, data string) (string, error) {
|
|
args := m.Called(ctx, data)
|
|
return args.String(0), args.Error(1)
|
|
}
|
|
|
|
func (m *SignerServiceMock) GetPublicKey(ctx context.Context, format string) (string, error) {
|
|
args := m.Called(ctx, format)
|
|
return args.String(0), args.Error(1)
|
|
}
|
|
|
|
type SkinsystemTestSuite struct {
|
|
suite.Suite
|
|
|
|
App *Skinsystem
|
|
|
|
ProfilesProvider *ProfilesProviderMock
|
|
SignerService *SignerServiceMock
|
|
}
|
|
|
|
/********************
|
|
* Setup test suite *
|
|
********************/
|
|
|
|
func (t *SkinsystemTestSuite) SetupSubTest() {
|
|
timeNow = func() time.Time {
|
|
CET, _ := time.LoadLocation("CET")
|
|
return time.Date(2021, 02, 25, 01, 50, 23, 0, CET)
|
|
}
|
|
|
|
t.ProfilesProvider = &ProfilesProviderMock{}
|
|
t.SignerService = &SignerServiceMock{}
|
|
|
|
t.App = &Skinsystem{
|
|
ProfilesProvider: t.ProfilesProvider,
|
|
SignerService: t.SignerService,
|
|
TexturesExtraParamName: "texturesParamName",
|
|
TexturesExtraParamValue: "texturesParamValue",
|
|
}
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TearDownSubTest() {
|
|
t.ProfilesProvider.AssertExpectations(t.T())
|
|
t.SignerService.AssertExpectations(t.T())
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TestSkinHandler() {
|
|
for _, url := range []string{"http://chrly/skins/mock_username", "http://chrly/skins?name=mock_username"} {
|
|
t.Run("known username with a skin", func() {
|
|
req := httptest.NewRequest("GET", url, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// TODO: see the TODO about context above
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
SkinUrl: "https://example.com/skin.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusMovedPermanently, result.StatusCode)
|
|
t.Equal("https://example.com/skin.png", result.Header.Get("Location"))
|
|
})
|
|
|
|
t.Run("known username without a skin", func() {
|
|
req := httptest.NewRequest("GET", url, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNotFound, result.StatusCode)
|
|
})
|
|
|
|
t.Run("err from profiles provider", func() {
|
|
req := httptest.NewRequest("GET", url, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, errors.New("mock error"))
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
}
|
|
|
|
t.Run("username with png extension", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/skins/mock_username.png", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
SkinUrl: "https://example.com/skin.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusMovedPermanently, result.StatusCode)
|
|
t.Equal("https://example.com/skin.png", result.Header.Get("Location"))
|
|
})
|
|
|
|
t.Run("no name param", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/skins", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
resp := w.Result()
|
|
t.Equal(http.StatusBadRequest, resp.StatusCode)
|
|
})
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TestCapeHandler() {
|
|
for _, url := range []string{"http://chrly/cloaks/mock_username", "http://chrly/cloaks?name=mock_username"} {
|
|
t.Run("known username with a skin", func() {
|
|
req := httptest.NewRequest("GET", url, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// TODO: I can't find a way to verify that it's the context from the request that was passed in,
|
|
// as the Mux calls WithValue() on it, which creates a new Context and I haven't been able
|
|
// to find a way to verify that the passed context matches the base
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
CapeUrl: "https://example.com/cape.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusMovedPermanently, result.StatusCode)
|
|
t.Equal("https://example.com/cape.png", result.Header.Get("Location"))
|
|
})
|
|
|
|
t.Run("known username without a skin", func() {
|
|
req := httptest.NewRequest("GET", url, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNotFound, result.StatusCode)
|
|
})
|
|
|
|
t.Run("err from profiles provider", func() {
|
|
req := httptest.NewRequest("GET", url, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, errors.New("mock error"))
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
}
|
|
|
|
t.Run("username with png extension", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/cloaks/mock_username.png", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
CapeUrl: "https://example.com/cape.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusMovedPermanently, result.StatusCode)
|
|
t.Equal("https://example.com/cape.png", result.Header.Get("Location"))
|
|
})
|
|
|
|
t.Run("no name param", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/cloaks", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
resp := w.Result()
|
|
t.Equal(http.StatusBadRequest, resp.StatusCode)
|
|
})
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TestTexturesHandler() {
|
|
t.Run("known username with both textures", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// TODO: see the TODO about context above
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
SkinUrl: "https://example.com/skin.png",
|
|
CapeUrl: "https://example.com/cape.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusOK, result.StatusCode)
|
|
t.Equal("application/json", result.Header.Get("Content-Type"))
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.JSONEq(`{
|
|
"SKIN": {
|
|
"url": "https://example.com/skin.png"
|
|
},
|
|
"CAPE": {
|
|
"url": "https://example.com/cape.png"
|
|
}
|
|
}`, string(body))
|
|
})
|
|
|
|
t.Run("known username with only slim skin", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
SkinUrl: "https://example.com/skin.png",
|
|
SkinModel: "slim",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.JSONEq(`{
|
|
"SKIN": {
|
|
"url": "https://example.com/skin.png",
|
|
"metadata": {
|
|
"model": "slim"
|
|
}
|
|
}
|
|
}`, string(body))
|
|
})
|
|
|
|
t.Run("known username with only cape", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
CapeUrl: "https://example.com/cape.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.JSONEq(`{
|
|
"CAPE": {
|
|
"url": "https://example.com/cape.png"
|
|
}
|
|
}`, string(body))
|
|
})
|
|
|
|
t.Run("known username without any textures", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNoContent, result.StatusCode)
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Empty(body)
|
|
})
|
|
|
|
t.Run("unknown username", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNotFound, result.StatusCode)
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Empty(body)
|
|
})
|
|
|
|
t.Run("err from profiles provider", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, errors.New("mock error"))
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TestSignedTextures() {
|
|
t.Run("exists profile with mojang textures", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/signed/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// TODO: see the TODO about context above
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", false).Return(&db.Profile{
|
|
Uuid: "mock-uuid",
|
|
Username: "mock",
|
|
MojangTextures: "mock-mojang-textures",
|
|
MojangSignature: "mock-mojang-signature",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusOK, result.StatusCode)
|
|
t.Equal("application/json", result.Header.Get("Content-Type"))
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.JSONEq(`{
|
|
"id": "mock-uuid",
|
|
"name": "mock",
|
|
"properties": [
|
|
{
|
|
"name": "textures",
|
|
"signature": "mock-mojang-signature",
|
|
"value": "mock-mojang-textures"
|
|
},
|
|
{
|
|
"name": "texturesParamName",
|
|
"value": "texturesParamValue"
|
|
}
|
|
]
|
|
}`, string(body))
|
|
})
|
|
|
|
t.Run("exists profile without mojang textures", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/signed/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", false).Return(&db.Profile{}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNoContent, result.StatusCode)
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Empty(body)
|
|
})
|
|
|
|
t.Run("not exists profile", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/signed/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", false).Return(nil, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNotFound, result.StatusCode)
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Empty(body)
|
|
})
|
|
|
|
t.Run("err from profiles provider", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/signed/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", false).Return(nil, errors.New("mock error"))
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
|
|
t.Run("should allow proxying when specified get param", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/textures/signed/mock_username?proxy=true", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
})
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TestProfile() {
|
|
t.Run("exists profile with skin and cape", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/profile/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// TODO: see the TODO about context above
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
Uuid: "mock-uuid",
|
|
Username: "mock_username",
|
|
SkinUrl: "https://example.com/skin.png",
|
|
SkinModel: "slim",
|
|
CapeUrl: "https://example.com/cape.png",
|
|
}, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusOK, result.StatusCode)
|
|
t.Equal("application/json", result.Header.Get("Content-Type"))
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.JSONEq(`{
|
|
"id": "mock-uuid",
|
|
"name": "mock_username",
|
|
"properties": [
|
|
{
|
|
"name": "textures",
|
|
"value": "eyJ0aW1lc3RhbXAiOjE2MTQyMTQyMjMwMDAsInByb2ZpbGVJZCI6Im1vY2stdXVpZCIsInByb2ZpbGVOYW1lIjoibW9ja191c2VybmFtZSIsInRleHR1cmVzIjp7IlNLSU4iOnsidXJsIjoiaHR0cHM6Ly9leGFtcGxlLmNvbS9za2luLnBuZyIsIm1ldGFkYXRhIjp7Im1vZGVsIjoic2xpbSJ9fSwiQ0FQRSI6eyJ1cmwiOiJodHRwczovL2V4YW1wbGUuY29tL2NhcGUucG5nIn19fQ=="
|
|
},
|
|
{
|
|
"name": "texturesParamName",
|
|
"value": "texturesParamValue"
|
|
}
|
|
]
|
|
}`, string(body))
|
|
})
|
|
|
|
t.Run("exists signed profile with skin", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/profile/mock_username?unsigned=false", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{
|
|
Uuid: "mock-uuid",
|
|
Username: "mock_username",
|
|
SkinUrl: "https://example.com/skin.png",
|
|
SkinModel: "slim",
|
|
}, nil)
|
|
t.SignerService.On("Sign", mock.Anything, "eyJ0aW1lc3RhbXAiOjE2MTQyMTQyMjMwMDAsInByb2ZpbGVJZCI6Im1vY2stdXVpZCIsInByb2ZpbGVOYW1lIjoibW9ja191c2VybmFtZSIsInRleHR1cmVzIjp7IlNLSU4iOnsidXJsIjoiaHR0cHM6Ly9leGFtcGxlLmNvbS9za2luLnBuZyIsIm1ldGFkYXRhIjp7Im1vZGVsIjoic2xpbSJ9fX19").Return("mock signature", nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusOK, result.StatusCode)
|
|
t.Equal("application/json", result.Header.Get("Content-Type"))
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.JSONEq(`{
|
|
"id": "mock-uuid",
|
|
"name": "mock_username",
|
|
"properties": [
|
|
{
|
|
"name": "textures",
|
|
"signature": "mock signature",
|
|
"value": "eyJ0aW1lc3RhbXAiOjE2MTQyMTQyMjMwMDAsInByb2ZpbGVJZCI6Im1vY2stdXVpZCIsInByb2ZpbGVOYW1lIjoibW9ja191c2VybmFtZSIsInRleHR1cmVzIjp7IlNLSU4iOnsidXJsIjoiaHR0cHM6Ly9leGFtcGxlLmNvbS9za2luLnBuZyIsIm1ldGFkYXRhIjp7Im1vZGVsIjoic2xpbSJ9fX19"
|
|
},
|
|
{
|
|
"name": "texturesParamName",
|
|
"value": "texturesParamValue"
|
|
}
|
|
]
|
|
}`, string(body))
|
|
})
|
|
|
|
t.Run("not exists profile", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/profile/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, nil)
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusNotFound, result.StatusCode)
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Empty(body)
|
|
})
|
|
|
|
t.Run("err from profiles provider", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/profile/mock_username", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(nil, errors.New("mock error"))
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
|
|
t.Run("err from textures signer", func() {
|
|
req := httptest.NewRequest("GET", "http://chrly/profile/mock_username?unsigned=false", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.ProfilesProvider.On("FindProfileByUsername", mock.Anything, "mock_username", true).Return(&db.Profile{}, nil)
|
|
t.SignerService.On("Sign", mock.Anything, mock.Anything).Return("", errors.New("mock error"))
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
}
|
|
|
|
func (t *SkinsystemTestSuite) TestSignatureVerificationKey() {
|
|
t.Run("in pem format", func() {
|
|
publicKey := "mock public key in pem format"
|
|
t.SignerService.On("GetPublicKey", mock.Anything, "pem").Return(publicKey, nil)
|
|
|
|
req := httptest.NewRequest("GET", "http://chrly/signature-verification-key.pem", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusOK, result.StatusCode)
|
|
t.Equal("application/x-pem-file", result.Header.Get("Content-Type"))
|
|
t.Equal(`attachment; filename="yggdrasil_session_pubkey.pem"`, result.Header.Get("Content-Disposition"))
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Equal(publicKey, string(body))
|
|
})
|
|
|
|
t.Run("in der format", func() {
|
|
publicKey := "mock public key in der format"
|
|
t.SignerService.On("GetPublicKey", mock.Anything, "der").Return(publicKey, nil)
|
|
|
|
req := httptest.NewRequest("GET", "http://chrly/signature-verification-key.der", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusOK, result.StatusCode)
|
|
t.Equal("application/octet-stream", result.Header.Get("Content-Type"))
|
|
t.Equal(`attachment; filename="yggdrasil_session_pubkey.der"`, result.Header.Get("Content-Disposition"))
|
|
body, _ := io.ReadAll(result.Body)
|
|
t.Equal(publicKey, string(body))
|
|
})
|
|
|
|
t.Run("handle error", func() {
|
|
t.SignerService.On("GetPublicKey", mock.Anything, "pem").Return("", errors.New("mock error"))
|
|
|
|
req := httptest.NewRequest("GET", "http://chrly/signature-verification-key.pem", nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
t.App.Handler().ServeHTTP(w, req)
|
|
|
|
result := w.Result()
|
|
t.Equal(http.StatusInternalServerError, result.StatusCode)
|
|
})
|
|
}
|
|
|
|
func TestSkinsystem(t *testing.T) {
|
|
suite.Run(t, new(SkinsystemTestSuite))
|
|
}
|
|
|
|
func TestParseUsername(t *testing.T) {
|
|
assert := testify.New(t)
|
|
assert.Equal("test", parseUsername("test.png"), "Function should trim .png at end")
|
|
assert.Equal("test", parseUsername("test"), "Function should return string itself, if it not contains .png at end")
|
|
}
|