Add minimal test for basic hackathon operations and enhance test utilities

- Introduced a new test module for hackathon-related functionality.
- Implemented a basic test for creating a hackathon using a mock repository.
- Enhanced the test utilities in `lib.rs` for better request handling and response extraction.
- Added a `ServiceClient` struct to facilitate HTTP requests in tests.
- Created a `RequestBuilder` to streamline building and sending requests with headers and JSON bodies.
This commit is contained in:
MythEclipse
2025-10-11 10:58:51 +07:00
parent 466ba3391a
commit c10443f881
33 changed files with 4547 additions and 4082 deletions
@@ -333,6 +333,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
let submission = HackathonSubmissionsSchema {
id: Thing::from(("app_hackathon_submissions", submission_id.as_str())),
hackathon_id: Thing::from(("app_hackathons", hackathon_id)),
judge_feedback: None,
team_id: Thing::from(("app_teams", team_id)),
project_name: project_name.into(),
description: description.into(),
@@ -342,6 +342,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
slides_url,
technologies,
submission_status,
judge_feedback: None,
submitted_at: DateTime::parse_from_rfc3339(submitted_at)?.with_timezone(&Utc),
is_deleted: false,
created_at: Some(get_iso_date()),