25 lines
635 B
Go
25 lines
635 B
Go
|
// Package log provides the
|
||
|
// functionality to start und initialize to logger
|
||
|
package log
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
// Function to test the logging
|
||
|
// Input: pointer to teh testing object
|
||
|
func TestLog(t *testing.T) {
|
||
|
assertion := assert.New(t)
|
||
|
|
||
|
req, _ := http.NewRequest("GET", "https://google.com/lola/duda?q=wasd", nil)
|
||
|
log := HTTP(req)
|
||
|
_, ok := log.Data["remote"]
|
||
|
|
||
|
assertion.NotNil(ok, "remote address not set in logger")
|
||
|
assertion.Equal("GET", log.Data["method"], "method not set in logger")
|
||
|
assertion.Equal("/lola/duda?q=wasd", log.Data["url"], "path not set in logger")
|
||
|
}
|