| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 | // Copyright 2013 The Martini Contrib Authors. All rights reserved.// Copyright 2014 The Gogs Authors. All rights reserved.// Use of this source code is governed by a MIT-style// license that can be found in the LICENSE file.package middlewareimport (	"bytes"	"mime/multipart"	"net/http"	"net/http/httptest"	"strconv"	"strings"	"testing"	"github.com/codegangsta/martini")func TestBind(t *testing.T) {	testBind(t, false)}func TestBindWithInterface(t *testing.T) {	testBind(t, true)}func TestMultipartBind(t *testing.T) {	index := 0	for test, expectStatus := range bindMultipartTests {		handler := func(post BlogPost, errors Errors) {			handle(test, t, index, post, errors)		}		recorder := testMultipart(t, test, Bind(BlogPost{}), handler, index)		if recorder.Code != expectStatus {			t.Errorf("On test case %v, got status code %d but expected %d", test, recorder.Code, expectStatus)		}		index++	}}func TestForm(t *testing.T) {	testForm(t, false)}func TestFormWithInterface(t *testing.T) {	testForm(t, true)}func TestEmptyForm(t *testing.T) {	testEmptyForm(t)}func TestMultipartForm(t *testing.T) {	for index, test := range multipartformTests {		handler := func(post BlogPost, errors Errors) {			handle(test, t, index, post, errors)		}		testMultipart(t, test, MultipartForm(BlogPost{}), handler, index)	}}func TestMultipartFormWithInterface(t *testing.T) {	for index, test := range multipartformTests {		handler := func(post Modeler, errors Errors) {			post.Create(test, t, index)		}		testMultipart(t, test, MultipartForm(BlogPost{}, (*Modeler)(nil)), handler, index)	}}func TestJson(t *testing.T) {	testJson(t, false)}func TestJsonWithInterface(t *testing.T) {	testJson(t, true)}func TestEmptyJson(t *testing.T) {	testEmptyJson(t)}func TestValidate(t *testing.T) {	handlerMustErr := func(errors Errors) {		if errors.Count() == 0 {			t.Error("Expected at least one error, got 0")		}	}	handlerNoErr := func(errors Errors) {		if errors.Count() > 0 {			t.Error("Expected no errors, got", errors.Count())		}	}	performValidationTest(&BlogPost{"", "...", 0, 0, []int{}}, handlerMustErr, t)	performValidationTest(&BlogPost{"Good Title", "Good content", 0, 0, []int{}}, handlerNoErr, t)	performValidationTest(&User{Name: "Jim", Home: Address{"", ""}}, handlerMustErr, t)	performValidationTest(&User{Name: "Jim", Home: Address{"required", ""}}, handlerNoErr, t)}func handle(test testCase, t *testing.T, index int, post BlogPost, errors Errors) {	assertEqualField(t, "Title", index, test.ref.Title, post.Title)	assertEqualField(t, "Content", index, test.ref.Content, post.Content)	assertEqualField(t, "Views", index, test.ref.Views, post.Views)	for i := range test.ref.Multiple {		if i >= len(post.Multiple) {			t.Errorf("Expected: %v (size %d) to have same size as: %v (size %d)", post.Multiple, len(post.Multiple), test.ref.Multiple, len(test.ref.Multiple))			break		}		if test.ref.Multiple[i] != post.Multiple[i] {			t.Errorf("Expected: %v to deep equal: %v", post.Multiple, test.ref.Multiple)			break		}	}	if test.ok && errors.Count() > 0 {		t.Errorf("%+v should be OK (0 errors), but had errors: %+v", test, errors)	} else if !test.ok && errors.Count() == 0 {		t.Errorf("%+v should have errors, but was OK (0 errors)", test)	}}func handleEmpty(test emptyPayloadTestCase, t *testing.T, index int, section BlogSection, errors Errors) {	assertEqualField(t, "Title", index, test.ref.Title, section.Title)	assertEqualField(t, "Content", index, test.ref.Content, section.Content)	if test.ok && errors.Count() > 0 {		t.Errorf("%+v should be OK (0 errors), but had errors: %+v", test, errors)	} else if !test.ok && errors.Count() == 0 {		t.Errorf("%+v should have errors, but was OK (0 errors)", test)	}}func testBind(t *testing.T, withInterface bool) {	index := 0	for test, expectStatus := range bindTests {		m := martini.Classic()		recorder := httptest.NewRecorder()		handler := func(post BlogPost, errors Errors) { handle(test, t, index, post, errors) }		binding := Bind(BlogPost{})		if withInterface {			handler = func(post BlogPost, errors Errors) {				post.Create(test, t, index)			}			binding = Bind(BlogPost{}, (*Modeler)(nil))		}		switch test.method {		case "GET":			m.Get(route, binding, handler)		case "POST":			m.Post(route, binding, handler)		}		req, err := http.NewRequest(test.method, test.path, strings.NewReader(test.payload))		req.Header.Add("Content-Type", test.contentType)		if err != nil {			t.Error(err)		}		m.ServeHTTP(recorder, req)		if recorder.Code != expectStatus {			t.Errorf("On test case %v, got status code %d but expected %d", test, recorder.Code, expectStatus)		}		index++	}}func testJson(t *testing.T, withInterface bool) {	for index, test := range jsonTests {		recorder := httptest.NewRecorder()		handler := func(post BlogPost, errors Errors) { handle(test, t, index, post, errors) }		binding := Json(BlogPost{})		if withInterface {			handler = func(post BlogPost, errors Errors) {				post.Create(test, t, index)			}			binding = Bind(BlogPost{}, (*Modeler)(nil))		}		m := martini.Classic()		switch test.method {		case "GET":			m.Get(route, binding, handler)		case "POST":			m.Post(route, binding, handler)		case "PUT":			m.Put(route, binding, handler)		case "DELETE":			m.Delete(route, binding, handler)		}		req, err := http.NewRequest(test.method, route, strings.NewReader(test.payload))		if err != nil {			t.Error(err)		}		m.ServeHTTP(recorder, req)	}}func testEmptyJson(t *testing.T) {	for index, test := range emptyPayloadTests {		recorder := httptest.NewRecorder()		handler := func(section BlogSection, errors Errors) { handleEmpty(test, t, index, section, errors) }		binding := Json(BlogSection{})		m := martini.Classic()		switch test.method {		case "GET":			m.Get(route, binding, handler)		case "POST":			m.Post(route, binding, handler)		case "PUT":			m.Put(route, binding, handler)		case "DELETE":			m.Delete(route, binding, handler)		}		req, err := http.NewRequest(test.method, route, strings.NewReader(test.payload))		if err != nil {			t.Error(err)		}		m.ServeHTTP(recorder, req)	}}func testForm(t *testing.T, withInterface bool) {	for index, test := range formTests {		recorder := httptest.NewRecorder()		handler := func(post BlogPost, errors Errors) { handle(test, t, index, post, errors) }		binding := Form(BlogPost{})		if withInterface {			handler = func(post BlogPost, errors Errors) {				post.Create(test, t, index)			}			binding = Form(BlogPost{}, (*Modeler)(nil))		}		m := martini.Classic()		switch test.method {		case "GET":			m.Get(route, binding, handler)		case "POST":			m.Post(route, binding, handler)		}		req, err := http.NewRequest(test.method, test.path, nil)		if err != nil {			t.Error(err)		}		m.ServeHTTP(recorder, req)	}}func testEmptyForm(t *testing.T) {	for index, test := range emptyPayloadTests {		recorder := httptest.NewRecorder()		handler := func(section BlogSection, errors Errors) { handleEmpty(test, t, index, section, errors) }		binding := Form(BlogSection{})		m := martini.Classic()		switch test.method {		case "GET":			m.Get(route, binding, handler)		case "POST":			m.Post(route, binding, handler)		}		req, err := http.NewRequest(test.method, test.path, nil)		if err != nil {			t.Error(err)		}		m.ServeHTTP(recorder, req)	}}func testMultipart(t *testing.T, test testCase, middleware martini.Handler, handler martini.Handler, index int) *httptest.ResponseRecorder {	recorder := httptest.NewRecorder()	m := martini.Classic()	m.Post(route, middleware, handler)	body := &bytes.Buffer{}	writer := multipart.NewWriter(body)	writer.WriteField("title", test.ref.Title)	writer.WriteField("content", test.ref.Content)	writer.WriteField("views", strconv.Itoa(test.ref.Views))	if len(test.ref.Multiple) != 0 {		for _, value := range test.ref.Multiple {			writer.WriteField("multiple", strconv.Itoa(value))		}	}	req, err := http.NewRequest(test.method, test.path, body)	req.Header.Add("Content-Type", writer.FormDataContentType())	if err != nil {		t.Error(err)	}	err = writer.Close()	if err != nil {		t.Error(err)	}	m.ServeHTTP(recorder, req)	return recorder}func assertEqualField(t *testing.T, fieldname string, testcasenumber int, expected interface{}, got interface{}) {	if expected != got {		t.Errorf("%s: expected=%s, got=%s in test case %d\n", fieldname, expected, got, testcasenumber)	}}func performValidationTest(data interface{}, handler func(Errors), t *testing.T) {	recorder := httptest.NewRecorder()	m := martini.Classic()	m.Get(route, Validate(data), handler)	req, err := http.NewRequest("GET", route, nil)	if err != nil {		t.Error("HTTP error:", err)	}	m.ServeHTTP(recorder, req)}func (self BlogPost) Validate(errors *Errors, req *http.Request) {	if len(self.Title) < 4 {		errors.Fields["Title"] = "Too short; minimum 4 characters"	}	if len(self.Content) > 1024 {		errors.Fields["Content"] = "Too long; maximum 1024 characters"	}	if len(self.Content) < 5 {		errors.Fields["Content"] = "Too short; minimum 5 characters"	}}func (self BlogPost) Create(test testCase, t *testing.T, index int) {	assertEqualField(t, "Title", index, test.ref.Title, self.Title)	assertEqualField(t, "Content", index, test.ref.Content, self.Content)	assertEqualField(t, "Views", index, test.ref.Views, self.Views)	for i := range test.ref.Multiple {		if i >= len(self.Multiple) {			t.Errorf("Expected: %v (size %d) to have same size as: %v (size %d)", self.Multiple, len(self.Multiple), test.ref.Multiple, len(test.ref.Multiple))			break		}		if test.ref.Multiple[i] != self.Multiple[i] {			t.Errorf("Expected: %v to deep equal: %v", self.Multiple, test.ref.Multiple)			break		}	}}func (self BlogSection) Create(test emptyPayloadTestCase, t *testing.T, index int) {	// intentionally left empty}type (	testCase struct {		method      string		path        string		payload     string		contentType string		ok          bool		ref         *BlogPost	}	emptyPayloadTestCase struct {		method      string		path        string		payload     string		contentType string		ok          bool		ref         *BlogSection	}	Modeler interface {		Create(test testCase, t *testing.T, index int)	}	BlogPost struct {		Title    string `form:"title" json:"title" binding:"required"`		Content  string `form:"content" json:"content"`		Views    int    `form:"views" json:"views"`		internal int    `form:"-"`		Multiple []int  `form:"multiple"`	}	BlogSection struct {		Title   string `form:"title" json:"title"`		Content string `form:"content" json:"content"`	}	User struct {		Name string  `json:"name" binding:"required"`		Home Address `json:"address" binding:"required"`	}	Address struct {		Street1 string `json:"street1" binding:"required"`		Street2 string `json:"street2"`	})var (	bindTests = map[testCase]int{		// These should bail at the deserialization/binding phase		testCase{			"POST",			path,			`{ bad JSON `,			"application/json",			false,			new(BlogPost),		}: http.StatusBadRequest,		testCase{			"POST",			path,			`not multipart but has content-type`,			"multipart/form-data",			false,			new(BlogPost),		}: http.StatusBadRequest,		testCase{			"POST",			path,			`no content-type and not URL-encoded or JSON"`,			"",			false,			new(BlogPost),		}: http.StatusBadRequest,		// These should deserialize, then bail at the validation phase		testCase{			"POST",			path + "?title= This is wrong  ",			`not URL-encoded but has content-type`,			"x-www-form-urlencoded",			false,			new(BlogPost),		}: 422, // according to comments in Form() -> although the request is not url encoded, ParseForm does not complain		testCase{			"GET",			path + "?content=This+is+the+content",			``,			"x-www-form-urlencoded",			false,			&BlogPost{Title: "", Content: "This is the content"},		}: 422,		testCase{			"GET",			path + "",			`{"content":"", "title":"Blog Post Title"}`,			"application/json",			false,			&BlogPost{Title: "Blog Post Title", Content: ""},		}: 422,		// These should succeed		testCase{			"GET",			path + "",			`{"content":"This is the content", "title":"Blog Post Title"}`,			"application/json",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		}: http.StatusOK,		testCase{			"GET",			path + "?content=This+is+the+content&title=Blog+Post+Title",			``,			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		}: http.StatusOK,		testCase{			"GET",			path + "?content=This is the content&title=Blog+Post+Title",			`{"content":"This is the content", "title":"Blog Post Title"}`,			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		}: http.StatusOK,		testCase{			"GET",			path + "",			`{"content":"This is the content", "title":"Blog Post Title"}`,			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		}: http.StatusOK,	}	bindMultipartTests = map[testCase]int{		// This should deserialize, then bail at the validation phase		testCase{			"POST",			path,			"",			"multipart/form-data",			false,			&BlogPost{Title: "", Content: "This is the content"},		}: 422,		// This should succeed		testCase{			"POST",			path,			"",			"multipart/form-data",			true,			&BlogPost{Title: "This is the Title", Content: "This is the content"},		}: http.StatusOK,	}	formTests = []testCase{		{			"GET",			path + "?content=This is the content",			"",			"",			false,			&BlogPost{Title: "", Content: "This is the content"},		},		{			"POST",			path + "?content=This+is+the+content&title=Blog+Post+Title&views=3",			"",			"",			false, // false because POST requests should have a body, not just a query string			&BlogPost{Title: "Blog Post Title", Content: "This is the content", Views: 3},		},		{			"GET",			path + "?content=This+is+the+content&title=Blog+Post+Title&views=3&multiple=5&multiple=10&multiple=15&multiple=20",			"",			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content", Views: 3, Multiple: []int{5, 10, 15, 20}},		},	}	multipartformTests = []testCase{		{			"POST",			path,			"",			"multipart/form-data",			false,			&BlogPost{Title: "", Content: "This is the content"},		},		{			"POST",			path,			"",			"multipart/form-data",			false,			&BlogPost{Title: "Blog Post Title", Views: 3},		},		{			"POST",			path,			"",			"multipart/form-data",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content", Views: 3, Multiple: []int{5, 10, 15, 20}},		},	}	emptyPayloadTests = []emptyPayloadTestCase{		{			"GET",			"",			"",			"",			true,			&BlogSection{},		},		{			"POST",			"",			"",			"",			true,			&BlogSection{},		},		{			"PUT",			"",			"",			"",			true,			&BlogSection{},		},		{			"DELETE",			"",			"",			"",			true,			&BlogSection{},		},	}	jsonTests = []testCase{		// bad requests		{			"GET",			"",			`{blah blah blah}`,			"",			false,			&BlogPost{},		},		{			"POST",			"",			`{asdf}`,			"",			false,			&BlogPost{},		},		{			"PUT",			"",			`{blah blah blah}`,			"",			false,			&BlogPost{},		},		{			"DELETE",			"",			`{;sdf _SDf- }`,			"",			false,			&BlogPost{},		},		// Valid-JSON requests		{			"GET",			"",			`{"content":"This is the content"}`,			"",			false,			&BlogPost{Title: "", Content: "This is the content"},		},		{			"POST",			"",			`{}`,			"application/json",			false,			&BlogPost{Title: "", Content: ""},		},		{			"POST",			"",			`{"content":"This is the content", "title":"Blog Post Title"}`,			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		},		{			"PUT",			"",			`{"content":"This is the content", "title":"Blog Post Title"}`,			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		},		{			"DELETE",			"",			`{"content":"This is the content", "title":"Blog Post Title"}`,			"",			true,			&BlogPost{Title: "Blog Post Title", Content: "This is the content"},		},	})const (	route = "/blogposts/create"	path  = "http://localhost:3000" + route)
 |