Disable unreliable cache test

This commit is contained in:
Evan Goode 2024-12-21 14:21:44 -05:00
parent 5a58d24156
commit 4a48ef6ed3

View File

@ -88,23 +88,24 @@ func (ts *TestSuite) testAccountPlayerNameToIDFallback(t *testing.T) {
assert.Nil(t, err) assert.Nil(t, err)
assert.Equal(t, uuid, player.UUID) assert.Equal(t, uuid, player.UUID)
// Test that fallback requests are correctly cached: change the aux // This test is unreliable
// user's player name and make sure the main server finds the old // // Test that fallback requests are correctly cached: change the aux
// profile in the cache // // user's player name and make sure the main server finds the old
player.Name = "testcache" // // profile in the cache
assert.Nil(t, ts.AuxApp.DB.Save(&player).Error) // player.Name = "testcache"
// assert.Nil(t, ts.AuxApp.DB.Save(&player).Error)
rec = ts.Get(t, ts.Server, "/users/profiles/minecraft/"+TEST_PLAYER_NAME, nil, nil) //
assert.Equal(t, http.StatusOK, rec.Code) // rec = ts.Get(t, ts.Server, "/users/profiles/minecraft/"+TEST_PLAYER_NAME, nil, nil)
assert.Nil(t, json.NewDecoder(rec.Body).Decode(&response)) // assert.Equal(t, http.StatusOK, rec.Code)
// assert.Nil(t, json.NewDecoder(rec.Body).Decode(&response))
uuid, err = IDToUUID(response.ID) //
assert.Nil(t, err) // uuid, err = IDToUUID(response.ID)
assert.Equal(t, uuid, player.UUID) // assert.Nil(t, err)
// assert.Equal(t, uuid, player.UUID)
// Change the aux user's player name back //
player.Name = TEST_PLAYER_NAME // // Change the aux user's player name back
assert.Nil(t, ts.AuxApp.DB.Save(&player).Error) // player.Name = TEST_PLAYER_NAME
// assert.Nil(t, ts.AuxApp.DB.Save(&player).Error)
} }
// Test a non-existent user // Test a non-existent user