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

[BUG] JSON formatter fails to handle non-string variable placeholder #1038

Closed
the8tre opened this issue Nov 23, 2023 · 5 comments
Closed

[BUG] JSON formatter fails to handle non-string variable placeholder #1038

the8tre opened this issue Nov 23, 2023 · 5 comments

Comments

@the8tre
Copy link

the8tre commented Nov 23, 2023

When trying to assign a non-string value from the collection/environment to a JSON field the formatter reports a parsing error:
Expecting 'STRING' , '}' got '{'
Sample valid JSON:

{
  "SomeField": 42
}

Sample failing JSON:

{
  "SomeField": {{someVar}}
}

image

Tested in Bruno 1.2.0

@n00o
Copy link
Contributor

n00o commented Nov 23, 2023

You have to put collection/environment variables inside of a string for it to work. So it would look like something like this:

{
  "SomeField": "{{someVar}}"
}

It's understandably confusing since the text turns orange implying that it is correctly formatted. I guess it could be possible to interpolate collection/environment variables outside of quotes if they are numbers but it would be programmatically complicated. The other solution would be to provide a hint that it needs to be inside of a string to work.

@the8tre
Copy link
Author

the8tre commented Nov 24, 2023

I get the idea of wrapping things as strings.
But this will lead to a 400 error if the API being called expects a number or a boolean instead of a string.

I agree that dispite the error in the editor (without string wrapping) the call will still work, but the the prettifier can't prettify anymore.

@n00o
Copy link
Contributor

n00o commented Nov 24, 2023

This relates to the pull request I made here #1025. I can make sure the JSON linting errors doesn't show for Bruno collection/environment variables.

@n00o
Copy link
Contributor

n00o commented Nov 25, 2023

It appears that the Prettify button for JSON bodies doesn't work anymore if you use {{someVar}} in the without quotes inside of it. Might need to fix that too.

n00o added a commit to n00o/bruno that referenced this issue Nov 26, 2023
Convert unquoted variables in JSON body to 1 in JSON linter. This allows for putting multiple environment/collection variables next to each other and still be unquoted.
helloanoop added a commit that referenced this issue Nov 27, 2023
Fix (#1038): Handle unquoted variables in JSON Lint
@n00o
Copy link
Contributor

n00o commented Nov 28, 2023

This issue can be closed now @helloanoop. Didn't realize there was keywords like closes that could be added to pull requests to connect them to issues. Will make sure to add that to future requests.

@the8tre the8tre closed this as completed Dec 5, 2023
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

2 participants