96 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
// +build integration
 | 
						|
 | 
						|
/*
 | 
						|
Copyright 2016 The Kubernetes Authors All rights reserved.
 | 
						|
 | 
						|
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.
 | 
						|
*/
 | 
						|
 | 
						|
package integration
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"os/exec"
 | 
						|
	"regexp"
 | 
						|
	"strings"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
// stderrWhitelist are regular expressions acceptable to find in normal stderr
 | 
						|
var stderrWhitelist = []string{
 | 
						|
	// kubectl out of date warning
 | 
						|
	`kubectl`,
 | 
						|
	// slow docker warning
 | 
						|
	`slow|long time|Restarting the docker service may improve`,
 | 
						|
	// don't care if we can't push images to other profiles
 | 
						|
	`cache_images.go:.*error getting status`,
 | 
						|
	// don't care if we can't push images to other profiles which are deleted.
 | 
						|
	`cache_images.go:.*Failed to load profile`,
 | 
						|
}
 | 
						|
 | 
						|
// stderrWhitelistRe combines rootCauses into a single regex
 | 
						|
var stderrWhitelistRe = regexp.MustCompile(strings.Join(stderrWhitelist, "|"))
 | 
						|
 | 
						|
// TestErrorSpam asserts that there are no errors displayed
 | 
						|
func TestErrorSpam(t *testing.T) {
 | 
						|
	if NoneDriver() {
 | 
						|
		t.Skip("none driver always shows a warning")
 | 
						|
	}
 | 
						|
	MaybeParallel(t)
 | 
						|
 | 
						|
	profile := UniqueProfileName("nospam")
 | 
						|
	ctx, cancel := context.WithTimeout(context.Background(), Minutes(25))
 | 
						|
	defer CleanupWithLogs(t, profile, cancel)
 | 
						|
 | 
						|
	// This should likely use multi-node once it's ready
 | 
						|
	args := append([]string{"start", "-p", profile, "-n=1", "--memory=2250", "--wait=false"}, StartArgs()...)
 | 
						|
 | 
						|
	rr, err := Run(t, exec.CommandContext(ctx, Target(), args...))
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("%q failed: %v", rr.Command(), err)
 | 
						|
	}
 | 
						|
 | 
						|
	stdout := rr.Stdout.String()
 | 
						|
	stderr := rr.Stderr.String()
 | 
						|
 | 
						|
	for _, line := range strings.Split(stderr, "\n") {
 | 
						|
		if strings.HasPrefix(line, "E") {
 | 
						|
			t.Errorf("unexpected error log: %q", line)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		if stderrWhitelistRe.MatchString(line) {
 | 
						|
			t.Logf("acceptable stderr: %q", line)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		if len(strings.TrimSpace(line)) > 0 {
 | 
						|
			t.Errorf("unexpected stderr: %q", line)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	for _, line := range strings.Split(stdout, "\n") {
 | 
						|
		keywords := []string{"error", "fail", "warning", "conflict"}
 | 
						|
		for _, keyword := range keywords {
 | 
						|
			if strings.Contains(line, keyword) {
 | 
						|
				t.Errorf("unexpected %q in stdout: %q", keyword, line)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if t.Failed() {
 | 
						|
		t.Logf("minikube stdout:\n%s", stdout)
 | 
						|
		t.Logf("minikube stderr:\n%s", stderr)
 | 
						|
	}
 | 
						|
}
 |