From: Andrew P. <at...@pi...> - 2017-08-21 16:23:33
|
I updated my NaviServer build from the c. 2017-08-14 head to today's latest code, and now the two cookie tests below "fail". However, it looks like this is not a real problem, the tests just need to be updated to accept the new "no such cookie" string introduced in changeset 4935:a71c34edd12, today on 2017-08-21. ==== cookie-4.5 get missing cookie FAILED ==== Contents of test case: nstest::http -getbody 1 GET /cookie-4.5 ---- Result was: 200 {no such cookie} ---- Result should have been (exact matching): 200 {no matching cookie} ==== cookie-4.5 FAILED ==== cookie-4.7 get missing cookie FAILED ==== Contents of test case: nstest::http -getbody 1 -getheaders {Set-Cookie} GET /cookie-4.7 ---- Result was: 200 {foo="foovalue"; HttpOnly} {no such cookie} ---- Result should have been (exact matching): 200 {foo="foovalue"; HttpOnly} {no matching cookie} ==== cookie-4.7 FAILED -- Andrew Piskorski <at...@pi...> |