-
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.
test(coin): QueryCoinServiceTest 테스트 코드 작성
- Loading branch information
마현우
committed
Apr 29, 2024
1 parent
fe0d23f
commit e0de96c
Showing
1 changed file
with
168 additions
and
0 deletions.
There are no files selected for viewing
168 changes: 168 additions & 0 deletions
168
src/test/java/com/project/bumawiki/domain/coin/service/QueryCoinServiceTest.java
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,168 @@ | ||
package com.project.bumawiki.domain.coin.service; | ||
|
||
import static org.assertj.core.api.Assertions.*; | ||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import java.util.List; | ||
|
||
import org.junit.jupiter.api.Nested; | ||
import org.junit.jupiter.api.RepeatedTest; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.data.domain.PageRequest; | ||
|
||
import com.project.bumawiki.domain.coin.domain.CoinAccount; | ||
import com.project.bumawiki.domain.coin.domain.Price; | ||
import com.project.bumawiki.domain.coin.domain.Trade; | ||
import com.project.bumawiki.domain.coin.domain.TradeWithoutTradeStatusAndCoinAccountId; | ||
import com.project.bumawiki.domain.coin.domain.repository.CoinAccountRepository; | ||
import com.project.bumawiki.domain.coin.domain.repository.TradeRepository; | ||
import com.project.bumawiki.domain.coin.domain.type.TradeStatus; | ||
import com.project.bumawiki.domain.coin.presentation.dto.RankingResponse; | ||
import com.project.bumawiki.domain.user.domain.User; | ||
import com.project.bumawiki.domain.user.domain.repository.UserRepository; | ||
import com.project.bumawiki.global.error.exception.BumawikiException; | ||
import com.project.bumawiki.global.error.exception.ErrorCode; | ||
import com.project.bumawiki.global.service.FixtureGenerator; | ||
import com.project.bumawiki.global.service.ServiceTest; | ||
|
||
class QueryCoinServiceTest extends ServiceTest { | ||
@Autowired | ||
private QueryCoinService queryCoinService; | ||
|
||
@Autowired | ||
private UserRepository userRepository; | ||
|
||
@Autowired | ||
private CoinAccountRepository coinAccountRepository; | ||
|
||
@Autowired | ||
private TradeRepository tradeRepository; | ||
|
||
@Nested | ||
class 코인_계정_찾기 { | ||
@RepeatedTest(REPEAT_COUNT) | ||
void 유저_정보로_코인_계정_찾기() { | ||
// given | ||
User user = FixtureGenerator.getDefaultUserBuilder().sample(); | ||
|
||
userRepository.save(user); | ||
|
||
Long money = FixtureGenerator.getDefaultLongArbitrary() | ||
.greaterOrEqual(0L) | ||
.sample(); | ||
|
||
CoinAccount coinAccount = new CoinAccount(user.getId(), money); | ||
|
||
coinAccountRepository.save(coinAccount); | ||
|
||
// when | ||
CoinAccount findCoinAccount = queryCoinService.findCoinAccountByUser(user); | ||
|
||
// then | ||
assertThat(findCoinAccount.getUserId()).isEqualTo(user.getId()); | ||
} | ||
|
||
@RepeatedTest(REPEAT_COUNT) | ||
void 코인_저장이_안되어있을때() { | ||
User user = FixtureGenerator.getDefaultUserBuilder().sample(); | ||
|
||
userRepository.save(user); | ||
|
||
// when | ||
BumawikiException exception = assertThrows( | ||
BumawikiException.class, | ||
() -> queryCoinService.findCoinAccountByUser(user) | ||
); | ||
|
||
// then | ||
assertThat(exception.getErrorCode()).isEqualTo(ErrorCode.COIN_ACCOUNT_NOT_FOUND_EXCEPTION); | ||
} | ||
} | ||
|
||
@RepeatedTest(REPEAT_COUNT) | ||
void 코인_계정으로_거래_내역_조회하기() { | ||
// given | ||
User user = FixtureGenerator.getDefaultUserBuilder().sample(); | ||
|
||
userRepository.save(user); | ||
|
||
CoinAccount coinAccount = new CoinAccount( | ||
user.getId(), | ||
10000000L | ||
); | ||
|
||
coinAccountRepository.save(coinAccount); | ||
|
||
TradeWithoutTradeStatusAndCoinAccountId coinData = | ||
new TradeWithoutTradeStatusAndCoinAccountId(1000000L, 3L); | ||
|
||
Trade trade = coinData.toTrade(coinAccount); | ||
|
||
coinAccount.buyCoin(trade.getCoinPrice(), trade.getCoinCount()); | ||
trade.updateTradeStatus(TradeStatus.BOUGHT); | ||
|
||
tradeRepository.save(trade); | ||
|
||
// when | ||
List<Trade> trades = queryCoinService.getTrades(coinAccount.getId()); | ||
|
||
// then | ||
assertAll( | ||
() -> assertThat(trades.size()).isEqualTo(1), | ||
() -> assertThat(trades.get(0).getTradeStatus()).isEqualTo(TradeStatus.BOUGHT), | ||
() -> assertThat(trades.get(0).getCoinAccountId()).isEqualTo(coinAccount.getId()) | ||
); | ||
} | ||
|
||
@RepeatedTest(REPEAT_COUNT) | ||
void 기간_별로_코인_가격_조회하기() { | ||
// given | ||
String[] periods = {"full", "halfMonth", "week", "day", "halfDay", "threeHours"}; | ||
long index = FixtureGenerator.getDefaultLongArbitrary().between(0, 5).sample(); | ||
|
||
// when | ||
List<Price> prices = queryCoinService.getPriceByPeriod(periods[Long.valueOf(index).intValue()]); | ||
|
||
// then | ||
assertAll( | ||
() -> assertThat(prices.get(0)).isNotNull(), | ||
() -> assertThat(prices.size()).isEqualTo(2) | ||
); | ||
} | ||
|
||
@RepeatedTest(REPEAT_COUNT) | ||
void 랭킹_조회하기() { | ||
// given | ||
List<User> users = FixtureGenerator.getDefaultUserBuilder() | ||
.sampleList(10); | ||
|
||
userRepository.saveAll(users); | ||
|
||
users.forEach(user -> { | ||
CoinAccount coinAccount = new CoinAccount( | ||
user.getId(), | ||
FixtureGenerator.getDefaultLongArbitrary() | ||
.greaterOrEqual(0L) | ||
.sample() | ||
); | ||
|
||
coinAccountRepository.save(coinAccount); | ||
}); | ||
|
||
// when | ||
List<RankingResponse> rankingResponses = | ||
queryCoinService.getRanking(PageRequest.of(0, 10)); | ||
|
||
// then | ||
assertThat(rankingResponses.size()).isEqualTo(10); | ||
} | ||
|
||
@RepeatedTest(REPEAT_COUNT) | ||
void 현재_코인_시세_조회하기() { | ||
// when | ||
Price price = queryCoinService.getRecentPrice(); | ||
|
||
// then | ||
assertThat(price.getPrice()).isNotNull(); | ||
} | ||
} |