generated from nyu-software-engineering/containerized-app-exercise
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from software-students-fall2023/andrew3
added test for web-app
- Loading branch information
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import sys | ||
import os | ||
import tempfile | ||
import pytest | ||
from flask import jsonify | ||
from flask import Flask | ||
from flask import render_template | ||
from app import app, collection | ||
|
||
client = app.test_client() | ||
|
||
|
||
@pytest.fixture | ||
def client(): | ||
app.config["TESTING"] = True | ||
with app.test_client() as client: | ||
yield client | ||
|
||
|
||
def test_root_page(client): | ||
response = client.get("/test_render_template") | ||
print("Response status code:", response.status_code) | ||
print("Response data:", response.data) | ||
assert b"Recording audio..." in response.data | ||
|
||
|
||
def test_analyze_data(client, monkeypatch): | ||
def mock_post(*args, **kwargs): | ||
class MockResponse: | ||
@staticmethod | ||
def json(): | ||
return {"mocked": "response"} | ||
|
||
@property | ||
def status_code(self): | ||
return 200 | ||
|
||
return MockResponse() | ||
|
||
monkeypatch.setattr("requests.post", mock_post) | ||
|
||
with tempfile.NamedTemporaryFile(suffix=".wav") as temp_file: | ||
response = client.post("/analyzeData", data={"audio": (temp_file, "test.wav")}) | ||
assert response.status_code == 200 | ||
assert b"mocked" in response.data | ||
|
||
|
||
def test_analyze_data_no_audio(client): | ||
response = client.post("/analyzeData") | ||
assert response.status_code == 200 | ||
assert b"No audio file provided" in response.data | ||
|
||
|
||
def test_analyze_data_failed_request(client, monkeypatch): | ||
def mock_post(*args, **kwargs): | ||
class MockResponse: | ||
@staticmethod | ||
def json(): | ||
return {"error": "Mocked error"} | ||
|
||
@property | ||
def status_code(self): | ||
return 500 | ||
|
||
return MockResponse() | ||
|
||
monkeypatch.setattr("requests.post", mock_post) | ||
|
||
with tempfile.NamedTemporaryFile(suffix=".wav") as temp_file: | ||
response = client.post("/analyzeData", data={"audio": (temp_file, "test.wav")}) | ||
assert response.status_code == 500 | ||
assert b"Failed to send and process audio" in response.data | ||
|
||
|
||
if __name__ == "__main__": | ||
pytest.main(["-v", "test_app.py", "--cov=web-app"]) |