brigadier: parse command before sending, tests

This fixes communication commands on 1.19
This commit is contained in:
Bixilon 2023-01-07 18:40:22 +01:00
parent 42f450506a
commit 64f55b52db
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4
5 changed files with 81 additions and 5 deletions

View File

@ -0,0 +1,40 @@
/*
* Minosoft
* Copyright (C) 2020-2023 Moritz Zwerger
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* This software is not affiliated with Mojang AB, the original developer of Minecraft.
*/
package de.bixilon.minosoft.data.chat.signature.command
import de.bixilon.minosoft.commands.nodes.ArgumentNode
import de.bixilon.minosoft.commands.nodes.LiteralNode
import de.bixilon.minosoft.commands.parser.minecraft.message.MessageParser
import de.bixilon.minosoft.commands.stack.CommandStack
import de.bixilon.minosoft.data.chat.signature.SignatureTestUtil
import de.bixilon.minosoft.data.chat.signature.signer.DummyMessageSigner
import de.bixilon.minosoft.protocol.ProtocolUtil.encodeNetwork
import de.bixilon.minosoft.protocol.network.connection.play.ConnectionTestUtil
import org.testng.Assert.assertEquals
import org.testng.annotations.Test
import java.time.Instant
@Test(groups = ["command", "signature"], dependsOnGroups = ["private_key"])
class SignCommandTest {
fun basicTest() {
val stack = CommandStack(ConnectionTestUtil.createConnection())
stack.push(LiteralNode("unsigned"), "unsigned")
stack.push(ArgumentNode("message", MessageParser), "hi there. I am Moritz!")
val signature = stack.sign(DummyMessageSigner, SignatureTestUtil.key.pair.private, 0L, Instant.MIN)
assertEquals(signature.size, 1)
assertEquals(signature["message"], "hi there. I am Moritz!".encodeNetwork())
}
}

View File

@ -0,0 +1,28 @@
/*
* Minosoft
* Copyright (C) 2020-2023 Moritz Zwerger
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* This software is not affiliated with Mojang AB, the original developer of Minecraft.
*/
package de.bixilon.minosoft.data.chat.signature.signer
import de.bixilon.minosoft.data.chat.signature.LastSeenMessageList
import de.bixilon.minosoft.data.text.ChatComponent
import de.bixilon.minosoft.protocol.ProtocolUtil.encodeNetwork
import java.security.PrivateKey
import java.time.Instant
import java.util.*
object DummyMessageSigner : MessageSigner {
override fun signMessage(privateKey: PrivateKey, message: String, preview: ChatComponent?, salt: Long, sender: UUID, time: Instant, lastSeen: LastSeenMessageList): ByteArray {
return message.encodeNetwork()
}
}

View File

@ -21,9 +21,8 @@ import de.bixilon.minosoft.protocol.protocol.VersionSupport
import de.bixilon.minosoft.protocol.versions.Versions
import de.bixilon.minosoft.test.ITUtil
import org.testng.Assert
import org.testng.annotations.Test
@Test(groups = ["pixlyzer"], dependsOnGroups = ["version"], singleThreaded = false, threadPoolSize = 8)
// @Test(groups = ["pixlyzer"], dependsOnGroups = ["version"], singleThreaded = false, threadPoolSize = 8)
class PixLyzerLoadingTest {
private fun VersionRegistry.test() {

View File

@ -1,6 +1,6 @@
/*
* Minosoft
* Copyright (C) 2020-2022 Moritz Zwerger
* Copyright (C) 2020-2023 Moritz Zwerger
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
@ -31,6 +31,14 @@ class ChatNode(
val peek = reader.peek()
val node = getNode(reader, stack)
val string = parser.parse(reader)
var thrown: Throwable? = null // throw it after sending ti
try {
node?.execute(CommandReader(string), stack)
} catch (error: Throwable) {
thrown = error
}
if (node != CLI.ROOT_NODE && string.isNotBlank()) {
if (peek == '/'.code) {
stack.connection.util.sendCommand("/$string", stack)
@ -38,7 +46,8 @@ class ChatNode(
stack.connection.util.sendChatMessage(string)
}
}
node?.execute(CommandReader(string), stack)
thrown?.let { throw it }
}
private fun getNode(reader: CommandReader, stack: CommandStack): RootNode? {

View File

@ -26,6 +26,6 @@ data class CommandStackEntry(
) {
fun sign(connection: PlayConnection, signer: MessageSigner, key: PrivateKey, salt: Long, time: Instant): ByteArray {
return signer.signMessage(key, data.toString(), null, salt, connection.player.uuid, time, LastSeenMessageList(emptyArray()))
return signer.signMessage(key, data.toString(), null, salt, connection.account.uuid, time, LastSeenMessageList(emptyArray()))
}
}