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

[자동차 경주] 이상지 미션 제출합니다. #220

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
40 changes: 40 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
🚀 기능 요구 사항


초간단 자동차 경주 게임을 구현

주어진 횟수 동안 n대의 자동차는 전진 또는 멈출 수 있다.
각 자동차에 이름을 부여할 수 있다.
val carNames
전진하는 자동차를 출력할 때 자동차 이름을 같이 출력한다.
print("$name : ")
println("-".repeat(position))
자동차 이름은 쉼표(,)를 기준으로 구분하며 이름은 5자 이하만 가능하다.
isCarNamesValid
사용자는 몇 번의 이동을 할 것인지를 입력할 수 있어야 한다.
val tryCount = Console.readLine()!!.toInt()
전진하는 조건은 0에서 9 사이에서 무작위 값을 구한 후 무작위 값이 4 이상일 경우이다.
cars.forEach { it.move(Randoms.pickNumberInRange(0, 9)) }
자동차 경주 게임을 완료한 후 누가 우승했는지를 알려준다.
우승자는 한 명 이상일 수 있다.
우승자가 여러 명일 경우 쉼표(,)를 이용하여 구분한다.
val winners = cars.filter { it.position == cars.maxOf { car -> car.position } }
사용자가 잘못된 값을 입력할 경우 IllegalArgumentException을 발생시킨 후 애플리케이션은 종료되어야 한다.
throw IllegalArgumentException

추가된 요구 사항

indent(인덴트, 들여쓰기) depth를 3이 넘지 않도록 구현한다.
2까지만 허용한다.
예를 들어 while문 안에 if문이 있으면 들여쓰기는 2이다.
힌트: indent(인덴트, 들여쓰기) depth를 줄이는 좋은 방법은 함수(또는 메서드)를 분리하면 된다.
함수(또는 메서드)가 한 가지 일만 하도록 최대한 작게 만들어라.
JUnit 5와 AssertJ를 이용하여 본인이 정리한 기능 목록이 정상 동작함을 테스트 코드로 확인한다.
테스트 도구 사용법이 익숙하지 않다면 test/kotlin/study를 참고하여 학습한 후 테스트를 구현한다.


라이브러리

camp.nextstep.edu.missionutils에서 제공하는 Randoms 및 Console API를 사용하여 구현해야 한다.
Random 값 추출은 camp.nextstep.edu.missionutils.Randoms의 pickNumberInRange()를 활용한다.
사용자가 입력하는 값은 camp.nextstep.edu.missionutils.Console의 readLine()을 활용한다.
44 changes: 43 additions & 1 deletion src/main/kotlin/racingcar/Application.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
package racingcar

import camp.nextstep.edu.missionutils.Console
import camp.nextstep.edu.missionutils.Randoms

fun main() {
// TODO: 프로그램 구현
println("경주할 자동차 이름을 입력하세요.(이름은 쉼표(,) 기준으로 구분)")
val carNames = Console.readLine()!!.split(",")
if (!isCarNamesValid(carNames)) {
throw IllegalArgumentException("자동차 이름은 5자 이하만 가능하며, 쉼표(,)로 구분되어야 합니다.")
}

println("시도할 횟수는 몇 회인가요?")
val tryCount = Console.readLine()!!.toInt()
if (tryCount <= 0) {
throw IllegalArgumentException("시도 횟수는 1 이상이어야 합니다.")
}

val cars = carNames.map { Car(it) }

println("\n실행 결과")
repeat(tryCount) {
cars.forEach { it.move(Randoms.pickNumberInRange(0, 9)) }
println()
}

val winners = cars.filter { it.position == cars.maxOf { car -> car.position } }
println("최종 우승자 : ${winners.joinToString(", ") { it.name }}")
}

class Car(val name: String) {
var position = 0
private set

fun move(randomNumber: Int) {
if (randomNumber >= 4) {
position++
}
print("$name : ")
println("-".repeat(position))

}
}

fun isCarNamesValid(carNames: List<String>): Boolean {
return carNames.all { it.length <= 5 }
}
20 changes: 19 additions & 1 deletion src/test/kotlin/racingcar/ApplicationTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,25 @@ import camp.nextstep.edu.missionutils.test.NsTest
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertThrows
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.AfterEach
import java.io.ByteArrayOutputStream
import java.io.PrintStream

class ApplicationTest : NsTest() {
private val outputBuffer = ByteArrayOutputStream()
private val originalOutput = System.out

@BeforeEach
fun setUpOutput() {
System.setOut(PrintStream(outputBuffer))
}

@AfterEach
fun restoreOutput() {
System.setOut(originalOutput)
}

@Test
fun `전진 정지`() {
assertRandomNumberInRangeTest(
Expand All @@ -22,7 +39,8 @@ class ApplicationTest : NsTest() {
@Test
fun `이름에 대한 예외 처리`() {
assertSimpleTest {
assertThrows<IllegalArgumentException> { runException("pobi,javaji", "1") }
val exception = assertThrows<IllegalArgumentException> { runException("pobi,javaji", "1") }
assertThat(exception.message).isEqualTo("자동차 이름은 5자 이하만 가능하며, 쉼표(,)로 구분되어야 합니다.")
}
}

Expand Down