summaryrefslogtreecommitdiffstats
path: root/api4/image_test.go
diff options
context:
space:
mode:
authorChristopher Brown <ccbrown112@gmail.com>2018-02-12 13:05:01 -0600
committerChristopher Brown <ccbrown112@gmail.com>2018-02-12 13:05:01 -0600
commit141cfd2f9b5715e5eb8d09d9bc5073700a1360fa (patch)
tree5844a5a0929085a0e6484d8db8c4e83219760cf3 /api4/image_test.go
parent1ae680aefae2deb1e9d07d7c2a1c863ec807a79f (diff)
downloadchat-141cfd2f9b5715e5eb8d09d9bc5073700a1360fa.tar.gz
chat-141cfd2f9b5715e5eb8d09d9bc5073700a1360fa.tar.bz2
chat-141cfd2f9b5715e5eb8d09d9bc5073700a1360fa.zip
remove willnorris/imageproxy support
Diffstat (limited to 'api4/image_test.go')
-rw-r--r--api4/image_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/api4/image_test.go b/api4/image_test.go
index 236d5785d..aa3619cdd 100644
--- a/api4/image_test.go
+++ b/api4/image_test.go
@@ -37,7 +37,8 @@ func TestGetImage(t *testing.T) {
assert.Equal(t, http.StatusNotFound, resp.StatusCode)
th.App.UpdateConfig(func(cfg *model.Config) {
- cfg.ServiceSettings.ImageProxyType = model.NewString("willnorris/imageproxy")
+ cfg.ServiceSettings.ImageProxyType = model.NewString("atmos/camo")
+ cfg.ServiceSettings.ImageProxyOptions = model.NewString("foo")
cfg.ServiceSettings.ImageProxyURL = model.NewString("https://proxy.foo.bar")
})
@@ -48,5 +49,5 @@ func TestGetImage(t *testing.T) {
resp, err = th.Client.HttpClient.Do(r)
require.NoError(t, err)
assert.Equal(t, http.StatusFound, resp.StatusCode)
- assert.Equal(t, "https://proxy.foo.bar//"+originURL, resp.Header.Get("Location"))
+ assert.Equal(t, "https://proxy.foo.bar/004afe2ef382eb5f30c4490f793f8a8c5b33d8a2/687474703a2f2f666f6f2e6261722f62617a2e676966", resp.Header.Get("Location"))
}