blob: 092b4316d11216bf87b8311231ee72fa60916d60 [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 test
import (
"github.com/apache/dubbo-go-pixiu/pixiu/pkg/logger"
"io/ioutil"
"net/http"
"strings"
"testing"
"time"
)
import (
"github.com/stretchr/testify/assert"
)
func TestPost1(t *testing.T) {
url := "http://localhost:8883/UserService/com.dubbogo.pixiu.UserService/GetUserByName"
data := "{\"types\":\"string\",\"values\":\"tc\"}"
client := &http.Client{Timeout: 5 * time.Second}
req, err := http.NewRequest("POST", url, strings.NewReader(data))
assert.NoError(t, err)
req.Header.Add("Content-Type", "application/json")
req.Header.Add("x-dubbo-http1.1-dubbo-version", "1.0.0")
req.Header.Add("x-dubbo-service-protocol", "dubbo")
req.Header.Add("x-dubbo-service-version", "1.0.0")
req.Header.Add("x-dubbo-service-group", "test")
resp, err := client.Do(req)
assert.NoError(t, err)
assert.NotNil(t, resp)
assert.Equal(t, 200, resp.StatusCode)
s, _ := ioutil.ReadAll(resp.Body)
s2 := string(s)
assert.True(t, strings.Contains(s2, "0001"))
assert.True(t, strings.Contains(s2, "pixiu-wasm"))
logger.Info("result : %v", s2)
}