cubefs

Форк
0
/
const_test.go 
43 строки · 1.3 Кб
1
// Copyright 2022 The CubeFS Authors.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//     http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12
// implied. See the License for the specific language governing
13
// permissions and limitations under the License.
14

15
package proto_test
16

17
import (
18
	"testing"
19

20
	"github.com/stretchr/testify/require"
21

22
	"github.com/cubefs/cubefs/blobstore/common/proto"
23
)
24

25
func TestProtoDiskStatus(t *testing.T) {
26
	for st := proto.DiskStatusNormal; st < proto.DiskStatusMax; st++ {
27
		require.True(t, st.IsValid())
28
		t.Logf("disk st %d -> %s", st, st)
29
	}
30
	st := proto.DiskStatus(0xff)
31
	require.False(t, st.IsValid())
32
	t.Logf("disk st %d -> %s", st, st)
33
}
34

35
func TestProtoVolumeStatus(t *testing.T) {
36
	for st := proto.VolumeStatusIdle; st <= proto.VolumeStatusUnlocking; st++ {
37
		require.True(t, st.IsValid())
38
		t.Logf("volume st %d -> %s", st, st)
39
	}
40
	st := proto.VolumeStatus(0xff)
41
	require.False(t, st.IsValid())
42
	t.Logf("volume st %d -> %s", st, st)
43
}
44

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.