From 1ed855eb51283be1969fa337bececeecd6c5e344 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Wed, 11 Nov 2020 12:14:58 +0100 Subject: removed code snippets that we don't need for now --- handler_test.go | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) (limited to 'handler_test.go') diff --git a/handler_test.go b/handler_test.go index a98c9d6..c8cbaca 100644 --- a/handler_test.go +++ b/handler_test.go @@ -3,7 +3,6 @@ package stfe import ( "crypto" "errors" - "fmt" "strings" "testing" "time" @@ -14,12 +13,9 @@ import ( "github.com/golang/mock/gomock" "github.com/google/certificate-transparency-go/trillian/mockclient" - "github.com/google/go-cmp/cmp" "github.com/google/trillian" "github.com/system-transparency/stfe/server/testdata" "github.com/system-transparency/stfe/x509util" - - "google.golang.org/protobuf/proto" ) type testHandler struct { @@ -149,11 +145,6 @@ func TestGetSth(t *testing.T) { th := newTestHandler(t, nil) defer th.mockCtrl.Finish() - treq := &trillian.GetLatestSignedLogRootRequest{ - LogId: th.instance.LogParameters.TreeId, - } - th.client.EXPECT().GetLatestSignedLogRoot(deadlineMatcher{}, compareMatcher{treq}).Return(table.trsp, table.terr) - url := "http://example.com" + th.instance.LogParameters.Prefix + "/get-sth" req, err := http.NewRequest("GET", url, nil) if err != nil { @@ -161,6 +152,7 @@ func TestGetSth(t *testing.T) { } w := httptest.NewRecorder() + th.client.EXPECT().GetLatestSignedLogRoot(gomock.Any(), gomock.Any()).Return(table.trsp, table.terr) th.getHandler(t, "get-sth").ServeHTTP(w, req) if w.Code != table.wantCode { t.Errorf("GET(%s)=%d, want http status code %d", url, w.Code, table.wantCode) @@ -177,26 +169,3 @@ func TestGetSth(t *testing.T) { }() } } - -type deadlineMatcher struct { -} - -func (dm deadlineMatcher) Matches(x interface{}) bool { - return true // TODO: deadlineMatcher.Matches -} - -func (dm deadlineMatcher) String() string { - return fmt.Sprintf("deadline is: TODO") -} - -type compareMatcher struct { - want interface{} -} - -func (cm compareMatcher) Matches(got interface{}) bool { - return cmp.Equal(got, cm.want, cmp.Comparer(proto.Equal)) -} - -func (cm compareMatcher) String() string { - return fmt.Sprintf("equals: TODO") -} -- cgit v1.2.3