MM-13923 Fixing pulling from incorect cache. (#10216)
* Fixing pulling from incorect cache. * Adding caching test.
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
0f35c4b24d
Коммит
4e0840969b
@@ -489,7 +489,7 @@ func getRedirectLocation(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if location, ok := openGraphDataCache.Get(url); ok {
|
if location, ok := redirectLocationDataCache.Get(url); ok {
|
||||||
m["location"] = location.(string)
|
m["location"] = location.(string)
|
||||||
w.Write([]byte(model.MapToJson(m)))
|
w.Write([]byte(model.MapToJson(m)))
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -771,6 +771,11 @@ func TestRedirectLocation(t *testing.T) {
|
|||||||
CheckNoError(t, resp)
|
CheckNoError(t, resp)
|
||||||
assert.Equal(t, expected, actual)
|
assert.Equal(t, expected, actual)
|
||||||
|
|
||||||
|
// Check cached value
|
||||||
|
actual, resp = th.SystemAdminClient.GetRedirectLocation(mockBitlyLink, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
assert.Equal(t, expected, actual)
|
||||||
|
|
||||||
*th.App.Config().ServiceSettings.EnableLinkPreviews = false
|
*th.App.Config().ServiceSettings.EnableLinkPreviews = false
|
||||||
actual, resp = th.SystemAdminClient.GetRedirectLocation("https://mattermost.com/", "")
|
actual, resp = th.SystemAdminClient.GetRedirectLocation("https://mattermost.com/", "")
|
||||||
CheckNoError(t, resp)
|
CheckNoError(t, resp)
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user