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

Изменение подхода работы с ContentType и поддержка application/x-www-form-urlencoded #220

Open
keyclaim opened this issue Aug 14, 2023 · 0 comments

Comments

@keyclaim
Copy link
Contributor

В настоящий момент если мы используем метод POST
И если Content-Type != multipart/form-dataa
Gonkey автоматически устанавливает Content-Type: application/json
И будет парсить соответствующим образом request

Необходимо добавить обработку ContentType: application/x-www-form-urlencoded

В лоб решается как еще одна ифка

func newRequest(host string, test models.TestInterface) (req *http.Request, err error) {

	if test.GetForm() != nil {
		req, err = newMultipartRequest(host, test)
		if err != nil {
			return nil, err
		}
	} else if test.ContentType() == "application/x-www-form-urlencoded" {

И если она срабатывает то парсим request как query
params, err := url.ParseQuery(test.GetRequest())

Мне не очень нравится, что мы определяем как строить запрос не опираясь изначально на Content-Type.

Предлагаю смотреть на test.ContentType() и исходя из значения выбирать логику.
Тогда в случае multipart/form-data уже внутри проверять test.GetForm().

Также в дальнейшем сможем свободно добавлять другие типы.

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