Skip to content

Commit

Permalink
Merge pull request #28 from Malinskiy/fix/shell-exit-code
Browse files Browse the repository at this point in the history
fix(shell): throw exceptions when shell exit code is unavailable
  • Loading branch information
Malinskiy authored Jan 30, 2021
2 parents 540da5f + ff3ddd3 commit 7e1b844
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.malinskiy.adam.request.shell.v1

import com.malinskiy.adam.Const
import com.malinskiy.adam.exception.RequestRejectedException
import com.malinskiy.adam.request.transform.ResponseTransformer

class ShellResultResponseTransformer : ResponseTransformer<ShellCommandResult> {
Expand All @@ -30,8 +31,12 @@ class ShellResultResponseTransformer : ResponseTransformer<ShellCommandResult> {
override fun transform(): ShellCommandResult {
val output = builder.toString()
val indexOfDelimiter = output.lastIndexOf(SyncShellCommandRequest.EXIT_CODE_DELIMITER)
if (indexOfDelimiter == -1) {
throw RequestRejectedException("No exit code delimiter found in $output")
}
val stdout = output.substring(0 until indexOfDelimiter)
val exitCode = output.substring(indexOfDelimiter + 1).trim().toInt()
val exitCodeString = output.substring(indexOfDelimiter + 1).trim()
val exitCode = exitCodeString.toIntOrNull() ?: throw RequestRejectedException("Unexpected exit code value $exitCodeString")
return ShellCommandResult(
output = stdout,
exitCode = exitCode
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* Copyright (C) 2021 Anton Malinskiy
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.malinskiy.adam.request.shell.v1

import com.malinskiy.adam.exception.RequestRejectedException
import kotlinx.coroutines.runBlocking
import org.junit.Test

class ShellResultResponseTransformerTest {
@Test(expected = RequestRejectedException::class)
fun testNoExitCodeDelimiter() {
runBlocking {
ShellResultResponseTransformer().apply {
val bytes = "nothing".toByteArray()
process(bytes, 0, bytes.size)
}.transform()
}
}

@Test(expected = RequestRejectedException::class)
fun testInvalidExitCode() {
runBlocking {
ShellResultResponseTransformer().apply {
val bytes = "nothingxtest".toByteArray()
process(bytes, 0, bytes.size)
}.transform()
}
}
}

0 comments on commit 7e1b844

Please sign in to comment.