mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Avoid timing out and provide a proper error in TestCtlV3GetFormat test
Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
This commit is contained in:
parent
0f14106fb7
commit
f3196e3bbd
@ -17,9 +17,11 @@ package e2e
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
"go.etcd.io/etcd/pkg/v3/expect"
|
"go.etcd.io/etcd/pkg/v3/expect"
|
||||||
@ -179,9 +181,11 @@ func getFormatTest(cx ctlCtx) {
|
|||||||
cmdArgs = append(cmdArgs, "--print-value-only")
|
cmdArgs = append(cmdArgs, "--print-value-only")
|
||||||
}
|
}
|
||||||
cmdArgs = append(cmdArgs, "abc")
|
cmdArgs = append(cmdArgs, "abc")
|
||||||
if err := e2e.SpawnWithExpectWithEnv(cmdArgs, cx.envMap, expect.ExpectedResponse{Value: tt.wstr}); err != nil {
|
lines, err := e2e.RunUtilCompletion(cmdArgs, cx.envMap)
|
||||||
cx.t.Errorf("#%d: error (%v), wanted %v", i, err, tt.wstr)
|
if err != nil {
|
||||||
|
cx.t.Errorf("#%d: error (%v)", i, err)
|
||||||
}
|
}
|
||||||
|
assert.Contains(cx.t, strings.Join(lines, "\n"), tt.wstr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user