Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add module tests and add new stage in pipeline #12

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/deploy-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,12 @@ jobs:
build:
runs-on: ubuntu-latest
needs: info
strategy:
matrix:
python-version: [ "3.10" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -45,12 +42,16 @@ jobs:
python -m pip install --upgrade pip
sudo apt install pycodestyle pylint
pip install -r py-requirements.txt
pip install pytest
- name: Analysing the code with pycodestyle
run: |
pycodestyle src/**/*.py
- name: Analysing the code with pylint
run: |
pylint src/**/*.py
- name: Run Module tests
run: |
python3 -m pytest -sr tests/test_c*.py
deploy:
runs-on: ubuntu-latest
needs: test
Expand Down
21 changes: 21 additions & 0 deletions tests/test_exec_shell_command.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import os
import sys
import pytest

sys.path.insert(
0,
'src'
)

from exec_shell_command.exec_shell_command import exec_shell_command

@pytest.fixture
def exec_pwd():
return exec_shell_command('pwd').removesuffix('\n')

def test_exec_correct_command(exec_pwd):
assert exec_pwd == os.getcwd()

def test_exec_incorrect_command():
with pytest.raises(ValueError):
exec_shell_command('pweed')
18 changes: 18 additions & 0 deletions tests/test_get_hostname.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import sys
import socket
import pytest

sys.path.insert(
0,
'src'
)

from ip.ip import GetHostname

@pytest.fixture
def get_hostname():
return GetHostname.get_hostname_ip()

def test_get_hostname(get_hostname):
hostname, _ = get_hostname
assert hostname == socket.gethostname()
31 changes: 31 additions & 0 deletions tests/test_http_headers_grabber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import sys
import pytest

sys.path.insert(
0,
'src'
)

from http_headers_grabber.http_headers_grabber import HttpHeadersGrabber

@pytest.fixture
def http_headers_grabber_available():
return HttpHeadersGrabber.http_headers_grabber('https://google.com')

@pytest.fixture
def http_headers_grabber_witout_preffix():
return HttpHeadersGrabber.http_headers_grabber('google.com')

def test_http_headers_grabber_available(http_headers_grabber_available):
assert dict(http_headers_grabber_available)['X-Frame-Options'] == 'SAMEORIGIN'
assert dict(http_headers_grabber_available)['Content-Encoding'] == 'gzip'

def test_http_headers_grabber_witout_preffix(http_headers_grabber_witout_preffix):
assert dict(http_headers_grabber_witout_preffix)['X-Frame-Options'] == 'SAMEORIGIN'
assert dict(http_headers_grabber_witout_preffix)['Content-Encoding'] == 'gzip'

def test_http_headers_grabber_invalid_url_type():
try:
return HttpHeadersGrabber.http_headers_grabber(123)
except BaseException as ex:
assert str(ex) == 'Target must be a string not <class \'int\'>. Got target: 123'