Add new utilities for hosting service unit tests.

Review Request #9857 — Created April 4, 2018 and submitted

Information

Review Board
release-3.0.x
44cba28...

Reviewers

These new utilities make it easier to test HTTP requests and responses
dealing with multiple paths, and simple responses payloads or errors
with custom headers. It does this through a make_handler_for_paths()
function that takes in a dictionary of information and returns a method
to pass to setup_http_test().

It also adds a dump_json() method that wraps json.dumps() and
returns a bytestring, helping deal with Python 2/3 compatibility.

Used these new methods in upcoming unit tests, which pass.

Description From Last Updated

E222 multiple spaces after operator

reviewbotreviewbot

It's probably slightly more correct to say an HTTP handler

daviddavid

This doesn't need the None check: if not isinstance(payload, bytes):

daviddavid
Checks run (1 failed, 1 succeeded)
flake8 failed.
JSHint passed.

flake8

chipx86
david
  1. 
      
  2. Show all issues

    It's probably slightly more correct to say an HTTP handler

  3. 
      
chipx86
david
  1. 
      
  2. Show all issues

    This doesn't need the None check: if not isinstance(payload, bytes):

    1. Then it will fail if payload is None. We want to skip the error in this case.

    2. Oh, I got confused with the nots and ands.

  3. 
      
david
  1. Ship It!
  2. 
      
chipx86
Review request changed

Status: Closed (submitted)

Change Summary:

Pushed to release-3.0.x (85d89d5)
Loading...