add unit test to verify special character handling for commands

This commit is contained in:
Kris Heid 2021-03-04 13:27:04 +01:00
parent ecf5a605fb
commit f4f41efbc3
1 changed files with 4 additions and 0 deletions

View File

@ -119,11 +119,15 @@ public class MockedTestCases {
server.expectShell("serial-123", "echo 'tab\tstring'").returns("tab\tstring");
server.expectShell("serial-123", "echo 'newline1\nstring'").returns("newline1\nstring");
server.expectShell("serial-123", "echo 'newline2\r\nstring'").returns("newline2\r\nstring");
server.expectShell("serial-123", "echo 'fuö äzpo'").returns("fuö äzpo");
server.expectShell("serial-123", "echo 'h¡t]&poli'").returns("h¡t]&poli");
JadbDevice device = connection.getDevices().get(0);
device.executeShell("ls", "space file");
device.executeShell("echo", "tab\tstring");
device.executeShell("echo", "newline1\nstring");
device.executeShell("echo", "newline2\r\nstring");
device.executeShell("echo", "fuö äzpo");
device.executeShell("echo", "h¡t]&poli");
}
@Test