-
Notifications
You must be signed in to change notification settings - Fork 813
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add conformance test for Rest API SDK server port 59358. Does not contain swagger pregenerated files. Switched Go file to other file extension, because it is not possible to exclude one file from GolangCI linter run.
- Loading branch information
Showing
6 changed files
with
204 additions
and
4 deletions.
There are no files selected for viewing
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,39 @@ | ||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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. | ||
ARG BASE_IMAGE=agones-build-sdk-base:latest | ||
FROM $BASE_IMAGE | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y wget jq && \ | ||
apt-get clean | ||
|
||
# install go | ||
WORKDIR /usr/local | ||
ENV GO_VERSION=1.12 | ||
ENV GO111MODULE=on | ||
ENV GOPATH /go | ||
RUN wget -q https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \ | ||
tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir -p ${GOPATH} | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - && \ | ||
apt-get install -y nodejs | ||
|
||
RUN apt-get install -y openjdk-8-jre | ||
|
||
ENV PATH /usr/local/go/bin:/go/bin:$PATH | ||
|
||
|
||
# code generation scripts | ||
COPY *.sh /root/ | ||
RUN chmod +x /root/*.sh |
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,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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. | ||
|
||
|
||
mkdir /go/src/agones.dev/agones/swagger | ||
wget -q http://central.maven.org/maven2/io/swagger/swagger-codegen-cli/2.4.8/swagger-codegen-cli-2.4.8.jar -O /tmp/swagger-codegen-cli.jar | ||
java -jar /tmp/swagger-codegen-cli.jar generate -i /go/src/agones.dev/agones/sdk.swagger.json -l go -o /go/src/agones.dev/agones/test/sdk/restapi/swagger |
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,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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. | ||
|
||
set -ex | ||
rm -rf /go/src/agones.dev/agones/test/sdk/restapi/swagger | ||
rm /go/src/agones.dev/agones/test/sdk/restapi/http-api-test.go |
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,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2019 Google LLC All Rights Reserved. | ||
# | ||
# 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. | ||
|
||
set -ex | ||
GO111MODULE=on | ||
cd /go/src/agones.dev/agones/test/sdk/restapi | ||
cp ./http-api-test.go.nolint ./http-api-test.go | ||
go run http-api-test.go |
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,94 @@ | ||
// Copyright 2019 Google LLC All Rights Reserved. | ||
// | ||
// 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 main | ||
|
||
import ( | ||
"log" | ||
"time" | ||
|
||
"agones.dev/agones/test/sdk/restapi/swagger" | ||
"golang.org/x/net/context" | ||
) | ||
|
||
func main() { | ||
log.Println("Client is starting") | ||
time.Sleep(1 * time.Second) | ||
conf := swagger.NewConfiguration() | ||
conf.BasePath = "http://localhost:59358" | ||
cli := swagger.NewAPIClient(conf) | ||
|
||
ctx := context.Background() | ||
uid := "" | ||
|
||
// Wait for SDK server to start (5 seconds) | ||
for c := 0 ; c < 5; c++ { | ||
_, _, err := cli.SDKApi.Ready(ctx, swagger.SdkEmpty{}) | ||
if err == nil { | ||
break | ||
} else { | ||
log.Printf("Could not send Ready: %v\n", err) | ||
} | ||
time.Sleep(1 * time.Second) | ||
} | ||
|
||
go func() { | ||
gs, _, err := cli.SDKApi.WatchGameServer(ctx) | ||
if err != nil { | ||
log.Fatalf("Error in WatchGameServer: %v\n", err) | ||
} | ||
uid = gs.ObjectMeta.Uid | ||
}() | ||
|
||
_, _, err := cli.SDKApi.Health(ctx, swagger.SdkEmpty{}) | ||
if err != nil { | ||
log.Fatalf("Could not GetGameserver: %v\n", err) | ||
} | ||
|
||
_, _, err = cli.SDKApi.Reserve(ctx, swagger.SdkDuration{"5"}) | ||
if err != nil { | ||
log.Fatalf("Could not send Reserve: %v\n", err) | ||
} | ||
|
||
_, _, err = cli.SDKApi.Allocate(ctx, swagger.SdkEmpty{}) | ||
if err != nil { | ||
log.Fatalf("Could not send Allocate: %v\n", err) | ||
} | ||
|
||
gs, _, err := cli.SDKApi.GetGameServer(ctx) | ||
if err != nil { | ||
log.Fatalf("Could not GetGameserver: %v\n", err) | ||
} | ||
|
||
creationTS := gs.ObjectMeta.CreationTimestamp | ||
|
||
_, _, err = cli.SDKApi.SetLabel(ctx, swagger.SdkKeyValue{"creationTimestamp", creationTS}) | ||
if err != nil { | ||
log.Fatalf("Could not SetLabel: %v\n", err) | ||
} | ||
|
||
time.Sleep(3 * time.Second) | ||
uid = gs.ObjectMeta.Uid | ||
_, _, err = cli.SDKApi.SetAnnotation(ctx, swagger.SdkKeyValue{"UID", uid}) | ||
if err != nil { | ||
log.Fatalf("Could not SetAnnotation: %v\n", err) | ||
} | ||
time.Sleep(1 * time.Second) | ||
|
||
_, _, err = cli.SDKApi.Shutdown(ctx, swagger.SdkEmpty{}) | ||
if err != nil { | ||
log.Fatalf("Could not GetGameserver: %v\n", err) | ||
} | ||
log.Println("REST API test finished, all queries were performed") | ||
} |