-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimize mock driver code #54
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,83 @@ | ||
/* | ||
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. | ||
*/ | ||
|
||
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I keep confusing mock driver used for unit tests and new mock driver we use for e2e test by csi-sanity. Do you think we could maybe rename them? So mock will be just for unit testing, and some other name for the driver we use for e2e testing? WDYT
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good, I'll create an issue for that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created #56