4 Star 1 Fork 0

Gitee 极速下载/fragmenta-cms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/fragmenta/fragmenta-cms
克隆/下载
server_test.go 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"fmt"
"net/http"
"testing"
)
// TestServer tests running the server and using http client to GET /
// this test will fail if there is no secrets file.
func TestServer(t *testing.T) {
// Setup our server from config
s, err := SetupServer()
if err != nil {
t.Fatalf("server: error setting up %s\n", err)
}
// Start the server
go s.Start()
// Try hitting the server to see if it is working
host := fmt.Sprintf("http://localhost%s/", s.PortString())
r, err := http.Get(host)
if err != nil {
t.Fatalf("server: error getting / %s", err)
}
if r.StatusCode != http.StatusOK {
t.Fatalf("server: error getting / expected:%d got:%d", http.StatusOK, r.StatusCode)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/fragmenta-cms.git
git@gitee.com:mirrors/fragmenta-cms.git
mirrors
fragmenta-cms
fragmenta-cms
master

搜索帮助