2017-02-11 15:23:47 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2017-02-11 15:23:47 +05:30
|
|
|
|
2017-02-09 12:09:06 +05:30
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_StatusTable(t *testing.T) {
|
|
|
|
table := NewStatusTable()
|
|
|
|
|
|
|
|
assert.False(t, table.IsRunning("xyz"))
|
|
|
|
|
|
|
|
table.Start("xyz")
|
|
|
|
assert.True(t, table.IsRunning("xyz"))
|
|
|
|
|
2017-05-31 14:27:17 +05:30
|
|
|
assert.False(t, table.StartIfNotRunning("xyz"))
|
|
|
|
assert.True(t, table.IsRunning("xyz"))
|
|
|
|
|
|
|
|
table.Stop("xyz")
|
|
|
|
assert.False(t, table.IsRunning("xyz"))
|
|
|
|
|
|
|
|
assert.True(t, table.StartIfNotRunning("xyz"))
|
|
|
|
assert.True(t, table.IsRunning("xyz"))
|
|
|
|
|
2017-02-09 12:09:06 +05:30
|
|
|
table.Stop("xyz")
|
|
|
|
assert.False(t, table.IsRunning("xyz"))
|
|
|
|
}
|