Executor/test/dorkbox/executor/ShellTest.kt

41 lines
1.2 KiB
Kotlin
Raw Normal View History

2020-08-07 23:22:31 +02:00
/*
* Copyright 2020 dorkbox llc
*
* The Netty Project licenses this file to you 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 dorkbox.executor
2022-01-21 14:31:36 +01:00
import org.junit.jupiter.api.Assertions
2022-01-20 00:04:59 +01:00
import org.junit.jupiter.api.Test
2020-08-07 23:22:31 +02:00
2022-02-02 20:53:35 +01:00
class ShellTest {
2020-08-07 23:22:31 +02:00
@Test
fun testPing() {
2022-01-21 14:31:36 +01:00
val output = try {
2022-01-25 08:56:22 +01:00
val executor: Executor = if (Executor.IS_OS_WINDOWS) {
Executor().command("ping -n 10 1.1.1.1")
2022-01-21 14:31:36 +01:00
} else {
2022-01-25 08:56:22 +01:00
Executor().command("ping -c 10 1.1.1.1")
2022-01-21 14:31:36 +01:00
}
2022-01-25 08:56:22 +01:00
executor.defaultLogger().enableRead().startAsShellBlocking(20).output.utf8()
2022-01-21 14:31:36 +01:00
} catch (ignored: Exception) {
""
}
Assertions.assertTrue(output.isNotEmpty())
2020-08-07 23:22:31 +02:00
}
}