fssa-batch3 / fssa-batch3/sec_a_mohammedajmal.iqbol__corejava_project_2

User module | Register Feature

Open
#1 0 comments 0 reactions 1 assignee Claimed by @Ajmal112 View on GitHub
enhancement user-module
Dominant language
Java
Stars
2
Forks
0
PR merge metrics
No merged PRs in 30d

Description

# User Create Process

### User Story

- Upon inputting a valid username, email, and password, the system processes the data, establishes a new user account, and presents a success message to confirm the registration.
- Upon inputting invalid data, the system displays error messages and prompts the user to provide correct and complete information for successful registration.

### Task

- [x] Implement Data Access Object (DAO) Layer.
- [x] Implement Service Layer.
- [x] Create JUnit Test Cases.
- [x] Ensure that the test cases are passing.
- [ ] Write clear and concise comments in the code to explain complex logic.

### DAO
- [createUser()

Service
- registerUser()

### Service Test
TestRegisterFeature
- testRegistrationSuccess()
- testRegistrationFailure()

### Estimation
- 3hours

# Flowchart

```mermaid
flowchart TD
A[Start]
B[Display Registration Form]
C[User Fills out Form]
D[Validate Input]
E{Validation Successful?}
F[Save User Data]
G[Registration Successful]
H[Display Error Messages]
I[End]
A --> B
B --> C
C --> D
D --> E
E -- Yes --> F
F --> G
E -- No --> H
H --> B
H --> I
G --> I
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.