Git Product home page Git Product logo

wait_response's Introduction

Wait for some HTTP response

Written in order to make functional tests less complicated.

Retries a HTTP request until it responds as expected or reaches the max attempt number.


Lets say we have an endpoint http://localhost:8080/health that give us a json, e.g., { "status": "UP" }. This script keep checking that endpoint until it receives the UP status or it reaches the max number of attempts.

Install

pip install wait_response

Module

You can use a function from the module to wait for status responses.

import wait_response
from wait_response import wait_response_status

# Make 2 attempts to get status=UP, trying every 1 seconds. 
respCode = wait_response_status('http://localhost:8080/health', 2, 1, 'UP')
print(respCode) # 0 if success or else, 1

Script

wait_response url [OPTIONS]

url is the required endpoint, e.g., http://localhost:8080/health.

Options

  • --max-attempts default=20 The max number of attempts.
  • --sleep defaul=1 Sleep time, in seconds, between checks.
  • --status default=UP The status to wait for. E.g., GREEN or YELLOW.

Developing

Tests

Use unittest python -m unittest test.test_wait_response

Run script

wait_response's People

Contributors

dvilela avatar

Stargazers

Abdullah Cetin Cavdar avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.