mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 19:22:03 +00:00
106 lines
2.3 KiB
Go
106 lines
2.3 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
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 task
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/cue/model"
|
|
|
|
"cuelang.org/go/cue"
|
|
cueJson "cuelang.org/go/pkg/encoding/json"
|
|
"github.com/bmizerany/assert"
|
|
)
|
|
|
|
const TaskTemplate = `
|
|
parameter: {
|
|
serviceURL: string
|
|
}
|
|
|
|
processing: {
|
|
output: {
|
|
token ?: string
|
|
}
|
|
http: {
|
|
method: *"GET" | string
|
|
url: parameter.serviceURL
|
|
request: {
|
|
body ?: bytes
|
|
header: {}
|
|
trailer: {}
|
|
}
|
|
}
|
|
}
|
|
|
|
patch: {
|
|
data: token: processing.output.token
|
|
}
|
|
|
|
output: {
|
|
data: processing.output.token
|
|
}
|
|
`
|
|
|
|
func TestProcess(t *testing.T) {
|
|
s := NewMock()
|
|
defer s.Close()
|
|
|
|
r := cue.Runtime{}
|
|
taskTemplate, err := r.Compile("", TaskTemplate)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
taskTemplate, _ = taskTemplate.Fill(map[string]interface{}{
|
|
"serviceURL": "http://127.0.0.1:8090/api/v1/token?val=test-token",
|
|
}, model.ParameterFieldName)
|
|
|
|
inst, err := Process(taskTemplate)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
output := inst.Lookup("output")
|
|
data, _ := cueJson.Marshal(output)
|
|
assert.Equal(t, "{\"data\":\"test-token\"}", data)
|
|
}
|
|
|
|
func NewMock() *httptest.Server {
|
|
ts := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != "GET" {
|
|
fmt.Printf("Expected 'GET' request, got '%s'", r.Method)
|
|
}
|
|
if r.URL.EscapedPath() != "/api/v1/token" {
|
|
fmt.Printf("Expected request to '/person', got '%s'", r.URL.EscapedPath())
|
|
}
|
|
r.ParseForm()
|
|
token := r.Form.Get("val")
|
|
tokenBytes, _ := json.Marshal(map[string]interface{}{"token": token})
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write(tokenBytes)
|
|
}))
|
|
l, _ := net.Listen("tcp", "127.0.0.1:8090")
|
|
ts.Listener.Close()
|
|
ts.Listener = l
|
|
ts.Start()
|
|
return ts
|
|
}
|