Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NewContext() is not populating parameters from provided URL #38

Open
drauschenbach opened this issue Jul 21, 2017 · 0 comments
Open

NewContext() is not populating parameters from provided URL #38

drauschenbach opened this issue Jul 21, 2017 · 0 comments

Comments

@drauschenbach
Copy link

I'm trying to write a unit test, as I would in Express+Supertest. I'm finding that when I provide a test URL, that the parameters are not parsed.

import (
	"context"
	"net/http"
	"net/http/httptest"
	"testing"

	"github.com/go-ozzo/ozzo-routing"
	"github.com/go-ozzo/ozzo-routing/content"
	"github.com/stretchr/testify/assert"
)

func TestContextParamsPopulatedByOzzo(test *testing.T) {
	assert := assert.New(test)

	// Initialize app
	router := routing.New()
	router.Get("/test/<id>", routing.NotFoundHandler)

	// Mock up a request
	res := httptest.NewRecorder()
	req, err := http.NewRequest("GET", "/test/23", nil)
	assert.NoError(err)

	// Mock up a routing context
	routeCtx := routing.NewContext(res, req)

	// Sanity check
	assert.Equal("23", routeCtx.Param("id"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant