dbus: improve unsealed behaviour coverage
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
662f2a9d2c
commit
0f421644be
|
@ -137,6 +137,15 @@ func testProxyStartWaitCloseString(t *testing.T, sandbox bool) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
t.Run("unsealed start of "+id, func(t *testing.T) {
|
||||||
|
want := "proxy not sealed"
|
||||||
|
if err := p.Start(nil, nil, sandbox); err == nil || err.Error() != want {
|
||||||
|
t.Errorf("Start() error = %v, wantErr %q",
|
||||||
|
err, errors.New(want))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
t.Run("unsealed wait of "+id, func(t *testing.T) {
|
t.Run("unsealed wait of "+id, func(t *testing.T) {
|
||||||
wantErr := "proxy not started"
|
wantErr := "proxy not started"
|
||||||
if err := p.Wait(); err == nil || err.Error() != wantErr {
|
if err := p.Wait(); err == nil || err.Error() != wantErr {
|
||||||
|
|
|
@ -175,7 +175,6 @@ func testCaseGenerate() {
|
||||||
// inject nulls
|
// inject nulls
|
||||||
fi := &testCasesV[len(samples)+i]
|
fi := &testCasesV[len(samples)+i]
|
||||||
fi.wantErr = true
|
fi.wantErr = true
|
||||||
fi.c = &*fi.c
|
|
||||||
|
|
||||||
injectNulls(&fi.c.See)
|
injectNulls(&fi.c.See)
|
||||||
injectNulls(&fi.c.Talk)
|
injectNulls(&fi.c.Talk)
|
||||||
|
|
Loading…
Reference in New Issue