import unittest from app import create_app, db from app.models import User, Game, Role, GamePlayer from config import Config class TestConfig(Config): TESTING = True WTF_CSRF_ENABLED = False DEBUG = False SQLALCHEMY_DATABASE_URI = 'sqlite://' class GameCase(unittest.TestCase): # implement this: https://stackoverflow.com/questions/47294304/how-to-mock-current-user-in-flask-templates def setUp(self): self.app = create_app(TestConfig) self.app_context = self.app.app_context() self.app_context.push() db.create_all() def tearDown(self): db.session.remove() db.drop_all() self.app_context.pop() def test_is_game_owner(self): g1 = Game(name='TestGame') u1 = User(name='Henk') u2 = User(name='Alfred') g1.players.append(GamePlayer(user=u1, role=Role.owner)) g1.players.append(GamePlayer(user=u2, role=Role.bunny)) db.session.add(g1) db.session.commit() self.assertTrue(g1.owned_by(u1)) self.assertFalse(g1.owned_by(u2)) if __name__ == '__main__': unittest.main(verbosity=2)