123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- from ffdnispdb import create_app, db
- from ffdnispdb.models import ISP
- from flask import Flask
- from flask.ext.sqlalchemy import SQLAlchemy
- import unittest
- import os
- class TestCase(unittest.TestCase):
- def create_app(self, **kwargs):
- test_cfg={
- 'TESTING': True,
- 'WTF_CSRF_ENABLED': False,
- 'SQLALCHEMY_DATABASE_URI': 'sqlite://',
- }
- test_cfg.update(kwargs)
- return create_app(test_cfg)
- def setUp(self):
- self.app = self.create_app()
- self.client = self.app.test_client()
- with self.app.app_context():
- db.create_all()
- self._ctx = self.app.test_request_context()
- self._ctx.push()
- def tearDown(self):
- db.session.remove()
- db.drop_all()
- self._ctx.pop()
- class TestForm(TestCase):
- def test_projectform(self):
- resp = self.client.post('/isp/create/form', data={
- 'tech_email': 'admin@isp.com',
- 'name': 'Test',
- 'step': '1',
- 'covered_areas-0-name': 'Somewhere over the rainbow',
- 'covered_areas-0-technologies': 'dsl',
- 'covered_areas-0-technologies': 'ftth'
- })
- self.assertNotEqual(resp.location, None)
- self.assertEqual(ISP.query.filter_by(name='Test').count(), 1)
- if __name__ == '__main__':
- unittest.main()
|