12 Commits
0.0.2 ... 0.1.0

5 changed files with 45 additions and 4 deletions

View File

@@ -28,4 +28,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload --repository testpypi dist/*

3
TODO.md Normal file
View File

@@ -0,0 +1,3 @@
# TODO
1: add proper versioning (usage of tags during publish pipeline)

View File

@@ -4,8 +4,10 @@ with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="vaultdatabaseengine-bvanroll", # Replace with your own username
name="vaultdb",
version="0.0.1",
version_config=True,
setup_requires=['setuptools-git-versioning'],
author="Beppe Vanrolleghem",
author_email="beppe.vanrolleghem@gmail.com",
description="A vault creds reader for the vault database engine",
@@ -20,7 +22,7 @@ setuptools.setup(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "vaultdatabaseengine"},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
)
)

36
test/database.py Normal file
View File

@@ -0,0 +1,36 @@
import unittest
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import src
class MyTestCase(unittest.TestCase):
def test_psql(self):
#TODO exec psql connect
print("hi")
test = src.Database()
test.check_valid()
self.assertEqual(test.valid, False)
def test_psql_invalid_vault_url(self):
#TODO figure out how to fail unit test check
try:
src.Database(dbname="sdfk", vault_url="localhost", vault_port=8200, token="bla")
except:
print("did it")
return
def test_psql_invalid_vault_port(self):
try:
src.Database(dbname="sdfk", vault_url="localhost", vault_port="a", token="bla")
except:
return
def test_psql_valid(self):
print(src.Database(dbname="psql", vault_url="http://localhost", token="s.GoR2nisHPeKU1vOaw9hZ5L7h").get_creds())
if __name__ == '__main__':
unittest.main()