// Copyright (c) 2015-2021 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 lifecycle import ( "encoding/xml" "fmt" "testing" ) // TestUnsupportedFilters checks if parsing Filter xml with // unsupported elements returns appropriate errors func TestUnsupportedFilters(t *testing.T) { testCases := []struct { inputXML string expectedErr error }{ { // Filter with And tags inputXML: ` key-prefix `, expectedErr: errXMLNotWellFormed, }, { // Filter with Tag tags inputXML: ` key1 value1 `, expectedErr: nil, }, { // Filter with Prefix tag inputXML: ` key-prefix `, expectedErr: nil, }, { // Filter without And and multiple Tag tags inputXML: ` key-prefix key1 value1 key2 value2 `, expectedErr: errInvalidFilter, }, { // Filter with And, Prefix & multiple Tag tags inputXML: ` key-prefix key1 value1 key2 value2 `, expectedErr: nil, }, { // Filter with And and multiple Tag tags inputXML: ` key1 value1 key2 value2 `, expectedErr: nil, }, { // Filter without And and single Tag tag inputXML: ` key-prefix key1 value1 `, expectedErr: errInvalidFilter, }, } for i, tc := range testCases { t.Run(fmt.Sprintf("Test %d", i+1), func(t *testing.T) { var filter Filter err := xml.Unmarshal([]byte(tc.inputXML), &filter) if err != nil { t.Fatalf("%d: Expected no error but got %v", i+1, err) } err = filter.Validate() if err != tc.expectedErr { t.Fatalf("%d: Expected %v but got %v", i+1, tc.expectedErr, err) } }) } }