open-vault/vendor/github.com/Microsoft/go-winio
Clint cbecc40e48
Stepwise docker env (#9292)
* add first stepwise test env, Docker, with example transit test

* update transit stepwise test

* add other tests that use stepwise

* cleanup test, make names different than just 'transit'

* return the stderr if compile fails with error

* minor cleanups

* minor cleanups

* go mod vendor

* cleanups

* remove some extra code, and un-export some fields/methods

* update vendor

* remove reference to vault.CoreConfig, which really wasn't used anyway

* update with go mod vendor

* restore Precheck method to test cases

* clean up some networking things; create networks with UUID, clean up during teardown

* vendor stepwise

* Update sdk/testing/stepwise/environments/docker/environment.go

haha thanks :D

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* Update sdk/testing/stepwise/environments/docker/environment.go

Great catch, thanks

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* fix redundant name

* update error message in test

* Update builtin/credential/userpass/stepwise_test.go

More explicit error checking and responding

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* Update builtin/logical/aws/stepwise_test.go

`test` -> `testFunc`

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* Update builtin/logical/transit/stepwise_test.go

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* fix typos

* update error messages to provide clarity

* Update sdk/testing/stepwise/environments/docker/environment.go

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* update error handling / collection in Teardown

* panic if GenerateUUID returns an error

* Update sdk/testing/stepwise/environments/docker/environment.go

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>

* Update builtin/credential/userpass/stepwise_test.go

Co-authored-by: Calvin Leung Huang <cleung2010@gmail.com>

* Update builtin/logical/aws/stepwise_test.go

Co-authored-by: Calvin Leung Huang <cleung2010@gmail.com>

* Update builtin/logical/transit/stepwise_test.go

Co-authored-by: Calvin Leung Huang <cleung2010@gmail.com>

* Update sdk/testing/stepwise/environments/docker/environment.go

Co-authored-by: Calvin Leung Huang <cleung2010@gmail.com>

* import ordering

* standardize on dc from rc for cluster

* lowercase name

* CreateAPIClient -> NewAPIClient

* testWait -> ensure

* go mod cleanup

* cleanups

* move fields and method around

* make start and dockerclusternode private; use better random serial number

* use better random for SerialNumber

* add a timeout to the context used for terminating the docker container

* Use a constant for the Docker client version

* rearrange import statements

Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>
Co-authored-by: Calvin Leung Huang <cleung2010@gmail.com>
2020-06-26 17:52:31 -05:00
..
pkg/guid Updating plugin deps 2019-08-14 17:23:29 -04:00
.gitignore Switch to go modules (#6585) 2019-04-13 03:44:06 -04:00
backup.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
ea.go Update Deps (#5454) 2018-10-03 09:55:26 -07:00
file.go Updating plugin deps 2019-08-14 17:23:29 -04:00
fileinfo.go Update Deps (#5454) 2018-10-03 09:55:26 -07:00
go.mod Stepwise docker env (#9292) 2020-06-26 17:52:31 -05:00
go.sum Stepwise docker env (#9292) 2020-06-26 17:52:31 -05:00
hvsock.go Updating plugin deps 2019-08-14 17:23:29 -04:00
LICENSE Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
pipe.go Updating plugin deps 2019-08-14 17:23:29 -04:00
privilege.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
README.md Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
reparse.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
sd.go Re-add dockertest and fix up imports and update script (#4909) 2018-07-11 17:49:13 -04:00
syscall.go Updating plugin deps 2019-08-14 17:23:29 -04:00
zsyscall_windows.go Updating plugin deps 2019-08-14 17:23:29 -04:00

go-winio

This repository contains utilities for efficiently performing Win32 IO operations in Go. Currently, this is focused on accessing named pipes and other file handles, and for using named pipes as a net transport.

This code relies on IO completion ports to avoid blocking IO on system threads, allowing Go to reuse the thread to schedule another goroutine. This limits support to Windows Vista and newer operating systems. This is similar to the implementation of network sockets in Go's net package.

Please see the LICENSE file for licensing information.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Thanks to natefinch for the inspiration for this library. See https://github.com/natefinch/npipe for another named pipe implementation.