bearddan2000 / python-web-bottle-tdd-api-basic-auth-dolt-chained-sql-simple

Simple web app that serves an api for a bottle project using basic auth.

Home Page:https://github.com/bearddan2000/python-web-bottle-tdd-api-basic-auth-dolt-chained-sql-simple

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-web-bottle-tdd-api-basic-auth-dolt-chained-sql-simple

Description

Simple web app that serves an api for a bottle project using basic auth. Requires basic authentication for endpoints.

username password
user pass

Uses and replicate over 4 databases on the same server:

  • animal, the prod
  • test_api, for remotely testing api by testify
  • test_chained, tests strategy chained sql functions by pytest
  • test_raw, tests strategy raw sql by pytest Note: test data should not be on same server as prod; only brevity made it necessary.

Pytests are aggregated to a single folder, reports, and viewable with an allure server.

Uses sqlalchemy query a table dog using chained sql.

Tech stack

  • python
    • bottle
    • sqlalchemy
    • pytest
    • allure-pytest
    • testify
    • response
  • dolt

Docker stack

  • python:latest
  • dolthub/dolt-sql-serverdb

To run

sudo ./install.sh -u

  • Get all dogs: http://localhost/dog
    • Schema id, breed, and color
  • CRUD opperations
    • Create: curl -i -X PUT localhost/dog/ -u 'user:pass'
    • Read: http://localhost/dog/ -u 'user:pass'
    • Update: curl -i -X POST localhost/dog/// -u 'user:pass'
    • Delete: curl -i -X DELETE localhost/dog/ -u 'user:pass'

To stop

sudo ./install.sh -d

For help

sudo ./install.sh -h

Credit

Bottle sqlalchemy setup

About

Simple web app that serves an api for a bottle project using basic auth.

https://github.com/bearddan2000/python-web-bottle-tdd-api-basic-auth-dolt-chained-sql-simple


Languages

Language:Python 88.4%Language:Shell 8.9%Language:Dockerfile 2.7%