2021-07-14 12:50:47 +00:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Ceph-CSI Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-09-16 13:47:57 +00:00
|
|
|
package core
|
2021-07-14 12:50:47 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-08-25 06:46:03 +00:00
|
|
|
cerrors "github.com/ceph/ceph-csi/internal/cephfs/errors"
|
|
|
|
|
2022-06-21 11:49:13 +00:00
|
|
|
fsa "github.com/ceph/go-ceph/cephfs/admin"
|
2024-04-04 08:50:20 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2021-07-14 12:50:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCloneStateToError(t *testing.T) {
|
2021-07-22 06:28:10 +00:00
|
|
|
t.Parallel()
|
2021-07-14 12:50:47 +00:00
|
|
|
errorState := make(map[cephFSCloneState]error)
|
2022-06-21 11:49:13 +00:00
|
|
|
errorState[cephFSCloneState{fsa.CloneComplete, "", ""}] = nil
|
2022-02-15 12:11:09 +00:00
|
|
|
errorState[CephFSCloneError] = cerrors.ErrInvalidClone
|
2022-06-21 11:49:13 +00:00
|
|
|
errorState[cephFSCloneState{fsa.CloneInProgress, "", ""}] = cerrors.ErrCloneInProgress
|
|
|
|
errorState[cephFSCloneState{fsa.ClonePending, "", ""}] = cerrors.ErrClonePending
|
|
|
|
errorState[cephFSCloneState{fsa.CloneFailed, "", ""}] = cerrors.ErrCloneFailed
|
2021-07-14 12:50:47 +00:00
|
|
|
|
|
|
|
for state, err := range errorState {
|
2024-04-04 08:50:20 +00:00
|
|
|
require.ErrorIs(t, state.ToError(), err)
|
2021-07-14 12:50:47 +00:00
|
|
|
}
|
|
|
|
}
|