mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 20:49:44 +00:00
42 lines
1.4 KiB
Python
42 lines
1.4 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.
|
|
|
|
|
|
def test_home(client):
|
|
response = client.get('/')
|
|
assert response.status_code == 302
|
|
|
|
|
|
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() == {'ping': 'ok'}
|
|
|
|
monkeypatch.setattr('humulus.home.get_db', MockDBTrue)
|
|
response = client.get('/status?couch=y')
|
|
assert response.status_code == 200
|
|
assert response.get_json() == {'ping': 'ok', 'couch': 'ok'}
|
|
|
|
monkeypatch.setattr('humulus.home.get_db', MockDBFalse)
|
|
response = client.get('/status?couch=y')
|
|
assert response.status_code == 500
|
|
assert response.get_json() == {'ping': 'ok', 'couch': 'not_exist'}
|