1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/*
* Copyright (c) 2022. Nydus Developers. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package system
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestBuildUpgradeSocket(t *testing.T) {
cur := "api.sock"
next, err := buildNextAPISocket(cur)
assert.Nil(t, err)
assert.Equal(t, next, "api1.sock")
cur = "api2.sock"
next, err = buildNextAPISocket(cur)
assert.Nil(t, err)
assert.Equal(t, "api3.sock", next)
cur = "api23.sock"
next, err = buildNextAPISocket(cur)
assert.Nil(t, err)
assert.Equal(t, "api24.sock", next)
cur = "api222.sock"
next, err = buildNextAPISocket(cur)
assert.Nil(t, err)
assert.Equal(t, "api223.sock", next)
}
|