Updated formatting

This commit is contained in:
Eduard Urbach 2025-06-06 17:10:26 +02:00
parent c5ad01daee
commit 86448ac4a7
Signed by: eduard
GPG key ID: 49226B848C78F6C8
18 changed files with 18 additions and 18 deletions

2
.gitignore vendored
View file

@ -5,4 +5,4 @@
!*.md !*.md
!*.mod !*.mod
!*.sum !*.sum
!*.txt !*.txt

View file

@ -81,4 +81,4 @@ func (ctx *context) Status(status int) Context {
func (ctx *context) String(body string) error { func (ctx *context) String(body string) error {
ctx.response.body = append(ctx.response.body, body...) ctx.response.body = append(ctx.response.body, body...)
return nil return nil
} }

View file

@ -66,4 +66,4 @@ func TestRedirect(t *testing.T) {
response := s.Request("GET", "/", nil, nil) response := s.Request("GET", "/", nil, nil)
assert.Equal(t, response.Status(), 301) assert.Equal(t, response.Status(), 301)
assert.Equal(t, response.Header("Location"), "/target") assert.Equal(t, response.Header("Location"), "/target")
} }

View file

@ -1,4 +1,4 @@
package web package web
// Handler is a function that deals with the given request/response context. // Handler is a function that deals with the given request/response context.
type Handler func(Context) error type Handler func(Context) error

View file

@ -4,4 +4,4 @@ package web
type Header struct { type Header struct {
Key string Key string
Value string Value string
} }

View file

@ -87,4 +87,4 @@ Please see the [license documentation](https://urbach.dev/license).
## Copyright ## Copyright
© 2024 Eduard Urbach © 2024 Eduard Urbach

View file

@ -79,4 +79,4 @@ func (req *request) addParameter(key string, value string) {
Key: key, Key: key,
Value: value, Value: value,
}) })
} }

View file

@ -51,4 +51,4 @@ func TestRequestParam(t *testing.T) {
response := s.Request("GET", "/blog/my-article", nil, nil) response := s.Request("GET", "/blog/my-article", nil, nil)
assert.Equal(t, response.Status(), 200) assert.Equal(t, response.Status(), 200)
assert.Equal(t, string(response.Body()), "my-article") assert.Equal(t, string(response.Body()), "my-article")
} }

View file

@ -76,4 +76,4 @@ func (res *response) Write(body []byte) (int, error) {
func (res *response) WriteString(body string) (int, error) { func (res *response) WriteString(body string) (int, error) {
res.body = append(res.body, body...) res.body = append(res.body, body...)
return len(body), nil return len(body), nil
} }

View file

@ -97,4 +97,4 @@ func TestResponseHeaderOverwrite(t *testing.T) {
assert.Equal(t, response.Status(), 200) assert.Equal(t, response.Status(), 200)
assert.Equal(t, response.Header("Content-Type"), "text/html") assert.Equal(t, response.Header("Content-Type"), "text/html")
assert.Equal(t, string(response.Body()), "") assert.Equal(t, string(response.Body()), "")
} }

View file

@ -261,4 +261,4 @@ func (s *server) newContext() *context {
status: 200, status: 200,
}, },
} }
} }

View file

@ -203,4 +203,4 @@ func TestUnavailablePort(t *testing.T) {
s := web.NewServer() s := web.NewServer()
s.Run(":8080") s.Run(":8080")
} }

View file

@ -12,4 +12,4 @@ func main() {
}) })
s.Run(":8080") s.Run(":8080")
} }

2
go.mod
View file

@ -5,4 +5,4 @@ go 1.24
require ( require (
git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf
git.urbach.dev/go/router v0.0.0-20250601162231-e35d5715d1a5 git.urbach.dev/go/router v0.0.0-20250601162231-e35d5715d1a5
) )

2
go.sum
View file

@ -1,4 +1,4 @@
git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf h1:BQWa5GKNUsA5CSUa/+UlFWYCEVe3IDDKRbVqBLK0mAE= git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf h1:BQWa5GKNUsA5CSUa/+UlFWYCEVe3IDDKRbVqBLK0mAE=
git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf/go.mod h1:y9jGII9JFiF1HNIju0u87OyPCt82xKCtqnAFyEreCDo= git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf/go.mod h1:y9jGII9JFiF1HNIju0u87OyPCt82xKCtqnAFyEreCDo=
git.urbach.dev/go/router v0.0.0-20250601162231-e35d5715d1a5 h1:3qlZjgWbrHw4LWM4uBzOTldbpqCLJdeSgvcYK6f3xpc= git.urbach.dev/go/router v0.0.0-20250601162231-e35d5715d1a5 h1:3qlZjgWbrHw4LWM4uBzOTldbpqCLJdeSgvcYK6f3xpc=
git.urbach.dev/go/router v0.0.0-20250601162231-e35d5715d1a5/go.mod h1:O+doTe0DZdT2XMsTY5pe6qUMqEEIAbwtX6Xp6EqHw34= git.urbach.dev/go/router v0.0.0-20250601162231-e35d5715d1a5/go.mod h1:O+doTe0DZdT2XMsTY5pe6qUMqEEIAbwtX6Xp6EqHw34=

View file

@ -38,4 +38,4 @@ func parseURL(url string) (scheme string, host string, path string, query string
path = url path = url
return return
} }

View file

@ -46,4 +46,4 @@ func Text(ctx web.Context, body string) error {
func XML(ctx web.Context, body string) error { func XML(ctx web.Context, body string) error {
ctx.Response().SetHeader("Content-Type", "text/xml") ctx.Response().SetHeader("Content-Type", "text/xml")
return ctx.String(body) return ctx.String(body)
} }

View file

@ -64,4 +64,4 @@ func TestContentTypes(t *testing.T) {
assert.Equal(t, string(response.Body()), test.Response) assert.Equal(t, string(response.Body()), test.Response)
}) })
} }
} }