mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add explicit test strings for new escapeFstabSpaces function
This commit is contained in:
parent
b702edadb7
commit
1af6ffb9bb
1 changed files with 18 additions and 0 deletions
|
@ -100,3 +100,21 @@ func grepFile(t *testing.T, path string, pattern string) {
|
||||||
}
|
}
|
||||||
t.Fatalf("grepFile: pattern \"%s\" not found in \"%s\"", pattern, path)
|
t.Fatalf("grepFile: pattern \"%s\" not found in \"%s\"", pattern, path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestEscapeFstabSpaces(t *testing.T) {
|
||||||
|
var testInputs = map[string]string{
|
||||||
|
" ": "\\040",
|
||||||
|
"": "",
|
||||||
|
"/double space": "/double\\040\\040space",
|
||||||
|
"/some long test string": "/some\\040long\\040test\\040string",
|
||||||
|
"/var/lib/docker": "/var/lib/docker",
|
||||||
|
" leading": "\\040leading",
|
||||||
|
"trailing ": "trailing\\040",
|
||||||
|
}
|
||||||
|
for in, exp := range testInputs {
|
||||||
|
if out := escapeFstabSpaces(in); exp != out {
|
||||||
|
t.Logf("Expected %s got %s", exp, out)
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue