Skip to content

Commit

Permalink
feat: Initial version (v0.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
sindrel committed Jan 11, 2025
1 parent e4e55f1 commit 880410e
Show file tree
Hide file tree
Showing 16 changed files with 909 additions and 2 deletions.
89 changes: 89 additions & 0 deletions .github/workflows/integrations-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
name: Integration Tests
on:
workflow_dispatch:
pull_request:
branches:
- main
schedule:
- cron: '0 9 * * *'

jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: ./
name: Prometheus (YAML)
id: prometheus
with:
product: 'prometheus'
file_path: '__fixtures__/helm-values.yaml'
file_key: 'image.tag'
- uses: ./
name: Grafana (JSON)
id: grafana
with:
product: 'grafana'
file_path: '__fixtures__/helm-values.json'
file_key: 'image.tag'
file_format: 'json'
- uses: ./
name: Graylog (Regex)
id: graylog
with:
product: 'graylog'
file_path: '__fixtures__/services.xml'
regex: 'v([0-9]+\.[0-9]+\.[0-9]+)'
- uses: ./
name: AKS (Regex)
id: aks
with:
product: 'azure-kubernetes-service'
file_path: '__fixtures__/variables.tf'
regex: '(?<=default = \")([^\"]+)'

outputs:
prometheus_end_of_life: "${{ steps.prometheus.outputs.end_of_life }}"
prometheus_version: "${{ steps.prometheus.outputs.version }}"
grafana_end_of_life: "${{ steps.grafana.outputs.end_of_life }}"
grafana_version: "${{ steps.grafana.outputs.version }}"
graylog_end_of_life: "${{ steps.graylog.outputs.end_of_life }}"
graylog_version: "${{ steps.graylog.outputs.version }}"

assert:
runs-on: ubuntu-latest
needs: [test]
steps:
- name: Assert Prometheus EoL
uses: nick-fields/assert-action@v1
with:
expected: 'true'
actual: "${{ needs.test.outputs.prometheus_end_of_life }}"
- name: Assert Prometheus extracted version
uses: nick-fields/assert-action@v1
with:
expected: 'v2.55.1'
actual: "${{ needs.test.outputs.prometheus_version }}"
- name: Assert Grafana EoL
uses: nick-fields/assert-action@v1
with:
expected: 'true'
actual: "${{ needs.test.outputs.grafana_end_of_life }}"
- name: Assert Grafana extracted version
uses: nick-fields/assert-action@v1
with:
expected: 'v10.3.12'
actual: "${{ needs.test.outputs.grafana_version }}"
- name: Assert Graylog EoL
uses: nick-fields/assert-action@v1
with:
expected: 'true'
actual: "${{ needs.test.outputs.graylog_end_of_life }}"
- name: Assert Graylog extracted version
uses: nick-fields/assert-action@v1
with:
expected: 'v5.2.12'
actual: "${{ needs.test.outputs.graylog_version }}"
32 changes: 32 additions & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Unit Tests
on:
workflow_dispatch:
pull_request:
branches:
- main

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.12
cache: 'pip'
- name: Install dependencies
working-directory: ./src
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-test.txt
- name: Run pylint
working-directory: ./src
run: |
pylint $(git ls-files '*.py')
- name: Run unit tests
working-directory: ./src
run: |
pytest -vv
175 changes: 175 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# UV
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
#uv.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# PyPI configuration file
.pypirc

.DS_Store

*.tmp
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@sindrel
Loading

0 comments on commit 880410e

Please sign in to comment.