Skip to content

Commit 852c609

Browse files
authored
#35 - AuthService 테스트 (#36)
* chore: .editorconfig 설정 * test: AuthServiceTest 추가 * refactor: AuthUseCase 추가 * refactor: tokenResponse 변경 * refactor: EOF 추가 * refactor: AuthFixture 추가
1 parent b0983e5 commit 852c609

File tree

11 files changed

+439
-62
lines changed

11 files changed

+439
-62
lines changed

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
max_line_length = 120
11+
tab_width = 4
12+
13+
[*.{kt,kts}]
14+
disabled_rules=import-ordering
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
package com.wespot.auth.fixture
2+
3+
import com.wespot.auth.dto.AuthData
4+
import com.wespot.auth.dto.request.ProfileRequest
5+
import com.wespot.auth.dto.request.SignUpRequest
6+
import com.wespot.auth.dto.request.UserConsentRequest
7+
import com.wespot.auth.dto.response.TokenResponse
8+
import com.wespot.user.ConsentType
9+
import com.wespot.user.User
10+
import com.wespot.user.fixture.UserFixture
11+
12+
object AuthFixture {
13+
14+
fun createSignUpRequest(): SignUpRequest {
15+
return SignUpRequest(
16+
signUpToken = "signUpToken",
17+
name = "Test User",
18+
introduction = "Hello, this is a test.",
19+
profile = ProfileRequest(
20+
backgroundColor = "blue",
21+
iconUrl = "iconUrl"
22+
),
23+
userConsent = UserConsentRequest(
24+
consentType = ConsentType.MARKETING,
25+
consentValue = true
26+
),
27+
schoolId = 1L,
28+
grade = 1,
29+
groupNumber = 1
30+
)
31+
}
32+
33+
fun createAuthData(): AuthData {
34+
return AuthData(
35+
email = "[email protected]",
36+
socialRefreshToken = "testRefreshToken",
37+
socialEmail = "[email protected]"
38+
)
39+
}
40+
41+
fun createTokenResponse(refreshTokenExpiredAt: String): TokenResponse {
42+
return TokenResponse(
43+
accessToken = "accessToken",
44+
refreshToken = "refreshToken",
45+
refreshTokenExpiredAt = refreshTokenExpiredAt
46+
)
47+
}
48+
49+
fun createUser(): User {
50+
return UserFixture.createWithId(1)
51+
}
52+
}

0 commit comments

Comments
 (0)