forked from kubernetes-csi/csi-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This includes the following changes: * `driver/driver.go` has been changed to be a generic CSI server * `driver/mock.go` used by clients has been changed to use `driver/driver.go` * `mock/main.go` has been changed to use `driver/driver.go` server * `mock/...` has been cleaned up to just what is needed
- Loading branch information
Showing
20 changed files
with
189 additions
and
2,843 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* | ||
Copyright 2017 Luis Pabón [email protected] | ||
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. | ||
*/ | ||
|
||
//go:generate mockgen -package=driver -destination=driver.mock.go github.com/container-storage-interface/spec/lib/go/csi IdentityServer,ControllerServer,NodeServer | ||
|
||
package driver | ||
|
||
import ( | ||
"net" | ||
|
||
"github.com/kubernetes-csi/csi-test/utils" | ||
"google.golang.org/grpc" | ||
) | ||
|
||
type MockCSIDriverServers struct { | ||
Controller *MockControllerServer | ||
Identity *MockIdentityServer | ||
Node *MockNodeServer | ||
} | ||
|
||
type MockCSIDriver struct { | ||
CSIDriver | ||
conn *grpc.ClientConn | ||
} | ||
|
||
func NewMockCSIDriver(servers *MockCSIDriverServers) *MockCSIDriver { | ||
return &MockCSIDriver{ | ||
CSIDriver: CSIDriver{ | ||
servers: &CSIDriverServers{ | ||
Controller: servers.Controller, | ||
Node: servers.Node, | ||
Identity: servers.Identity, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func (m *MockCSIDriver) Start() error { | ||
// Listen on a port assigned by the net package | ||
l, err := net.Listen("tcp", "127.0.0.1:0") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if err := m.CSIDriver.Start(l); err != nil { | ||
l.Close() | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (m *MockCSIDriver) Nexus() (*grpc.ClientConn, error) { | ||
// Start server | ||
err := m.Start() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// Create a client connection | ||
m.conn, err = utils.Connect(m.Address()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return m.conn, nil | ||
} | ||
|
||
func (m *MockCSIDriver) Close() { | ||
m.conn.Close() | ||
m.server.Stop() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
TheCodeTeam | ||
Kubernetes Authors |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,2 @@ | ||
# Mock Plug-in | ||
The mock plug-in is a stand-alone binary that implements the CSI | ||
Controller, Identity, and Node RPCs in addition to the specification's | ||
requirements regarding idempotency. | ||
|
||
The mock plug-in always starts with a deterministic state and maintains | ||
state for the duration of the process. The state can also be modified. | ||
For example, while the plug-in launches with three volumes, a | ||
`CreateVolume` RPC will update the plug-in's internal data map so that a | ||
subsequent `ListVolumes` RPC will indicate four volumes are present. | ||
|
||
Per the specification the Mock plug-in starts a gRPC server using the | ||
value of the environment variable `CSI_ENDPOINT`. The plug-in process | ||
runs in the foreground, logging activity to `STDOUT` and errors to | ||
`STDERR`, only returning control to the user when `CTRL-C` is entered | ||
or the process is sent a `kill` signal. | ||
|
||
```bash | ||
$ CSI_ENDPOINT=/tmp/csi.sock mock/mock | ||
INFO 2017/08/22 16:22:15 main.go:154: mock.Serve: /tmp/csi.sock | ||
INFO 2017/08/22 16:22:18 main.go:133: /csi.Controller/CreateVolume: REQ 0001: Version=minor:1 , Name=Test Volume, CapacityRange=required_bytes:10740000000 limit_bytes:107400000000 , VolumeCapabilities=[mount:<fs_type:"ext4" mount_flags:"-o noexec" > ], Parameters=map[tag:gold] | ||
INFO 2017/08/22 16:22:18 main.go:133: /csi.Controller/CreateVolume: REP 0001: Reply=&{volume_info:<capacity_bytes:107400000000 id:<values:<key:"id" value:"4" > values:<key:"name" value:"Test Volume" > > metadata:<> > } | ||
INFO 2017/08/22 16:23:53 main.go:94: received signal: interrupt: shutting down | ||
INFO 2017/08/22 16:23:53 main.go:188: mock.GracefulStop | ||
INFO 2017/08/22 16:23:53 main.go:53: removed sock file: /tmp/csi.sock | ||
INFO 2017/08/22 16:23:53 main.go:64: server stopped gracefully | ||
``` | ||
|
||
## Configuration | ||
The Mock CSI plug-in is created using the GoCSI CSP package. Please | ||
see its [configuration section](../csp/README.md#configuration) for | ||
a complete list of the environment variables that may be used to | ||
configure the Mock SP. | ||
|
||
The following table is a list of the Mock SP's default configuration | ||
values: | ||
|
||
| Name | Value | | ||
|------|---------| | ||
| `X_CSI_IDEMP` | `true` | | ||
| `X_CSI_IDEMP_REQUIRE_VOL` | `true` | | ||
| `X_CSI_REQUIRE_NODE_ID` | `true` | | ||
| `X_CSI_REQUIRE_PUB_VOL_INFO` | `true` | | ||
| `X_CSI_CREATE_VOL_ALREADY_EXISTS` | `true` | | ||
| `X_CSI_DELETE_VOL_NOT_FOUND` | `true` | | ||
| `X_CSI_SUPPORTED_VERSIONS` | `0.2.0 1.0.0 1.1.0` | | ||
# Mock CSI Driver | ||
Extremely simple mock driver used to test `csi-sanity` based on `rexray/gocsi/mock` |
Oops, something went wrong.