]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - cmd/safcm-remote/sync/sync_test.go
remote: tests: hide testRunner functions in test output
[safcm/safcm.git] / cmd / safcm-remote / sync / sync_test.go
index 6f8025a2c7cb8d106be7efe23c4efb1b1644e321..8ee14593148dc5b48eb95bc4f7e9ba31dd44eabc 100644 (file)
@@ -54,6 +54,8 @@ func (r *testRunner) Run(cmd *exec.Cmd) error {
        return resErr
 }
 func (r *testRunner) CombinedOutput(cmd *exec.Cmd) ([]byte, error) {
+       r.t.Helper()
+
        stdout, stderr, err := r.check("combinedOutput", cmd)
        if stderr != nil {
                // stdout also contains stderr
@@ -63,6 +65,7 @@ func (r *testRunner) CombinedOutput(cmd *exec.Cmd) ([]byte, error) {
 }
 func (r *testRunner) check(method string, cmd *exec.Cmd) (
        []byte, []byte, error) {
+       r.t.Helper()
 
        if len(r.expCmds) == 0 {
                r.t.Fatalf("%s: empty expCmds", method)
@@ -80,10 +83,8 @@ func (r *testRunner) check(method string, cmd *exec.Cmd) (
        exp := r.expCmds[0]
        r.expCmds = r.expCmds[1:]
        if !reflect.DeepEqual(exp, cmd) {
-               r.t.Errorf("%s: %s", method,
-                       cmp.Diff(exp, cmd, cmpopts.IgnoreUnexported(
-                               exec.Cmd{},
-                               bytes.Buffer{})))
+               opts := cmpopts.IgnoreUnexported(exec.Cmd{}, bytes.Buffer{})
+               r.t.Errorf("%s: %s", method, cmp.Diff(exp, cmd, opts))
        }
 
        var stdout, stderr []byte
@@ -135,6 +136,8 @@ func prepareSync(req safcm.MsgSyncReq, runner *testRunner) (
 }
 
 func (s *syncTestResult) Wait() []string {
+       s.runner.t.Helper()
+
        close(s.ch)
        s.wg.Wait()