Skip to content

Chisanan232/PyFake-API-Server-Surveillance

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

PyFake-API-Server-Surveillance

PyPI Release CI codecov pre-commit.ci status Quality Gate Status License: MIT

πŸ€– A CI tool for monitoring a specific API end points and keeping fake API server always up-to-date.

Overview | Python versions support | Quickly Start | Documentation


Overview

Do you ever have experience about Back-End side does something change on the sly, but they don't sync the change with Font-End side and cause it be broken? Even you may have tool which could fake an API server, but you still need to update it manually (if you know the change). This tool Fake-API-Server-Surveillance targets to resolve this issue by everyone could automate the process about monitoring and updating the fake server which be built by Fake-API-Server.

Python versions support

The code base of PyFake-API-Server-Surveillance depends on another library Fake-API-Server. So it also only supports Python 3.8 version up.

Supported Versions

Quickly Start

Here section would lead you quickly start to set up your first automation with PyFake-API-Server-Surveillance for keep monitoring Back-End side and keep the fake server always be the latest version under surveillance easily.

In basically, it has 3 steps: prepare your fake server, configure PyFake-API-Server-Surveillance and set action for GitHub Action.

Prepare Fake-API-Server

First of all, this tool only for Fake-API-Server. So you must have a GitHub project which records the details configuration of Fake-API-Server.

Configure Fake-API-Server-Surveillance

The detail settings of Fake-API-Server-Surveillance would be configured by YAML file. Here provide a sample configuration:

api-doc-url: 'http://127.0.0.1:1111/swagger-api'
fake-api-server:
  server-type: rest-server
  subcmd:
    pull:
      args:
        - --config-path=./api.yaml
        - --include-template-config
        - --base-file-path=./
        - --base-url=/test/v1
        - --divide-api
git-info:
  repo: 'TestUser/Back-End-Project'
  commit:
    author:
      name: 'TestUser'
      email: 'test@gmail.com'
    message: ' πŸ§ͺ test commit message.'
github-info:
  pull-request:
    title: 'πŸ€– Update API configuration'
    body: '🚧 test content ...'
    draft: true
    labels:
      - 'πŸ€– update by bot'

Configure GitHub Action CI setting

Add a single CI workflow which only for monitoring Back-End side change as a scheduler:

name: Monitor Back-End API interface

on:
  # In generally, it's reasonable that using schedule feature of GitHub Action to monitor the Back-End side API change..
  schedule:
    - cron: "15 4,5 * * *"   # <=== Change this value

permissions:
  contents: write  # Need this to push commits
  pull-requests: write  # Need this to open pull request

jobs:
  monitor-and-update:
    runs-on: ubuntu-latest
    steps:
      # Clone the fake-api-server config
      - name: Clone project
        uses: actions/checkout@v4

      # Monitor and update the config if it needs by opening pull request
      - name: Run Fake-API-Server-Surveillance
        uses: actions/PyFake-API-Server-Surveillance@v0.2.0
        with:
          config-path: <your fake-api-server-surveillance config>
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Congratulation! Now, you could just have a coffee and do anything you want to do without being worry about the fake server be expired. The CI workflow would be the trustworthy partner to help you keep monitoring and updating the fake server if it needs without missing any change.

Documentation

documentation

The documentation contains more details, demonstrations and anything you need about PyFake-API-Server-Surveillance.

Coding style and following rules

PyFake-API-Server-Surveillance follows coding styles black and PyLint to control code quality.

Code style: black linting: pylint

Downloading state

PyFake-API-Server-Surveillance still a young open source which keep growing. Here's its download state:

Downloads Downloads

License

MIT License

About

πŸ€– A CI tool for monitoring a specific API end points and keeping fake API server always up-to-date.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •