2013-09-03 17:23:58 +00:00
|
|
|
// Copyright 2013 bee 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.
|
|
|
|
|
2013-08-22 03:03:31 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2013-08-24 08:41:46 +00:00
|
|
|
path "path/filepath"
|
2013-08-22 03:03:31 +00:00
|
|
|
"time"
|
2013-12-23 15:32:01 +00:00
|
|
|
|
|
|
|
_ "github.com/smartystreets/goconvey/convey"
|
2013-08-22 03:03:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var cmdTest = &Command{
|
|
|
|
UsageLine: "test [appname]",
|
|
|
|
Short: "test the app",
|
2013-08-24 08:41:46 +00:00
|
|
|
Long: ``,
|
2013-08-22 03:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdTest.Run = testApp
|
2016-11-20 21:28:52 +00:00
|
|
|
cmdTest.PreRun = func(cmd *Command, args []string) { ShowShortVersionBanner() }
|
2013-08-22 03:03:31 +00:00
|
|
|
}
|
|
|
|
|
2013-09-24 02:42:02 +00:00
|
|
|
func safePathAppend(arr []string, paths ...string) []string {
|
|
|
|
for _, path := range paths {
|
|
|
|
if pathExists(path) {
|
|
|
|
arr = append(arr, path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return arr
|
|
|
|
}
|
|
|
|
|
|
|
|
func pathExists(path string) bool {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
return err == nil || os.IsExist(err)
|
|
|
|
}
|
|
|
|
|
2013-08-24 08:41:46 +00:00
|
|
|
var started = make(chan bool)
|
2013-08-22 03:03:31 +00:00
|
|
|
|
2014-08-15 09:38:51 +00:00
|
|
|
func testApp(cmd *Command, args []string) int {
|
2013-08-22 03:03:31 +00:00
|
|
|
if len(args) != 1 {
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Fatalf("Failed to start: %s", "argument 'appname' is missing")
|
2013-08-22 03:03:31 +00:00
|
|
|
}
|
2016-11-13 14:14:48 +00:00
|
|
|
|
|
|
|
currpath, _ := os.Getwd()
|
|
|
|
|
2016-11-14 17:02:29 +00:00
|
|
|
logger.Debugf("Current path: %s", __FILE__(), __LINE__(), currpath)
|
2013-08-22 03:03:31 +00:00
|
|
|
|
|
|
|
err := loadConfig()
|
|
|
|
if err != nil {
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Fatalf("Failed to load configuration: %s", err)
|
2013-08-22 03:03:31 +00:00
|
|
|
}
|
|
|
|
var paths []string
|
2016-11-13 14:14:48 +00:00
|
|
|
readAppDirectories(currpath, &paths)
|
2013-08-22 03:03:31 +00:00
|
|
|
|
2014-06-18 13:31:54 +00:00
|
|
|
NewWatcher(paths, nil, false)
|
2013-08-22 03:03:31 +00:00
|
|
|
appname = args[0]
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-started:
|
|
|
|
runTest()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-24 08:41:46 +00:00
|
|
|
func runTest() {
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Info("Start testing...")
|
2013-09-24 02:42:02 +00:00
|
|
|
time.Sleep(time.Second * 1)
|
|
|
|
crupwd, _ := os.Getwd()
|
|
|
|
testDir := path.Join(crupwd, "tests")
|
|
|
|
if pathExists(testDir) {
|
|
|
|
os.Chdir(testDir)
|
|
|
|
}
|
2013-08-22 03:03:31 +00:00
|
|
|
|
|
|
|
var err error
|
|
|
|
icmd := exec.Command("go", "test")
|
2013-09-24 02:42:02 +00:00
|
|
|
icmd.Stdout = os.Stdout
|
|
|
|
icmd.Stderr = os.Stderr
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Info("============== Test Begin ===================")
|
2013-08-22 03:03:31 +00:00
|
|
|
err = icmd.Run()
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Info("============== Test End =====================")
|
2013-08-22 03:03:31 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Error("============== Test failed ===================")
|
|
|
|
logger.Errorf("Cause: %s", err)
|
2013-08-22 03:03:31 +00:00
|
|
|
return
|
|
|
|
}
|
2016-11-13 14:14:48 +00:00
|
|
|
logger.Success("Test Completed")
|
2013-08-22 03:03:31 +00:00
|
|
|
}
|