From 47250c6629416b628a19e5571ac89f7b4646418c Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Mon, 14 May 2018 10:24:58 -0400 Subject: Refactor context out of API packages (#8755) * Refactor context out of API packages * Update function names per feedback * Move webhook handlers to web and fix web tests * Move more webhook tests out of api package * Fix static handler --- api4/context_test.go | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 api4/context_test.go (limited to 'api4/context_test.go') diff --git a/api4/context_test.go b/api4/context_test.go deleted file mode 100644 index 302b7b24b..000000000 --- a/api4/context_test.go +++ /dev/null @@ -1,31 +0,0 @@ -package api4 - -import ( - "net/http" - "testing" -) - -func TestRequireHookId(t *testing.T) { - c := &Context{} - t.Run("WhenHookIdIsValid", func(t *testing.T) { - c.Params = &ApiParams{HookId: "abcdefghijklmnopqrstuvwxyz"} - c.RequireHookId() - - if c.Err != nil { - t.Fatal("Hook Id is Valid. Should not have set error in context") - } - }) - - t.Run("WhenHookIdIsInvalid", func(t *testing.T) { - c.Params = &ApiParams{HookId: "abc"} - c.RequireHookId() - - if c.Err == nil { - t.Fatal("Should have set Error in context") - } - - if c.Err.StatusCode != http.StatusBadRequest { - t.Fatal("Should have set status as 400") - } - }) -} -- cgit v1.2.3-1-g7c22