blob: 5ed2b1d8f378ca46776e8b20b3d741fdd87e4dd7 [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 main
import (
"github.com/stretchr/testify/assert"
"io/ioutil"
"net/http"
"sync"
"testing"
"github.com/labstack/echo/v4"
)
const (
SCAddr = "127.0.0.1:30101"
FrontAddr = "127.0.0.1:30104"
)
func TestStatic(t *testing.T) {
var wg sync.WaitGroup
cfg := Config{
scAddr: "http://" + SCAddr,
frontendAddr: FrontAddr,
}
wg.Add(1)
go func() {
wg.Done()
Serve(cfg)
}()
wg.Wait()
res, err := http.Get("http://" + FrontAddr)
assert.NoError(t, err, "Error accessing frontend: %s", err)
assert.Equal(t, http.StatusOK, res.StatusCode, "Expected http %d, got %d", http.StatusOK, res.StatusCode)
_ = res.Body.Close()
}
func TestSCProxy(t *testing.T) {
var wg sync.WaitGroup
greeting := "Hi, there!"
wg.Add(1)
// simulate service center backend
go func() {
e := echo.New()
e.HideBanner = true
e.GET("/sayHi", func(c echo.Context) error {
return c.String(http.StatusOK, greeting)
})
wg.Done()
_ = e.Start(SCAddr)
}()
wg.Wait()
res, err := http.Get("http://" + FrontAddr + "/sc/sayHi")
assert.NoError(t, err, "Error accessing sc proxy: %s", err)
assert.Equal(t, http.StatusOK, res.StatusCode, "Expected http %d, got %d", http.StatusOK, res.StatusCode)
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
t.Errorf("Error reading body: %s", err)
}
if string(body) != greeting {
t.Errorf("Expected %s, got %s", greeting, string(body))
}
}
func TestDirectoryTraversal(t *testing.T) {
var wg sync.WaitGroup
cfg := Config{
scAddr: "http://" + SCAddr,
frontendAddr: FrontAddr,
}
wg.Add(1)
go func() {
wg.Done()
Serve(cfg)
}()
wg.Wait()
res, err := http.Get("http://" + FrontAddr + "/..\\schema/schemahandler.go")
assert.NoError(t, err, "Error accessing frontend: %s", err)
assert.Equal(t, http.StatusNotFound, res.StatusCode, "Expected http status is 404")
_ = res.Body.Close()
}