swarm/network/simulation: rename sendRunSignal to triggerSimulationRun

This commit is contained in:
Janos Guljas 2019-01-08 12:34:42 +01:00
parent b998721bbb
commit 1279f20b6a

View file

@ -74,7 +74,7 @@ func TestSimulationWithHTTPServer(t *testing.T) {
ctx, cancel2 := context.WithTimeout(context.Background(), 5*time.Second) ctx, cancel2 := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel2() defer cancel2()
errC := make(chan error, 1) errC := make(chan error, 1)
go sendRunSignal(t, errC) go triggerSimulationRun(t, errC)
result = sim.Run(ctx, func(ctx context.Context, sim *Simulation) error { result = sim.Run(ctx, func(ctx context.Context, sim *Simulation) error {
log.Debug("This run waits for the run signal from `frontend`...") log.Debug("This run waits for the run signal from `frontend`...")
//ensure with a Sleep that simulation doesn't terminate before the signal is received //ensure with a Sleep that simulation doesn't terminate before the signal is received
@ -90,7 +90,7 @@ func TestSimulationWithHTTPServer(t *testing.T) {
log.Debug("Test terminated successfully") log.Debug("Test terminated successfully")
} }
func sendRunSignal(t *testing.T, errC chan error) { func triggerSimulationRun(t *testing.T, errC chan error) {
//We need to first wait for the sim HTTP server to start running... //We need to first wait for the sim HTTP server to start running...
time.Sleep(2 * time.Second) time.Sleep(2 * time.Second)
//then we can send the signal //then we can send the signal