mirror of
				https://github.com/elyby/chrly.git
				synced 2025-05-31 14:11:51 +05:30 
			
		
		
		
	Resolves #6. Remove hash field from the project structures
This commit is contained in:
		@@ -72,7 +72,6 @@ func (cfg *Config) PostSkin(resp http.ResponseWriter, req *http.Request) {
 | 
			
		||||
 | 
			
		||||
	record.Uuid = req.Form.Get("uuid")
 | 
			
		||||
	record.SkinId = skinId
 | 
			
		||||
	record.Hash = req.Form.Get("hash")
 | 
			
		||||
	record.Is1_8 = is18
 | 
			
		||||
	record.IsSlim = isSlim
 | 
			
		||||
	record.Url = req.Form.Get("url")
 | 
			
		||||
 
 | 
			
		||||
@@ -28,7 +28,6 @@ func TestConfig_PostSkin(t *testing.T) {
 | 
			
		||||
 | 
			
		||||
		resultModel := createSkinModel("mock_user", false)
 | 
			
		||||
		resultModel.SkinId = 5
 | 
			
		||||
		resultModel.Hash = "94a457d92a61460cb9cb5d6f29732d2a"
 | 
			
		||||
		resultModel.Url = "http://ely.by/minecraft/skins/default.png"
 | 
			
		||||
		resultModel.MojangTextures = ""
 | 
			
		||||
		resultModel.MojangSignature = ""
 | 
			
		||||
@@ -125,7 +124,6 @@ func TestConfig_PostSkin(t *testing.T) {
 | 
			
		||||
 | 
			
		||||
		resultModel := createSkinModel("mock_user", false)
 | 
			
		||||
		resultModel.SkinId = 5
 | 
			
		||||
		resultModel.Hash = "94a457d92a61460cb9cb5d6f29732d2a"
 | 
			
		||||
		resultModel.Url = "http://textures-server.com/skin.png"
 | 
			
		||||
		resultModel.MojangTextures = ""
 | 
			
		||||
		resultModel.MojangSignature = ""
 | 
			
		||||
@@ -173,7 +171,6 @@ func TestConfig_PostSkin(t *testing.T) {
 | 
			
		||||
		resultModel := createSkinModel("mock_user", false)
 | 
			
		||||
		resultModel.UserId = 2
 | 
			
		||||
		resultModel.SkinId = 5
 | 
			
		||||
		resultModel.Hash = "94a457d92a61460cb9cb5d6f29732d2a"
 | 
			
		||||
		resultModel.Url = "http://ely.by/minecraft/skins/default.png"
 | 
			
		||||
		resultModel.MojangTextures = ""
 | 
			
		||||
		resultModel.MojangSignature = ""
 | 
			
		||||
@@ -222,7 +219,6 @@ func TestConfig_PostSkin(t *testing.T) {
 | 
			
		||||
 | 
			
		||||
		resultModel := createSkinModel("changed_username", false)
 | 
			
		||||
		resultModel.SkinId = 5
 | 
			
		||||
		resultModel.Hash = "94a457d92a61460cb9cb5d6f29732d2a"
 | 
			
		||||
		resultModel.Url = "http://ely.by/minecraft/skins/default.png"
 | 
			
		||||
		resultModel.MojangTextures = ""
 | 
			
		||||
		resultModel.MojangSignature = ""
 | 
			
		||||
 
 | 
			
		||||
@@ -24,7 +24,7 @@ type skinsTestCase struct {
 | 
			
		||||
 | 
			
		||||
var skinsTestCases = []*skinsTestCase{
 | 
			
		||||
	{
 | 
			
		||||
		Name: "Obtain skin for known username",
 | 
			
		||||
		Name:                 "Obtain skin for known username",
 | 
			
		||||
		ExistsInLocalStorage: true,
 | 
			
		||||
		AssertResponse: func(assert *testify.Assertions, resp *http.Response) {
 | 
			
		||||
			assert.Equal(301, resp.StatusCode)
 | 
			
		||||
@@ -32,28 +32,28 @@ var skinsTestCases = []*skinsTestCase{
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		Name: "Obtain skin for unknown username that exists in Mojang and has a cape",
 | 
			
		||||
		Name:                 "Obtain skin for unknown username that exists in Mojang and has a cape",
 | 
			
		||||
		ExistsInLocalStorage: false,
 | 
			
		||||
		ExistsInMojang: true,
 | 
			
		||||
		HasSkinInMojangResp: true,
 | 
			
		||||
		ExistsInMojang:       true,
 | 
			
		||||
		HasSkinInMojangResp:  true,
 | 
			
		||||
		AssertResponse: func(assert *testify.Assertions, resp *http.Response) {
 | 
			
		||||
			assert.Equal(301, resp.StatusCode)
 | 
			
		||||
			assert.Equal("http://mojang/skin.png", resp.Header.Get("Location"))
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		Name: "Obtain skin for unknown username that exists in Mojang, but don't has a cape",
 | 
			
		||||
		Name:                 "Obtain skin for unknown username that exists in Mojang, but don't has a cape",
 | 
			
		||||
		ExistsInLocalStorage: false,
 | 
			
		||||
		ExistsInMojang: true,
 | 
			
		||||
		HasSkinInMojangResp: false,
 | 
			
		||||
		ExistsInMojang:       true,
 | 
			
		||||
		HasSkinInMojangResp:  false,
 | 
			
		||||
		AssertResponse: func(assert *testify.Assertions, resp *http.Response) {
 | 
			
		||||
			assert.Equal(404, resp.StatusCode)
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		Name: "Obtain skin for unknown username that doesn't exists in Mojang",
 | 
			
		||||
		Name:                 "Obtain skin for unknown username that doesn't exists in Mojang",
 | 
			
		||||
		ExistsInLocalStorage: false,
 | 
			
		||||
		ExistsInMojang: false,
 | 
			
		||||
		ExistsInMojang:       false,
 | 
			
		||||
		AssertResponse: func(assert *testify.Assertions, resp *http.Response) {
 | 
			
		||||
			assert.Equal(404, resp.StatusCode)
 | 
			
		||||
		},
 | 
			
		||||
@@ -150,7 +150,6 @@ func createSkinModel(username string, isSlim bool) *model.Skin {
 | 
			
		||||
		Username:        username,
 | 
			
		||||
		Uuid:            "0f657aa8-bfbe-415d-b700-5750090d3af3", // Use non nil UUID to pass validation in api tests
 | 
			
		||||
		SkinId:          1,
 | 
			
		||||
		Hash:            "00000000000000000000000000000000",
 | 
			
		||||
		Url:             "http://chrly/skin.png",
 | 
			
		||||
		MojangTextures:  "mocked textures base64",
 | 
			
		||||
		MojangSignature: "mocked signature",
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user