mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 09:10:00 +00:00
Use spaces
This commit is contained in:
parent
323780dd10
commit
2246f019ea
|
@ -6,48 +6,48 @@ import nyaa
|
||||||
|
|
||||||
class NyaaTestCase(unittest.TestCase):
|
class NyaaTestCase(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.db, nyaa.app.config['DATABASE'] = tempfile.mkstemp()
|
self.db, nyaa.app.config['DATABASE'] = tempfile.mkstemp()
|
||||||
nyaa.app.config['TESTING'] = True
|
nyaa.app.config['TESTING'] = True
|
||||||
self.app = nyaa.app.test_client()
|
self.app = nyaa.app.test_client()
|
||||||
with nyaa.app.app_context():
|
with nyaa.app.app_context():
|
||||||
nyaa.db.create_all()
|
nyaa.db.create_all()
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
os.close(self.db)
|
os.close(self.db)
|
||||||
os.unlink(nyaa.app.config['DATABASE'])
|
os.unlink(nyaa.app.config['DATABASE'])
|
||||||
|
|
||||||
def test_index_url(self):
|
def test_index_url(self):
|
||||||
rv = self.app.get('/')
|
rv = self.app.get('/')
|
||||||
assert b'Browse :: Nyaa' in rv.data
|
assert b'Browse :: Nyaa' in rv.data
|
||||||
assert b'Guest' in rv.data
|
assert b'Guest' in rv.data
|
||||||
|
|
||||||
def test_upload_url(self):
|
def test_upload_url(self):
|
||||||
rv = self.app.get('/upload')
|
rv = self.app.get('/upload')
|
||||||
assert b'Upload Torrent' in rv.data
|
assert b'Upload Torrent' in rv.data
|
||||||
assert b'You are not logged in, and are uploading anonymously.' in rv.data
|
assert b'You are not logged in, and are uploading anonymously.' in rv.data
|
||||||
|
|
||||||
def test_rules_url(self):
|
def test_rules_url(self):
|
||||||
rv = self.app.get('/rules')
|
rv = self.app.get('/rules')
|
||||||
assert b'Site Rules' in rv.data
|
assert b'Site Rules' in rv.data
|
||||||
|
|
||||||
def test_help_url(self):
|
def test_help_url(self):
|
||||||
rv = self.app.get('/help')
|
rv = self.app.get('/help')
|
||||||
assert b'Using the Site' in rv.data
|
assert b'Using the Site' in rv.data
|
||||||
|
|
||||||
def test_rss_url(self):
|
def test_rss_url(self):
|
||||||
rv = self.app.get('/?page=rss')
|
rv = self.app.get('/?page=rss')
|
||||||
assert b'/xmlns/nyaa' in rv.data
|
assert b'/xmlns/nyaa' in rv.data
|
||||||
|
|
||||||
def test_login_url(self):
|
def test_login_url(self):
|
||||||
rv = self.app.get('/login')
|
rv = self.app.get('/login')
|
||||||
assert b'Username or email address' in rv.data
|
assert b'Username or email address' in rv.data
|
||||||
|
|
||||||
def test_registry(self):
|
def test_registry(self):
|
||||||
rv = self.app.get('/register')
|
rv = self.app.get('/register')
|
||||||
assert b'Username' in rv.data
|
assert b'Username' in rv.data
|
||||||
assert b'Password' in rv.data
|
assert b'Password' in rv.data
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
Loading…
Reference in a new issue