libgocryptfs/cli_args_test.go

78 lines
1.9 KiB
Go
Raw Normal View History

2016-10-09 20:54:40 +02:00
package main
import (
"reflect"
"testing"
)
// TestPrefixOArgs checks that the "-o x,y,z" parsing works correctly.
2016-10-09 20:54:40 +02:00
func TestPrefixOArgs(t *testing.T) {
testcases := []struct {
// i is the input
i []string
// o is the expected output
o []string
// Do we expect an error?
e bool
}{
{
2016-10-09 20:54:40 +02:00
i: nil,
o: nil,
},
{
2016-10-09 20:54:40 +02:00
i: []string{"gocryptfs"},
o: []string{"gocryptfs"},
},
{
2016-10-09 20:54:40 +02:00
i: []string{"gocryptfs", "-v"},
o: []string{"gocryptfs", "-v"},
},
{
2016-10-09 20:54:40 +02:00
i: []string{"gocryptfs", "foo", "bar", "-v"},
o: []string{"gocryptfs", "foo", "bar", "-v"},
},
{
2016-10-09 20:54:40 +02:00
i: []string{"gocryptfs", "foo", "bar", "-o", "a"},
o: []string{"gocryptfs", "-a", "foo", "bar"},
},
{
2016-10-09 20:54:40 +02:00
i: []string{"gocryptfs", "foo", "bar", "-o", "a,b,xxxxx"},
o: []string{"gocryptfs", "-a", "-b", "-xxxxx", "foo", "bar"},
},
{
i: []string{"gocryptfs", "foo", "bar", "-d", "-o=a,b,xxxxx"},
o: []string{"gocryptfs", "-a", "-b", "-xxxxx", "foo", "bar", "-d"},
},
{
2016-10-09 20:54:40 +02:00
i: []string{"gocryptfs", "foo", "bar", "-oooo", "a,b,xxxxx"},
o: []string{"gocryptfs", "foo", "bar", "-oooo", "a,b,xxxxx"},
},
// https://github.com/mhogomchungu/sirikali/blob/a36d91d3e39f0c1eb9a79680ed6c28ddb6568fa8/src/siritask.cpp#L192
{
i: []string{"gocryptfs", "-o", "rw", "--config", "fff", "ccc", "mmm"},
o: []string{"gocryptfs", "-rw", "--config", "fff", "ccc", "mmm"},
},
// "--" should also block "-o" parsing.
{
i: []string{"gocryptfs", "foo", "bar", "--", "-o", "a"},
o: []string{"gocryptfs", "foo", "bar", "--", "-o", "a"},
},
{
i: []string{"gocryptfs", "--", "-o", "a"},
o: []string{"gocryptfs", "--", "-o", "a"},
},
// This should error out
{
i: []string{"gocryptfs", "foo", "bar", "-o"},
e: true,
},
2016-10-09 20:54:40 +02:00
}
for _, tc := range testcases {
o, err := prefixOArgs(tc.i)
e := (err != nil)
if !reflect.DeepEqual(o, tc.o) || e != tc.e {
t.Errorf("\n in=%q\nwant=%q err=%v\n got=%q err=%v", tc.i, tc.o, tc.e, o, e)
2016-10-09 20:54:40 +02:00
}
}
}