blob: 5493df4f2cf567ee890afae2ac8f74108dfa487d [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 apisix
import (
"encoding/json"
"testing"
"github.com/stretchr/testify/assert"
v1 "github.com/apache/apisix-ingress-controller/pkg/types/apisix/v1"
)
func TestItemUnmarshalJSON(t *testing.T) {
var items node
emptyData := `
{
"key": "test",
"nodes": {}
}
`
err := json.Unmarshal([]byte(emptyData), &items)
assert.Nil(t, err)
emptyData = `
{
"key": "test",
"nodes": {"a": "b", "c": "d"}
}
`
err = json.Unmarshal([]byte(emptyData), &items)
assert.NotNil(t, err)
assert.Equal(t, err.Error(), "unexpected non-empty object")
emptyArray := `
{
"key": "test",
"nodes": []
}
`
err = json.Unmarshal([]byte(emptyArray), &items)
assert.Nil(t, err)
}
func TestItemConvertRoute(t *testing.T) {
item := &item{
Key: "/apisix/routes/001",
Value: json.RawMessage(`
{
"upstream_id": "13",
"host": "foo.com",
"uri": "/shop/133/details",
"name": "unknown",
"methods": ["GET", "POST"]
}
`),
}
r, err := item.route()
assert.Nil(t, err)
assert.Equal(t, r.UpstreamId, "13")
assert.Equal(t, r.Host, "foo.com")
assert.Equal(t, r.Uri, "/shop/133/details")
assert.Equal(t, r.Methods[0], "GET")
assert.Equal(t, r.Methods[1], "POST")
assert.Equal(t, r.Name, "unknown")
}
func TestItemConvertUpstream(t *testing.T) {
ite := &item{
Key: "/apisix/upstreams/419655639963271872",
Value: json.RawMessage(`{ "nodes":{"httpbin.org:80":1, "foo.com:8080": 2}}`),
}
ups, err := ite.upstream()
assert.Nil(t, err)
assert.Len(t, ups.Nodes, 2)
if ups.Nodes[0].Host == "foo.com" {
ups.Nodes[0], ups.Nodes[1] = ups.Nodes[1], ups.Nodes[0]
}
assert.Equal(t, v1.UpstreamNode{Host: "httpbin.org", Port: 80, Weight: 1}, ups.Nodes[0])
assert.Equal(t, v1.UpstreamNode{Host: "foo.com", Port: 8080, Weight: 2}, ups.Nodes[1])
ite = &item{
Key: "/apisix/upstreams/419655639963271872",
Value: json.RawMessage(`
{
"id": "419655639963271872",
"nodes": [
{
"host": "httpbin.org",
"port": 80,
"weight": 1
},
{
"host": "httpbin.com",
"port": 8080,
"weight": 1
}
]
}`),
}
ups, err = ite.upstream()
assert.Nil(t, err)
assert.Len(t, ups.Nodes, 2)
assert.Equal(t, ups.Nodes[0], v1.UpstreamNode{Host: "httpbin.org", Port: 80, Weight: 1})
assert.Equal(t, ups.Nodes[1], v1.UpstreamNode{Host: "httpbin.com", Port: 8080, Weight: 1})
ite = &item{
Key: "/apisix/upstreams/419655639963271872",
Value: json.RawMessage(`{ "id":"419655639963271872" }`),
}
ups, err = ite.upstream()
assert.Nil(t, err)
assert.Len(t, ups.Nodes, 0)
}
func TestRouteVarsUnmarshalJSONCompatibility(t *testing.T) {
var route v1.Route
data := `{"vars":{}}`
err := json.Unmarshal([]byte(data), &route)
assert.Nil(t, err)
data = `{"vars":{"a":"b"}}`
err = json.Unmarshal([]byte(data), &route)
assert.NotNil(t, err)
assert.Equal(t, err.Error(), "unexpected non-empty object")
data = `{"vars":[]}`
err = json.Unmarshal([]byte(data), &route)
assert.Nil(t, err)
data = `{"vars":[["http_a","==","b"]]}`
err = json.Unmarshal([]byte(data), &route)
assert.Nil(t, err)
assert.Equal(t, "http_a", route.Vars[0][0].StrVal)
assert.Equal(t, "==", route.Vars[0][1].StrVal)
assert.Equal(t, "b", route.Vars[0][2].StrVal)
}