Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Testing #329

Merged
merged 8 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,27 @@ jobs:
with:
files: server/**

# Set up Java for server tests
- name: Set up JDK 21
if: ${{ steps.changed-files-server-folder.outputs.any_changed == 'true' && matrix.path == 'server' }}
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'gradle'

# Grant execute permission for gradlew
- name: Grant execute permission for gradlew
if: ${{ steps.changed-files-server-folder.outputs.any_changed == 'true' && matrix.path == 'server' }}
run: chmod +x ./server/gradlew

# Run tests for server
- name: Run server tests
if: ${{ steps.changed-files-server-folder.outputs.any_changed == 'true' && matrix.path == 'server' }}
working-directory: ./server
run: |
./gradlew test

- name: Log in to the Container registry
if: ${{ (steps.changed-files-client-folder.outputs.any_changed == 'true') || (steps.changed-files-server-folder.outputs.any_changed == 'true') }}
uses: docker/login-action@v3
Expand Down
47 changes: 44 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,51 @@
# ThesisTrack

Web Application that represents the complete thesis lifecycle of theses applied for and supervised at the chair.
ThesisTrack is a web-based thesis management system designed to streamline the thesis process in academic institutions by integrating essential stages into a single platform.
Developed to address challenges in managing large volumes of theses, it facilitates seamless interactions between students, advisors, and supervisors.
Key features include a centralized application process, guided workflows for thesis writing, automated notifications, and a comprehensive Gantt chart for tracking progress.
By consolidating communication, feedback, and file management, ThesisTrack enhances transparency, reduces administrative burdens, and fosters efficient thesis supervision and assessment.

## Documentation
ThesisTrack was developed as part of this [bachelor's thesis](docs/files/ba-thesis-fabian-emilius.pdf).

## User Documentation

#### Student
- Submit Thesis Application
- Edit Thesis Application
- Upload Proposal
- Upload Thesis Files
- Create Presentation Draft
- Manage User Settings

#### Advisor
- Create Thesis Topic
- Review Applications
- Review Proposal
- Add Comments
- Schedule Presentation
- Submit Thesis Assessment

#### Supervisor
- Add Final Grade + Complete Thesis
- Thesis Overview

## Developer Documentation

1. [Production Setup](docs/PRODUCTION.md)
2. [Configuration](docs/CONFIGURATION.md)
3. [Customizing E-Mails](docs/MAILS.md)
4. [Development Setup](docs/DEVELOPMENT.md)
4. [Development Setup](docs/DEVELOPMENT.md)
5. [Database Changes](docs/DATABASE.md)

## Features

The following flowchart diagrams provide a visual overview of the thesis processes implemented in ThesisTrack.
These diagrams illustrate the step-by-step workflows involved, from thesis topic selection and application submission to the final grading and completion stages.
They highlight key actions, decision points, and interactions between students, advisors, and supervisors, clarifying how tasks are sequenced and managed within the system.
These flowcharts offer a quick reference for understanding how each role engages in the thesis process, ensuring transparency and consistency in task progression and responsibilities across different stages.

#### Thesis Application Flowchart
![Thesis Application Flowchart](docs/files/thesis-application-flowchart.svg)

#### Thesis Writing Flowchart
![Thesis Writing Flowchart](docs/files/thesis-writing-flowchart.svg)
Loading