mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
fn: locked mutex while blocked on I/O considered harmful (#935)
* fn: mutex while waiting I/O considered harmful *) Removed hold mutex while wait I/O cases these included possible disk I/O and network I/O. *) Error/Context Close/Shutdown semantics changed since the context timeout and comments were misleading. Close always waits for pending gRPC session to complete. Context usage here was merely 'wait up to x secs to report an error' which only logs the error anyway. Instead, the runner can log the error. And context still can be passed around perhaps for future opencensus instrumentation.
This commit is contained in:
@@ -2,6 +2,7 @@ package agent
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
pool "github.com/fnproject/fn/api/runnerpool"
|
||||
@@ -11,6 +12,10 @@ func setupStaticPool(runners []string) pool.RunnerPool {
|
||||
return NewStaticRunnerPool(runners, nil, "", mockRunnerFactory)
|
||||
}
|
||||
|
||||
var (
|
||||
ErrorGarbanzoBeans = errors.New("yes, that's right. Garbanzo beans...")
|
||||
)
|
||||
|
||||
type mockStaticRunner struct {
|
||||
address string
|
||||
}
|
||||
@@ -19,8 +24,8 @@ func (r *mockStaticRunner) TryExec(ctx context.Context, call pool.RunnerCall) (b
|
||||
return true, nil
|
||||
}
|
||||
|
||||
func (r *mockStaticRunner) Close(ctx context.Context) error {
|
||||
return nil
|
||||
func (r *mockStaticRunner) Close(context.Context) error {
|
||||
return ErrorGarbanzoBeans
|
||||
}
|
||||
|
||||
func (r *mockStaticRunner) Address() string {
|
||||
@@ -44,10 +49,57 @@ func TestNewStaticPool(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestEmptyPool(t *testing.T) {
|
||||
np := setupStaticPool(nil).(*staticRunnerPool)
|
||||
|
||||
runners, err := np.Runners(nil)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to list runners %v", err)
|
||||
}
|
||||
if len(runners) != 0 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
|
||||
err = np.AddRunner("127.0.0.1:8082")
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to add runner %v", err)
|
||||
}
|
||||
|
||||
runners, err = np.Runners(nil)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to list runners %v", err)
|
||||
}
|
||||
if len(runners) != 1 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
|
||||
err = np.Shutdown(context.Background())
|
||||
if err != ErrorGarbanzoBeans {
|
||||
t.Fatalf("Expected garbanzo beans error from shutdown %v", err)
|
||||
}
|
||||
|
||||
runners, err = np.Runners(nil)
|
||||
if err == nil {
|
||||
t.Fatalf("Should fail to list runners (shutdown)")
|
||||
}
|
||||
if len(runners) != 0 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
}
|
||||
|
||||
func TestAddNodeToPool(t *testing.T) {
|
||||
addrs := []string{"127.0.0.1:8080", "127.0.0.1:8081"}
|
||||
np := setupStaticPool(addrs).(*staticRunnerPool)
|
||||
np.AddRunner("127.0.0.1:8082")
|
||||
|
||||
err := np.AddRunner("127.0.0.1:8082")
|
||||
if err != nil {
|
||||
t.Fatalf("Add Should not fail %v", err)
|
||||
}
|
||||
|
||||
err = np.AddRunner("127.0.0.1:8082")
|
||||
if err != ErrorPoolRunnerExists {
|
||||
t.Fatalf("Add Should fail since duplicate %v", err)
|
||||
}
|
||||
|
||||
runners, err := np.Runners(nil)
|
||||
if err != nil {
|
||||
@@ -56,11 +108,25 @@ func TestAddNodeToPool(t *testing.T) {
|
||||
if len(runners) != 3 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
|
||||
err = np.Shutdown(context.Background())
|
||||
if err != ErrorGarbanzoBeans {
|
||||
t.Fatalf("Expected garbanzo beans error from shutdown %v", err)
|
||||
}
|
||||
|
||||
runners, err = np.Runners(nil)
|
||||
if err == nil {
|
||||
t.Fatalf("Should fail to list runners (shutdown)")
|
||||
}
|
||||
if len(runners) != 0 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
}
|
||||
|
||||
func TestRemoveNodeFromPool(t *testing.T) {
|
||||
addrs := []string{"127.0.0.1:8080", "127.0.0.1:8081"}
|
||||
np := setupStaticPool(addrs).(*staticRunnerPool)
|
||||
|
||||
np.RemoveRunner("127.0.0.1:8081")
|
||||
|
||||
runners, err := np.Runners(nil)
|
||||
@@ -81,4 +147,42 @@ func TestRemoveNodeFromPool(t *testing.T) {
|
||||
if len(runners) != 1 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
|
||||
np.RemoveRunner("127.0.0.1:8080")
|
||||
|
||||
runners, err = np.Runners(nil)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to list runners %v", err)
|
||||
}
|
||||
if len(runners) != 0 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
|
||||
np.RemoveRunner("127.0.0.1:8080")
|
||||
|
||||
runners, err = np.Runners(nil)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to list runners %v", err)
|
||||
}
|
||||
if len(runners) != 0 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
|
||||
// Let's try a double shutdown
|
||||
err = np.Shutdown(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("Not expected error from shutdown I (empty pool) %v", err)
|
||||
}
|
||||
err = np.Shutdown(context.Background())
|
||||
if err != nil {
|
||||
t.Fatalf("Not expected error from shutdown II (empty pool) %v", err)
|
||||
}
|
||||
|
||||
runners, err = np.Runners(nil)
|
||||
if err == nil {
|
||||
t.Fatalf("Should fail to list runners (shutdown)")
|
||||
}
|
||||
if len(runners) != 0 {
|
||||
t.Fatalf("Invalid number of runners %v", len(runners))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user