-
Notifications
You must be signed in to change notification settings - Fork 5
/
ovsport_test.go
65 lines (49 loc) · 857 Bytes
/
ovsport_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
package goovs
import (
"testing"
)
func TestPortReadFromDBRow(t *testing.T) {
// TODO
}
func TestCreateInternalPort(t *testing.T) {
// TODO
}
func TestCreatePatchPort(t *testing.T) {
// TODO
}
func TestCreateVethPort(t *testing.T) {
// TODO
}
func TestCreatePort(t *testing.T) {
// TODO
}
func TestDeletePort(t *testing.T) {
// TODO
}
func TestDeletePortByUUID(t *testing.T) {
// TODO
}
func TestPortExistsOnBridge(t *testing.T) {
// TODO
}
func TestPortExistsByUUID(t *testing.T) {
// TODO
}
func TestFindAllPortsOnBridge(t *testing.T) {
// TODO
}
func TestFindAllPortUUIDsOnBridge(t *testing.T) {
// TODO
}
func TestGetPortNameByUUID(t *testing.T) {
// TODO
}
func TestGetPortUUIDByName(t *testing.T) {
// TODO
}
func TestUpdatePortTagByName(t *testing.T) {
// TODO
}
func TestUpdatePortTagByUUID(t *testing.T) {
// TODO
}