-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #842 from GoogleCloudPlatform/endpoints-update
[Endpoints] Update/Add samples with new tooling and Guice support for v2
- Loading branch information
Showing
43 changed files
with
2,510 additions
and
166 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
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,69 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2017 Google Inc. | ||
# | ||
# 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. | ||
|
||
# Fail on non-zero return and print command to stdout | ||
set -xe | ||
|
||
# Jenkins Test Script | ||
function TestEndpoints () { | ||
# Test getGreeting Endpoint (hello world!) | ||
curl -H "Content-Type: application/json" \ | ||
-X POST \ | ||
-d "{'message':'hello ${3} version-${2}'}" \ | ||
"https://${2}-dot-${1}.appspot.com/_ah/api/echo/v1/echo" | \ | ||
tee "$ERROR_OUTPUT_DIR/response.json" | \ | ||
grep "hello ${3} version-${2}" | ||
} | ||
|
||
# Jenkins provides values for GOOGLE_PROJECT_ID and GOOGLE_VERSION_ID | ||
# Update Greetings.java | ||
UNIQUE_MAVEN_STRING="maven" | ||
sed -i'.bak' -e "s/YOUR_PROJECT_ID/${GOOGLE_PROJECT_ID}/g" pom.xml | ||
|
||
mvn clean endpoints-framework:openApiDocs | ||
|
||
gcloud service-management deploy target/openapi-docs/openapi.json | ||
|
||
# Test with Maven | ||
mvn appengine:deploy \ | ||
-Dapp.deploy.version="${GOOGLE_VERSION_ID}" \ | ||
-Dapp.deploy.promote=false | ||
|
||
# End-2-End tests | ||
TestEndpoints "${GOOGLE_PROJECT_ID}" "${GOOGLE_VERSION_ID}" "${UNIQUE_MAVEN_STRING}" | ||
|
||
# Clean | ||
mvn clean | ||
|
||
# Test with Gradle | ||
# Modify Greetings.java for Gradle | ||
UNIQUE_GRADLE_STRING="gradle" | ||
sed -i'.bak' -e "s/YOUR_PROJECT_ID/${GOOGLE_PROJECT_ID}/g" build.gradle | ||
|
||
gradle clean endpointsOpenApiDocs | ||
|
||
gcloud service-management deploy build/endpointsOpenApiDocs/openapi.json | ||
|
||
# Deploy Gradle | ||
gradle -Pappengine.deploy.promote=false \ | ||
-Pappengine.deploy.version="${GOOGLE_VERSION_ID}" \ | ||
appengineDeploy | ||
|
||
# End-2-End tests | ||
TestEndpoints "${GOOGLE_PROJECT_ID}" "${GOOGLE_VERSION_ID}" "${UNIQUE_GRADLE_STRING}" | ||
|
||
# Clean | ||
gradle clean |
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
Oops, something went wrong.