// Copyright (c) 2015-2022 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see .
package cmd
import (
"strings"
"testing"
)
var testParseKVArgsCases = []struct {
inp string
kvmap map[string]string
errMsg string
}{
{"fh=use,rd=|,fd=;,qec=\"", map[string]string{"fh": "use", "rd": "|", "fd": ";", "qec": "\""}, ""},
{"", map[string]string{}, ""},
{"not the right format", map[string]string{}, "Arguments should be of the form key=value,... "},
{"k==v", map[string]string{"k": "=v"}, ""},
{"k=v1,k=v2", map[string]string{}, "More than one key=value found for k"},
{"k=v1;k=v2", map[string]string{"k": "v1;k=v2"}, ""},
}
func TestParseKVArgs(t *testing.T) {
for _, test := range testParseKVArgsCases {
kvmap, err := parseKVArgs(test.inp)
gerr := err.ToGoError()
if gerr != nil && gerr.Error() != test.errMsg {
t.Fatalf("Unexpected result for \"%s\", expected: |%s| got: |%s|\n", test.inp, test.errMsg, gerr)
}
if gerr == nil && test.errMsg != "" {
t.Fatalf("Unexpected result for \"%s\", expected: |%s| got: |%s|\n", test.inp, test.errMsg, gerr)
}
for k, v := range test.kvmap {
actual, ok := kvmap[k]
if !ok {
t.Fatalf("Unexpected result for \"%s,\" expected %s , found %s for key %s\n", test.inp, v, actual, k)
}
}
}
}
var testParseSerializationCases = []struct {
inp string
validKeys []string
validAbbrKeys map[string]string
parsedOpts map[string]string
errMsg string
}{
{
"rd=\n,fd=;,qc=\"",
append(validCSVCommonKeys, validCSVInputKeys...),
validCSVInputAbbrKeys,
map[string]string{"recorddelimiter": "\n", "fielddelimiter": ";", "quotechar": "\""},
"",
},
{
"rd=\n,fd=;,qc=\"",
validCSVInputKeys,
validCSVInputAbbrKeys,
map[string]string{},
"Options should be key-value pairs in the form key=value,... where valid key(s) are ",
},
{
"nokey=\n,fd=;,qc=\"",
validCSVInputKeys,
validCSVInputAbbrKeys,
map[string]string{},
"Options should be key-value pairs in the form key=value,... where valid key(s) are ",
},
{
"rd=\n\n,fd=|,qc=\",qc='",
validCSVInputKeys,
validCSVInputAbbrKeys,
map[string]string{},
"More than one key=value found for ",
},
{
"recordDelimiter=\n\n,FieldDelimiter=|,QuoteChAR=\"",
append(validCSVCommonKeys, validCSVInputKeys...),
validCSVInputAbbrKeys,
map[string]string{"recorddelimiter": "\n\n", "fielddelimiter": "|", "quotechar": "\""},
"",
},
{
"recordDelimiter=\n\n,FieldDelimiter=|,QuoteChAR=\",fh=use,qrd=;",
append(validCSVCommonKeys, validCSVInputKeys...),
validCSVInputAbbrKeys,
map[string]string{"recorddelimiter": "\n\n", "fielddelimiter": "|", "quotechar": "\"", "quotedrecorddelimiter": ";", "fileheader": "use"},
"",
},
{
"recordDelimiter=\n\n,FieldDelimiter=|,QuoteChar=\",qf=;,qec='",
append(validCSVCommonKeys, validCSVOutputKeys...),
validCSVOutputAbbrKeys,
map[string]string{},
"Options should be key-value pairs in the form key=value,... where valid key(s) are ",
},
{
"FieldDelimiter=|,QuoteChar=\",qf=;,qec='",
append(validCSVCommonKeys, validCSVOutputKeys...),
validCSVOutputAbbrKeys,
map[string]string{"fielddelimiter": "|", "quotechar": "\"", "quotefields": ";", "quoteescchar": "'"},
"",
},
{
"type=lines",
validJSONInputKeys,
nil,
map[string]string{"type": "lines"},
"",
},
}
func TestParseSerializationOpts(t *testing.T) {
for i, test := range testParseSerializationCases {
optsMap, err := parseSerializationOpts(test.inp, test.validKeys, test.validAbbrKeys)
gerr := err.ToGoError()
if gerr != nil && gerr.Error() != test.errMsg {
// match partial error message
if !strings.Contains(gerr.Error(), test.errMsg) {
t.Fatalf("Test %d: Unexpected result for \"%s\", expected: |%s| got: |%s|\n", i+1, test.inp, test.errMsg, gerr)
}
}
if gerr == nil && test.errMsg != "" {
t.Fatalf("Test %d: Unexpected result for \"%s\", expected: |%s| got: |%s|\n", i+1, test.inp, test.errMsg, gerr)
}
for k, v := range test.parsedOpts {
actual, ok := optsMap[strings.ToLower(k)]
if !ok {
t.Fatalf("Test %d:Unexpected result for \"%s,\" expected %s , found %s for key %s\n", i+1, test.inp, v, actual, k)
}
}
}
}