Format all the things (#991)

* Format Javascript and CSS files with `prettier`: `prettier --write 'CTFd/themes/**/*'`
* Format Python with `black`: `black CTFd` & `black tests`
* Travis now uses xenial instead of trusty.
This commit is contained in:
Kevin Chung
2019-05-11 21:09:37 -04:00
committed by GitHub
parent 3d23ece370
commit 6833378c36
201 changed files with 9561 additions and 9107 deletions

View File

@@ -2,12 +2,18 @@ from CTFd.utils.crypto import sha256, hash_password, verify_password
def test_hash_password():
assert hash_password('asdf').startswith('$bcrypt-sha256')
assert hash_password("asdf").startswith("$bcrypt-sha256")
def test_verify_password():
assert verify_password('asdf', '$bcrypt-sha256$2b,12$I0CNXRkGD2Bi/lbC4vZ7Y.$1WoilsadKpOjXa/be9x3dyu7p.mslZ6')
assert verify_password(
"asdf",
"$bcrypt-sha256$2b,12$I0CNXRkGD2Bi/lbC4vZ7Y.$1WoilsadKpOjXa/be9x3dyu7p.mslZ6",
)
def test_sha256():
assert sha256('asdf') == 'f0e4c2f76c58916ec258f246851bea091d14d4247a2fc3e18694461b1816e13b'
assert (
sha256("asdf")
== "f0e4c2f76c58916ec258f246851bea091d14d4247a2fc3e18694461b1816e13b"
)