Closed GoogleCodeExporter closed 8 years ago
Original comment by johan.ha...@gmail.com
on 26 May 2015 at 9:15
Thanks for reporting. If you would like to help out I would very much
appreciate a pull request.
Original comment by johan.ha...@gmail.com
on 26 May 2015 at 9:15
I used another library as the performance of rest-assured was 50x to 100x
slower than regular httpclient and json-simple.
Original comment by carlant...@gmail.com
on 26 May 2015 at 11:41
Because of this issue?!
Original comment by johan.ha...@gmail.com
on 26 May 2015 at 5:47
Because of this issue I found that rest-assured is super slow for the kind of
work I do. I execute concurrent tests that run for hours (> 200K requests),
Rest-assured is very inefficient because of groovy code I suppose.
Original comment by carlant...@gmail.com
on 27 May 2015 at 1:34
I suppose that Groovy could be a reason but I'm sure that I could do things
internally to optimize it more as well. Would be interesting to know where RA
spends the most time? It would be great if you could run a profiler on it.
Original comment by johan.ha...@gmail.com
on 28 May 2015 at 6:35
I don't think your issue has anything to do with unicode characters. I think it
has to do with the fact that your request path is not a valid URI? If I change
your example to:
String request = "/test?param1={param1Value}¶m2={param2Value}";
String param1Value = "Hello";
String param2Value = "Hello\u0085";
System.out.println(param1Value);
RestAssured.get(request, param1Value, param2Value);
then it works!
Original comment by johan.ha...@gmail.com
on 6 Jun 2015 at 5:03
The code (if I remember it correctly) looks for an initial "?" when searching
for parameters and your request path doesn't include a "?". There should
probably be a better exception message though.
Original comment by johan.ha...@gmail.com
on 6 Jun 2015 at 5:05
I've fixed a better expection message now
Original comment by johan.ha...@gmail.com
on 6 Jun 2015 at 5:14
Original issue reported on code.google.com by
carlant...@gmail.com
on 22 May 2015 at 5:07