forked from dell/gofsutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gofsutil_unix_test.go
212 lines (199 loc) · 5.27 KB
/
gofsutil_unix_test.go
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
//go:build linux || darwin
// +build linux darwin
// Copyright © 2022 Dell Inc. or its subsidiaries. All Rights Reserved.
//
// 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.
package gofsutil_test
import (
"context"
"fmt"
"os"
"strings"
"testing"
"github.com/dell/gofsutil"
)
func TestFCRescanSCSIHost(t *testing.T) {
var targets []string
// Scan the remote ports to find the array port WWNs
fcRemotePortsDir := "/sys/class/fc_remote_ports"
remotePortEntries, err := os.ReadDir(fcRemotePortsDir)
if err != nil {
t.Errorf("error reading %s: %s", fcRemotePortsDir, err)
}
for _, remotePort := range remotePortEntries {
if !strings.HasPrefix(remotePort.Name(), "rport-") {
continue
}
if !strings.HasPrefix(remotePort.Name(), "rport-") {
continue
}
arrayPortNameBytes, err := os.ReadFile(fcRemotePortsDir + "/" + remotePort.Name() + "/" + "port_name")
if err != nil {
continue
}
arrayPortName := strings.TrimSpace(string(arrayPortNameBytes))
if !strings.HasPrefix(arrayPortName, gofsutil.FCPortPrefix) {
continue
}
targets = append(targets, arrayPortName)
}
if len(targets) > 0 {
err := gofsutil.RescanSCSIHost(context.Background(), targets, "1")
if err != nil {
t.Errorf("RescanSCSIHost failed: %s", err)
}
}
}
func TestGetFCHostPortWWNs(t *testing.T) {
wwns, err := gofsutil.GetFCHostPortWWNs(context.Background())
if err != nil {
t.Error(err)
}
for _, wwn := range wwns {
fmt.Printf("local FC port wwn: %s\n", wwn)
}
}
func TestMountArgs(t *testing.T) {
tests := []struct {
src string
tgt string
fst string
opts []string
result string
}{
{
src: "localhost:/data",
tgt: "/mnt",
fst: "nfs",
result: "-t nfs localhost:/data /mnt",
},
{
src: "localhost:/data",
tgt: "/mnt",
result: "localhost:/data /mnt",
},
{
src: "localhost:/data",
tgt: "/mnt",
fst: "nfs",
opts: []string{"tcp", "vers=4"},
result: "-t nfs -o tcp,vers=4 localhost:/data /mnt",
},
{
src: "/dev/disk/mydisk",
tgt: "/mnt/mydisk",
fst: "xfs",
opts: []string{"ro", "noatime", "ro"},
result: "-t xfs -o ro,noatime /dev/disk/mydisk /mnt/mydisk",
},
{
src: "/dev/sdc",
tgt: "/mnt",
opts: []string{"rw", "", "noatime"},
result: "-o rw,noatime /dev/sdc /mnt",
},
}
for _, tt := range tests {
tt := tt
t.Run("", func(st *testing.T) {
st.Parallel()
opts := gofsutil.MakeMountArgs(
context.TODO(), tt.src, tt.tgt, tt.fst, tt.opts...)
optsStr := strings.Join(opts, " ")
if optsStr != tt.result {
t.Errorf("Formatting of mount args incorrect, got: %s want: %s",
optsStr, tt.result)
}
})
}
}
func TestWWNToDevicePath(t *testing.T) {
tests := []struct {
src string
tgt string
wwn string
result string
}{
{
src: "/dev/disk/by-id/wwn-0x60570970000197900046533030394146",
tgt: "../../mydeva",
wwn: "60570970000197900046533030394146",
result: "/dev/mydeva",
},
{
src: "/dev/disk/by-id/dm-uuid-mpath-360570970000197900046533030394146",
tgt: "../../mydevb",
wwn: "60570970000197900046533030394146",
result: "/dev/mydevb",
},
{
src: "/dev/disk/by-id/nvme-eui.12635330303134340000976000012000",
tgt: "../../mydevb",
wwn: "12635330303134340000976000012000",
result: "/dev/mydevb",
},
}
for _, tt := range tests {
t.Run("", func(_ *testing.T) {
// Change directories
workingDirectory, _ := os.Getwd()
err := os.Chdir("/dev/disk/by-id")
if err != nil {
t.Errorf("Couldn't Chdir to /dev/disk/by/id: %s", err)
}
// Create a target
file, err := os.Create(tt.result)
if err != nil {
t.Errorf("Couldn't Create %s: %s", tt.result, err)
}
file.Close()
// Create a symlink
err = os.Symlink(tt.tgt, tt.src)
if err != nil {
t.Errorf("Couldn't create Symlink %s: %s", tt.tgt, err)
}
// Get the entry
a, b, err := gofsutil.WWNToDevicePathX(context.Background(), tt.wwn)
if err != nil {
t.Errorf("Couldn't find DevicePathX: %s", err)
}
if a != tt.src {
t.Errorf("Expected %s got %s", tt.src, a)
}
if b != tt.result {
t.Errorf("Expected %s got %s", tt.result, b)
}
// Get the entry
c, err := gofsutil.WWNToDevicePath(context.Background(), tt.wwn)
if err != nil {
t.Errorf("Couldn't find DevicePathX: %s", err)
}
if c != tt.result {
t.Errorf("Expected %s got %s", tt.result, c)
}
// Remove symlink
err = os.Remove(tt.src)
if err != nil {
t.Errorf("Couldn't remove %s: %s", tt.src, err)
}
// Remove target
err = os.Remove(tt.result)
if err != nil {
t.Errorf("Couldn't remove %s: %s", tt.result, err)
}
// Change directories
err = os.Chdir(workingDirectory)
if err != nil {
t.Errorf("Couldn't Chdir to /dev/disk/by/id: %s", err)
}
})
}
}