mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
70 lines
2.2 KiB
Kotlin
70 lines
2.2 KiB
Kotlin
import io.mockk.verify
|
|
import org.apollo.game.command.Command
|
|
import org.apollo.game.model.Position
|
|
import org.apollo.game.model.World
|
|
import org.apollo.game.model.entity.Player
|
|
import org.apollo.game.model.entity.setting.PrivilegeLevel
|
|
import org.apollo.game.plugin.testing.assertions.contains
|
|
import org.apollo.game.plugin.testing.junit.ApolloTestingExtension
|
|
import org.apollo.game.plugin.testing.junit.api.annotations.TestMock
|
|
import org.junit.jupiter.api.Assertions.assertEquals
|
|
import org.junit.jupiter.api.Test
|
|
import org.junit.jupiter.api.extension.ExtendWith
|
|
import org.junit.jupiter.params.ParameterizedTest
|
|
import org.junit.jupiter.params.provider.ValueSource
|
|
|
|
@ExtendWith(ApolloTestingExtension::class)
|
|
class TeleportCommandTests {
|
|
|
|
@TestMock
|
|
lateinit var world: World
|
|
|
|
@TestMock
|
|
lateinit var player: Player
|
|
|
|
@Test
|
|
fun `Teleport to given coordinates`() {
|
|
player.privilegeLevel = PrivilegeLevel.ADMINISTRATOR
|
|
world.commandDispatcher.dispatch(player, Command("tele", arrayOf("1", "2", "0")))
|
|
|
|
assertEquals(Position(1, 2, 0), player.position)
|
|
}
|
|
|
|
@Test
|
|
fun `Teleport to given coordinates on players plane when no plane given`() {
|
|
player.privilegeLevel = PrivilegeLevel.ADMINISTRATOR
|
|
player.position = Position(1, 1, 1)
|
|
world.commandDispatcher.dispatch(player, Command("tele", arrayOf("1", "2")))
|
|
|
|
assertEquals(Position(1, 2, 1), player.position)
|
|
}
|
|
|
|
|
|
@Test
|
|
fun `Shows current position information`() {
|
|
player.privilegeLevel = PrivilegeLevel.ADMINISTRATOR
|
|
player.position = Position(1, 2, 3)
|
|
world.commandDispatcher.dispatch(player, Command("pos", emptyArray()))
|
|
|
|
verify {
|
|
player.sendMessage(contains("1, 2, 3"))
|
|
}
|
|
}
|
|
|
|
@ParameterizedTest(name = "::tele {0}")
|
|
@ValueSource(strings = [
|
|
"1 2 <garbage>",
|
|
"1 <garbage> 2",
|
|
"1",
|
|
"1 2 3 4"
|
|
])
|
|
fun `Help message sent on invalid syntax`(args: String) {
|
|
player.privilegeLevel = PrivilegeLevel.ADMINISTRATOR
|
|
world.commandDispatcher.dispatch(player, Command("tele", args.split(" ").toTypedArray()))
|
|
|
|
verify {
|
|
player.sendMessage(contains("Invalid syntax"))
|
|
}
|
|
}
|
|
|
|
} |