From 87d772a7d708fec12f48cd8adc0dedff6e1025da Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 26 Aug 2024 10:15:20 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- .../go.d.plugin/modules/vsphere/task_test.go | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/go/collectors/go.d.plugin/modules/vsphere/task_test.go (limited to 'src/go/collectors/go.d.plugin/modules/vsphere/task_test.go') diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/task_test.go b/src/go/collectors/go.d.plugin/modules/vsphere/task_test.go deleted file mode 100644 index ed55a28a3..000000000 --- a/src/go/collectors/go.d.plugin/modules/vsphere/task_test.go +++ /dev/null @@ -1,41 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -package vsphere - -import ( - "sync/atomic" - "testing" - "time" - - "github.com/stretchr/testify/assert" -) - -func Test_task(t *testing.T) { - var i int64 - job := func() { - atomic.AddInt64(&i, 1) - } - - task := newTask(job, time.Millisecond*200) - defer task.stop() - time.Sleep(time.Second) - assert.True(t, atomic.LoadInt64(&i) > 0) -} - -func Test_task_isStopped(t *testing.T) { - task := newTask(func() {}, time.Second) - assert.False(t, task.isStopped()) - - task.stop() - time.Sleep(time.Millisecond * 500) - assert.True(t, task.isStopped()) -} - -func Test_task_isRunning(t *testing.T) { - task := newTask(func() {}, time.Second) - assert.True(t, task.isRunning()) - - task.stop() - time.Sleep(time.Millisecond * 500) - assert.False(t, task.isRunning()) -} -- cgit v1.2.3