From e3d5bec57998ba2638b17dccb34569b90449c1fe Mon Sep 17 00:00:00 2001 From: Naoki Kosaka Date: Sun, 2 Jun 2019 16:44:54 +0900 Subject: [PATCH] Test Activity's Content-Type format. --- worker/worker_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worker/worker_test.go b/worker/worker_test.go index 4293cdd..d4f3c97 100644 --- a/worker/worker_test.go +++ b/worker/worker_test.go @@ -26,7 +26,7 @@ func TestMain(m *testing.M) { func TestRelayActivity(t *testing.T) { s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { data, _ := ioutil.ReadAll(r.Body) - if string(data) != "data" { + if string(data) != "data" || r.Header.Get("Content-Type") != "application/activity+json" { w.WriteHeader(500) w.Write(nil) } else { @@ -80,7 +80,7 @@ func TestRelayActivityResp500(t *testing.T) { func TestRegistorActivity(t *testing.T) { s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { data, _ := ioutil.ReadAll(r.Body) - if string(data) != "data" { + if string(data) != "data" || r.Header.Get("Content-Type") != "application/activity+json" { w.WriteHeader(500) w.Write(nil) } else {