Merge pull request #510 from vmarmol/multiple

Allow the runner to run tests on multiple instances.
This commit is contained in:
Rohit Jnagal 2015-02-17 10:07:51 -08:00
commit 77c97eb5e8
2 changed files with 74 additions and 35 deletions

View File

@ -18,8 +18,8 @@ set -e
set -x set -x
# Check usage. # Check usage.
if [ $# != 1 ]; then if [ $# == 0 ]; then
echo "USAGE: run.sh <host to run tests on>" echo "USAGE: run.sh <hosts to run tests on>"
exit 1 exit 1
fi fi
@ -29,7 +29,8 @@ if ! git diff --name-only origin/master | grep -c -E "*.go|*.sh" &> /dev/null; t
exit 0 exit 0
fi fi
HOST=$1 shift
HOSTS=$@
export GOPATH="$JENKINS_HOME/workspace/project" export GOPATH="$JENKINS_HOME/workspace/project"
export GOBIN="$GOPATH/bin" export GOBIN="$GOPATH/bin"
@ -37,4 +38,4 @@ export GOBIN="$GOPATH/bin"
godep go build github.com/google/cadvisor/integration/runner godep go build github.com/google/cadvisor/integration/runner
# Run it. # Run it.
./runner --logtostderr $HOST ./runner --logtostderr $HOSTS

View File

@ -15,6 +15,8 @@
package main package main
import ( import (
"bytes"
"errors"
"flag" "flag"
"fmt" "fmt"
"net/http" "net/http"
@ -22,6 +24,8 @@ import (
"os/exec" "os/exec"
"path" "path"
"strconv" "strconv"
"strings"
"sync"
"time" "time"
"github.com/golang/glog" "github.com/golang/glog"
@ -42,33 +46,10 @@ func RunCommand(cmd string, args ...string) error {
return nil return nil
} }
func Run() error { func PushAndRunTests(host, testDir string) error {
start := time.Now() // Push binary.
defer func() { glog.Infof("Pushing cAdvisor binary to %q...", host)
glog.Infof("Execution time %v", time.Since(start)) err := RunCommand("gcutil", "ssh", host, "mkdir", "-p", testDir)
}()
defer glog.Flush()
host := flag.Args()[0]
testDir := fmt.Sprintf("/tmp/cadvisor-%d", os.Getpid())
glog.Infof("Running integration tests in host %q", host)
// Build cAdvisor.
glog.Infof("Building cAdvisor...")
err := RunCommand("godep", "go", "build", "github.com/google/cadvisor")
if err != nil {
return err
}
defer func() {
err := RunCommand("rm", cadvisorBinary)
if err != nil {
glog.Error(err)
}
}()
// Ship it to the destination host.
glog.Infof("Pushing cAdvisor binary to remote host...")
err = RunCommand("gcutil", "ssh", host, "mkdir", "-p", testDir)
if err != nil { if err != nil {
return err return err
} }
@ -85,7 +66,7 @@ func Run() error {
// TODO(vmarmol): Get logs in case of failures. // TODO(vmarmol): Get logs in case of failures.
// Start cAdvisor. // Start cAdvisor.
glog.Infof("Running cAdvisor on the remote host...") glog.Infof("Running cAdvisor on %q...", host)
portStr := strconv.Itoa(*port) portStr := strconv.Itoa(*port)
errChan := make(chan error) errChan := make(chan error)
go func() { go func() {
@ -128,12 +109,69 @@ func Run() error {
} }
// Run the tests. // Run the tests.
glog.Infof("Running integration tests targeting remote host...") glog.Infof("Running integration tests targeting %q...", host)
err = RunCommand("godep", "go", "test", "github.com/google/cadvisor/integration/tests/...", "--host", host, "--port", portStr) err = RunCommand("godep", "go", "test", "github.com/google/cadvisor/integration/tests/...", "--host", host, "--port", portStr)
if err != nil { if err != nil {
return err return err
} }
return nil
}
func Run() error {
start := time.Now()
defer func() {
glog.Infof("Execution time %v", time.Since(start))
}()
defer glog.Flush()
hosts := flag.Args()
testDir := fmt.Sprintf("/tmp/cadvisor-%d", os.Getpid())
glog.Infof("Running integration tests on host(s) %q", strings.Join(hosts, ","))
// Build cAdvisor.
glog.Infof("Building cAdvisor...")
err := RunCommand("godep", "go", "build", "github.com/google/cadvisor")
if err != nil {
return err
}
defer func() {
err := RunCommand("rm", cadvisorBinary)
if err != nil {
glog.Error(err)
}
}()
// Run test on all hosts in parallel.
var wg sync.WaitGroup
allErrors := make([]error, 0)
var allErrorsLock sync.Mutex
for _, host := range hosts {
wg.Add(1)
go func(host string) {
defer wg.Done()
err := PushAndRunTests(host, testDir)
if err != nil {
func() {
allErrorsLock.Lock()
defer allErrorsLock.Unlock()
allErrors = append(allErrors, err)
}()
}
}(host)
}
wg.Wait()
if len(allErrors) != 0 {
var buffer bytes.Buffer
for i, err := range allErrors {
buffer.WriteString(fmt.Sprintf("Error %d:", i))
buffer.WriteString(err.Error())
buffer.WriteString("\n")
}
return errors.New(buffer.String())
}
glog.Infof("All tests pass!") glog.Infof("All tests pass!")
return nil return nil
} }
@ -142,8 +180,8 @@ func main() {
flag.Parse() flag.Parse()
// Check usage. // Check usage.
if len(flag.Args()) != 1 { if len(flag.Args()) == 0 {
glog.Fatalf("USAGE: runner <host to test>") glog.Fatalf("USAGE: runner <hosts to test>")
} }
// Run the tests. // Run the tests.