blob: fdc79400e1c16a5f0a54777a15773a1c5433fa7a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 egress_test
import (
"fmt"
mesherconfig "github.com/apache/servicecomb-mesher/proxy/config"
"github.com/apache/servicecomb-mesher/proxy/pkg/egress"
"gopkg.in/yaml.v2"
"testing"
)
func TestValidateEgressRule(t *testing.T) {
var yamlContent = `---
egress:
infra: cse # pilot or cse
address: http://istio-pilot.istio-system:15010
egressRule:
google-ext:
- hosts:
- "www.google.com"
- "*.yahoo.com"
ports:
- port: 80
protocol: HTTP
facebook-ext:
- hosts:
- "www.facebook.com"
ports:
- port: 80
protocol: HTTP`
ss := mesherconfig.EgressConfig{}
err := yaml.Unmarshal([]byte(yamlContent), &ss)
if err != nil {
fmt.Println("unmarshal failed")
}
bool, err := egress.ValidateEgressRule(ss.Destinations)
if bool == false {
t.Errorf("Expected true but got false")
}
}