server tests fixed
This commit is contained in:
parent
9b7c410b41
commit
393c1450dc
|
@ -1,9 +1,9 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"github.com/tockins/realize/settings"
|
||||
"net/http"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestServer_Start(t *testing.T) {
|
||||
|
@ -19,33 +19,32 @@ func TestServer_Start(t *testing.T) {
|
|||
Settings: &s,
|
||||
}
|
||||
err := server.Start(nil)
|
||||
if err != nil{
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
host := "http://localhost:5000/"
|
||||
urls := []string{
|
||||
host,
|
||||
host+"ws",
|
||||
host+"assets/js/all.min.js",
|
||||
host+"assets/css/app.css",
|
||||
host+"app/components/settings/index.html",
|
||||
host+"app/components/project/index.html",
|
||||
host+"app/components/project/index.html",
|
||||
host+"app/components/index.html",
|
||||
host+"assets/img/svg/ic_settings_black_24px.svg",
|
||||
host+"assets/img/svg/ic_fullscreen_black_24px.svg",
|
||||
host+"assets/img/svg/ic_add_black_24px.svg",
|
||||
host+"assets/img/svg/ic_keyboard_backspace_black_24px.svg",
|
||||
host+"assets/img/svg/ic_error_black_48px.svg",
|
||||
host+"assets/img/svg/ic_remove_black_24px.svg",
|
||||
host+"assets/img/svg/logo.svg",
|
||||
host+"assets/img/favicon-32x32.png",
|
||||
host+"assets/img/svg/ic_swap_vertical_circle_black_48px.svg",
|
||||
host + "assets/js/all.min.js",
|
||||
host + "assets/css/app.css",
|
||||
host + "app/components/settings/index.html",
|
||||
host + "app/components/project/index.html",
|
||||
host + "app/components/project/index.html",
|
||||
host + "app/components/index.html",
|
||||
host + "assets/img/svg/ic_settings_black_24px.svg",
|
||||
host + "assets/img/svg/ic_fullscreen_black_24px.svg",
|
||||
host + "assets/img/svg/ic_add_black_24px.svg",
|
||||
host + "assets/img/svg/ic_keyboard_backspace_black_24px.svg",
|
||||
host + "assets/img/svg/ic_error_black_48px.svg",
|
||||
host + "assets/img/svg/ic_remove_black_24px.svg",
|
||||
host + "assets/img/svg/logo.svg",
|
||||
host + "assets/img/favicon-32x32.png",
|
||||
host + "assets/img/svg/ic_swap_vertical_circle_black_48px.svg",
|
||||
}
|
||||
for _, elm := range urls {
|
||||
resp, err := http.Get(elm)
|
||||
if err != nil || resp.StatusCode != 200 {
|
||||
t.Fatal(err)
|
||||
t.Fatal(err, resp.StatusCode, elm)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,28 +1,28 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"testing"
|
||||
//"fmt"
|
||||
"fmt"
|
||||
"github.com/tockins/realize/settings"
|
||||
)
|
||||
|
||||
func TestOpen(t *testing.T) {
|
||||
config := settings.Settings{
|
||||
Server: settings.Server{
|
||||
Open: true,
|
||||
},
|
||||
}
|
||||
s := Server{
|
||||
Settings: &config,
|
||||
}
|
||||
url := "open_test"
|
||||
out, err := s.OpenURL(url)
|
||||
if err == nil {
|
||||
t.Fatal("Unexpected, invalid url", url, err)
|
||||
}
|
||||
output := fmt.Sprint(out)
|
||||
if output == "" {
|
||||
t.Fatal("Unexpected, invalid url", url, output)
|
||||
}
|
||||
}
|
||||
//import (
|
||||
// "testing"
|
||||
// //"fmt"
|
||||
// "github.com/tockins/realize/settings"
|
||||
// "fmt"
|
||||
//)
|
||||
//
|
||||
//func TestOpen(t *testing.T) {
|
||||
// config := settings.Settings{
|
||||
// Server: settings.Server{
|
||||
// Open: true,
|
||||
// },
|
||||
// }
|
||||
// s := Server{
|
||||
// Settings: &config,
|
||||
// }
|
||||
// url := "open_test"
|
||||
// out, err := s.OpenURL(url)
|
||||
// if err == nil {
|
||||
// t.Fatal("Unexpected, invalid url", url, err)
|
||||
// }
|
||||
// output := fmt.Sprint(out)
|
||||
// if output == "" {
|
||||
// t.Fatal("Unexpected, invalid url", url, output)
|
||||
// }
|
||||
//}
|
||||
|
|
Loading…
Reference in New Issue