Home | History | Annotate | Download | only in testserver

Lines Matching refs:cookies

1037     """This handler just sets a given number of cookies, for testing handling
1038 of large numbers of cookies."""
1040 if not self._ShouldHandleRequest("/set-many-cookies"):
1053 self.wfile.write('%d cookies were sent' % num_cookies)
1057 """Expects some cookies to be sent, and if they are, sets more cookies.
1061 The set parameter specifies a cookie to set if all required cookies are
1070 cookies = set()
1073 cookies.update([s.strip() for s in cookie_header.split(';')])
1076 if expected_cookie not in cookies: