mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-06 05:01:48 +02:00
74 lines
2 KiB
Python
74 lines
2 KiB
Python
import os
|
|
|
|
from flask_testing import TestCase
|
|
from werkzeug.security import generate_password_hash
|
|
|
|
from ihatemoney import models
|
|
from ihatemoney.run import create_app, db
|
|
|
|
|
|
class BaseTestCase(TestCase):
|
|
|
|
SECRET_KEY = "TEST SESSION"
|
|
|
|
def create_app(self):
|
|
# Pass the test object as a configuration.
|
|
return create_app(self)
|
|
|
|
def setUp(self):
|
|
db.create_all()
|
|
|
|
def tearDown(self):
|
|
# clean after testing
|
|
db.session.remove()
|
|
db.drop_all()
|
|
|
|
def login(self, project, password=None, test_client=None):
|
|
password = password or project
|
|
|
|
return self.client.post(
|
|
"/authenticate",
|
|
data=dict(id=project, password=password),
|
|
follow_redirects=True,
|
|
)
|
|
|
|
def post_project(self, name, follow_redirects=True):
|
|
"""Create a fake project"""
|
|
# create the project
|
|
return self.client.post(
|
|
"/create",
|
|
data={
|
|
"name": name,
|
|
"id": name,
|
|
"password": name,
|
|
"contact_email": f"{name}@notmyidea.org",
|
|
"default_currency": "USD",
|
|
},
|
|
follow_redirects=follow_redirects,
|
|
)
|
|
|
|
def create_project(self, name):
|
|
project = models.Project(
|
|
id=name,
|
|
name=str(name),
|
|
password=generate_password_hash(name),
|
|
contact_email=f"{name}@notmyidea.org",
|
|
default_currency="USD",
|
|
)
|
|
models.db.session.add(project)
|
|
models.db.session.commit()
|
|
|
|
|
|
class IhatemoneyTestCase(BaseTestCase):
|
|
SQLALCHEMY_DATABASE_URI = os.environ.get(
|
|
"TESTING_SQLALCHEMY_DATABASE_URI", "sqlite://"
|
|
)
|
|
TESTING = True
|
|
WTF_CSRF_ENABLED = False # Simplifies the tests.
|
|
|
|
def assertStatus(self, expected, resp, url=""):
|
|
return self.assertEqual(
|
|
expected,
|
|
resp.status_code,
|
|
f"{url} expected {expected}, got {resp.status_code}",
|
|
)
|