Skip to content

Fix monitor init handling #2728

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added integration test
  • Loading branch information
cmaglie committed Oct 10, 2024
commit 9bb46180a74256e5fc4a36b9d6f7140c17644ff8
49 changes: 49 additions & 0 deletions internal/integrationtest/daemon/daemon_concurrency_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"errors"
"fmt"
"io"
"sync"
"testing"
"time"

Expand Down Expand Up @@ -76,3 +77,51 @@ func TestArduinoCliDaemonCompileWithLotOfOutput(t *testing.T) {
testCompile()
testCompile()
}

func TestInitAndMonitorConcurrency(t *testing.T) {
// See: https://github.com/arduino/arduino-cli/issues/2719

env, cli := integrationtest.CreateEnvForDaemon(t)
defer env.CleanUp()

_, _, err := cli.Run("core", "install", "arduino:avr")
require.NoError(t, err)

grpcInst := cli.Create()
require.NoError(t, grpcInst.Init("", "", func(ir *commands.InitResponse) {
fmt.Printf("INIT> %v\n", ir.GetMessage())
}))

cli.InstallMockedSerialMonitor(t)

// Open the serial monitor for 5 seconds
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
mon, err := grpcInst.Monitor(ctx, &commands.Port{
Address: "/dev/test",
Protocol: "serial",
})
require.NoError(t, err)
var monitorCompleted sync.WaitGroup
monitorCompleted.Add(1)
go func() {
for {
msg, err := mon.Recv()
if err != nil {
break
}
fmt.Println("MON> ", msg)
}
fmt.Println("MON CLOSED")
monitorCompleted.Done()
}()

// Check that Init completes without blocking when the monitor is open
start := time.Now()
require.NoError(t, grpcInst.Init("", "", func(ir *commands.InitResponse) {
fmt.Printf("INIT> %v\n", ir.GetMessage())
}))
require.LessOrEqual(t, time.Since(start), 4*time.Second)
cancel()
monitorCompleted.Wait()
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy