Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

85 lines
1.9 KiB
Go

package storage
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestParseSegmentIDByBinlog(t *testing.T) {
type testCase struct {
name string
input string
rootPath string
expectError bool
expectID UniqueID
isIgnorableError bool
}
cases := []testCase{
{
name: "normal case",
input: "files/insertLog/123/456/1/101/10000001",
rootPath: "files",
expectError: false,
expectID: 1,
},
{
name: "normal case long id",
input: "files/insertLog/123/456/434828745294479362/101/10000001",
rootPath: "files",
expectError: false,
expectID: 434828745294479362,
},
{
name: "bad format",
input: "files/123",
rootPath: "files",
expectError: true,
},
{
name: "empty input",
input: "",
rootPath: "files",
expectError: true,
},
{
name: "non-number segmentid",
input: "files/insertLog/123/456/segment_id/101/10000001",
rootPath: "files",
expectError: true,
},
{
name: "file name doesn't exists",
input: "tenant1/files/inert_log/609/610/457/793",
rootPath: "tenant1/files",
expectError: true,
},
{
name: "valid delta_log key",
input: "file/delta_log/436300346003230019/436300346003230020/436300346003230115/436300346003230216",
rootPath: "file",
expectError: false,
expectID: 436300346003230115,
},
{
name: "invalid delta_log key",
input: "file/delta_log/436300346003230019/436300346003230020/436300346003230115",
rootPath: "file",
expectError: true,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
id, err := ParseSegmentIDByBinlog(tc.rootPath, tc.input)
if tc.expectError {
assert.Error(t, err)
} else {
assert.NoError(t, err)
assert.Equal(t, tc.expectID, id)
}
})
}
}