1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 17:09:44 +00:00
humulus/tests/test_home.py
2019-07-22 15:30:27 -06:00

56 lines
1.7 KiB
Python

# Copyright 2019 Mike Shoup
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from humulus import _version
def test_home(client):
response = client.get("/")
assert response.status_code == 302
def test_about(client):
response = client.get("/about")
assert response.status_code == 200
assert _version.__version__ in str(response.data)
def test_status(client, monkeypatch):
class MockDBTrue:
def exists(self):
return True
class MockDBFalse:
def exists(self):
return False
response = client.get("/status")
assert response.status_code == 200
assert response.get_json() == {"version": _version.__version__}
monkeypatch.setattr("humulus.home.get_db", MockDBTrue)
response = client.get("/status?couch=y")
assert response.status_code == 200
assert response.get_json() == {
"version": _version.__version__,
"couch": "ok",
}
monkeypatch.setattr("humulus.home.get_db", MockDBFalse)
response = client.get("/status?couch=y")
assert response.status_code == 500
assert response.get_json() == {
"version": _version.__version__,
"couch": "not_exist",
}