Skip to content

Commit 800d0ec

Browse files
committed
Changes necessary to support netctl login
Changes: - default http client is replaced by a http.Client in the ContivClient struct - httpGet()/httpPost()/httpDelete() are moved into ContivClient and use the new internal http.Client - added SetHttpClient() which allows for overriding the internal http.Client (to disable cert checking, add timeouts, etc.) - added Login() function which performs a login POST request against auth_proxy - added SetAuthToken() which adds a custom request header (X-Auth-Token) before requests are sent out - httpGet()/httpPost()/httpDelete() are modified to set any custom request headers before performing the request - added `make systemtests` target which runs everything under the systemtests dir Signed-off-by: Bill Robinson <[email protected]>
1 parent 73fe9d8 commit 800d0ec

File tree

4 files changed

+580
-80
lines changed

4 files changed

+580
-80
lines changed

Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
.PHONY: all build godep modelgen
2+
.PHONY: all build godep modelgen systemtests
33

44
all: build
55

@@ -11,3 +11,7 @@ godep:
1111

1212
modelgen:
1313
@if [ -z "`which modelgen`" ]; then go get -v github.com/contiv/modelgen; fi
14+
15+
# systemtest runs all of the systemtests
16+
systemtests:
17+
go test -v -timeout 5m ./systemtests -check.v

0 commit comments

Comments
 (0)