-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
api: moved log-related tests to api/log
- Loading branch information
Showing
2 changed files
with
44 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package log | ||
|
||
import ( | ||
"errors" | ||
"net/http" | ||
"net/http/httptest" | ||
"reflect" | ||
"testing" | ||
|
||
"github.com/smallstep/certificates/logging" | ||
) | ||
|
||
func TestError(t *testing.T) { | ||
theError := errors.New("the error") | ||
|
||
type args struct { | ||
rw http.ResponseWriter | ||
err error | ||
} | ||
tests := []struct { | ||
name string | ||
args args | ||
withFields bool | ||
}{ | ||
{"normalLogger", args{httptest.NewRecorder(), theError}, false}, | ||
{"responseLogger", args{logging.NewResponseLogger(httptest.NewRecorder()), theError}, true}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
Error(tt.args.rw, tt.args.err) | ||
if tt.withFields { | ||
if rl, ok := tt.args.rw.(logging.ResponseLogger); ok { | ||
fields := rl.Fields() | ||
if !reflect.DeepEqual(fields["error"], theError) { | ||
t.Errorf("ResponseLogger[\"error\"] = %s, wants %s", fields["error"], theError) | ||
} | ||
} else { | ||
t.Error("ResponseWriter does not implement logging.ResponseLogger") | ||
} | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters