You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
278 lines
8.3 KiB
278 lines
8.3 KiB
/*
|
|
* MinIO Cloud Storage, (C) 2018 MinIO, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package condition
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestIPAddressFuncEvaluate(t *testing.T) {
|
|
case1Function, err := newIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
testCases := []struct {
|
|
function Function
|
|
values map[string][]string
|
|
expectedResult bool
|
|
}{
|
|
{case1Function, map[string][]string{"SourceIp": {"192.168.1.10"}}, true},
|
|
{case1Function, map[string][]string{"SourceIp": {"192.168.2.10"}}, false},
|
|
{case1Function, map[string][]string{}, false},
|
|
{case1Function, map[string][]string{"delimiter": {"/"}}, false},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result := testCase.function.evaluate(testCase.values)
|
|
|
|
if result != testCase.expectedResult {
|
|
t.Fatalf("case %v: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestIPAddressFuncKey(t *testing.T) {
|
|
case1Function, err := newIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
testCases := []struct {
|
|
function Function
|
|
expectedResult Key
|
|
}{
|
|
{case1Function, AWSSourceIP},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result := testCase.function.key()
|
|
|
|
if result != testCase.expectedResult {
|
|
t.Fatalf("case %v: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestIPAddressFuncToMap(t *testing.T) {
|
|
case1Function, err := newIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
case2Function, err := newIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
case1Result := map[Key]ValueSet{
|
|
AWSSourceIP: NewValueSet(NewStringValue("192.168.1.0/24")),
|
|
}
|
|
|
|
case2Result := map[Key]ValueSet{
|
|
AWSSourceIP: NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")),
|
|
}
|
|
|
|
testCases := []struct {
|
|
f Function
|
|
expectedResult map[Key]ValueSet
|
|
}{
|
|
{case1Function, case1Result},
|
|
{case2Function, case2Result},
|
|
{&ipAddressFunc{}, nil},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result := testCase.f.toMap()
|
|
|
|
if !reflect.DeepEqual(result, testCase.expectedResult) {
|
|
t.Fatalf("case %v: result: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestNotIPAddressFuncEvaluate(t *testing.T) {
|
|
case1Function, err := newNotIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
testCases := []struct {
|
|
function Function
|
|
values map[string][]string
|
|
expectedResult bool
|
|
}{
|
|
{case1Function, map[string][]string{"SourceIp": {"192.168.2.10"}}, true},
|
|
{case1Function, map[string][]string{}, true},
|
|
{case1Function, map[string][]string{"delimiter": {"/"}}, true},
|
|
{case1Function, map[string][]string{"SourceIp": {"192.168.1.10"}}, false},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result := testCase.function.evaluate(testCase.values)
|
|
|
|
if result != testCase.expectedResult {
|
|
t.Fatalf("case %v: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestNotIPAddressFuncKey(t *testing.T) {
|
|
case1Function, err := newNotIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
testCases := []struct {
|
|
function Function
|
|
expectedResult Key
|
|
}{
|
|
{case1Function, AWSSourceIP},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result := testCase.function.key()
|
|
|
|
if result != testCase.expectedResult {
|
|
t.Fatalf("case %v: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestNotIPAddressFuncToMap(t *testing.T) {
|
|
case1Function, err := newNotIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
case2Function, err := newNotIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
case1Result := map[Key]ValueSet{
|
|
AWSSourceIP: NewValueSet(NewStringValue("192.168.1.0/24")),
|
|
}
|
|
|
|
case2Result := map[Key]ValueSet{
|
|
AWSSourceIP: NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")),
|
|
}
|
|
|
|
testCases := []struct {
|
|
f Function
|
|
expectedResult map[Key]ValueSet
|
|
}{
|
|
{case1Function, case1Result},
|
|
{case2Function, case2Result},
|
|
{¬IPAddressFunc{}, nil},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result := testCase.f.toMap()
|
|
|
|
if !reflect.DeepEqual(result, testCase.expectedResult) {
|
|
t.Fatalf("case %v: result: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestNewIPAddressFunc(t *testing.T) {
|
|
case1Function, err := newIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
case2Function, err := newIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
testCases := []struct {
|
|
key Key
|
|
values ValueSet
|
|
expectedResult Function
|
|
expectErr bool
|
|
}{
|
|
{AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")), case1Function, false},
|
|
{AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")), case2Function, false},
|
|
// Unsupported key error.
|
|
{S3Prefix, NewValueSet(NewStringValue("192.168.1.0/24")), nil, true},
|
|
// Invalid value error.
|
|
{AWSSourceIP, NewValueSet(NewStringValue("node1.example.org")), nil, true},
|
|
// Invalid CIDR format error.
|
|
{AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0.0/24")), nil, true},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result, err := newIPAddressFunc(testCase.key, testCase.values)
|
|
expectErr := (err != nil)
|
|
|
|
if expectErr != testCase.expectErr {
|
|
t.Fatalf("case %v: error: expected: %v, got: %v\n", i+1, testCase.expectErr, expectErr)
|
|
}
|
|
|
|
if !testCase.expectErr {
|
|
if result.String() != testCase.expectedResult.String() {
|
|
t.Fatalf("case %v: result: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestNewNotIPAddressFunc(t *testing.T) {
|
|
case1Function, err := newNotIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
case2Function, err := newNotIPAddressFunc(AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")))
|
|
if err != nil {
|
|
t.Fatalf("unexpected error. %v\n", err)
|
|
}
|
|
|
|
testCases := []struct {
|
|
key Key
|
|
values ValueSet
|
|
expectedResult Function
|
|
expectErr bool
|
|
}{
|
|
{AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24")), case1Function, false},
|
|
{AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0/24"), NewStringValue("10.1.10.1/32")), case2Function, false},
|
|
// Unsupported key error.
|
|
{S3Prefix, NewValueSet(NewStringValue("192.168.1.0/24")), nil, true},
|
|
// Invalid value error.
|
|
{AWSSourceIP, NewValueSet(NewStringValue("node1.example.org")), nil, true},
|
|
// Invalid CIDR format error.
|
|
{AWSSourceIP, NewValueSet(NewStringValue("192.168.1.0.0/24")), nil, true},
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
result, err := newNotIPAddressFunc(testCase.key, testCase.values)
|
|
expectErr := (err != nil)
|
|
|
|
if expectErr != testCase.expectErr {
|
|
t.Fatalf("case %v: error: expected: %v, got: %v\n", i+1, testCase.expectErr, expectErr)
|
|
}
|
|
|
|
if !testCase.expectErr {
|
|
if result.String() != testCase.expectedResult.String() {
|
|
t.Fatalf("case %v: result: expected: %v, got: %v\n", i+1, testCase.expectedResult, result)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|