-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add Tasks smoke test #5628
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
Merged
Merged
Add Tasks smoke test #5628
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
510e5e3
Add smoke test extracted from java-docs-samples repo
chingor13 4380d1f
Create task queue if not already exists
chingor13 1afadf4
Run smoke tests as part of integration tests
chingor13 2ab1ced
Fix mismerge
chingor13 f97e455
Fix code format
chingor13 12ec94b
Fix imports
chingor13 e6fdc64
Fix format
chingor13 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
112 changes: 112 additions & 0 deletions
112
.../google-cloud-tasks/src/test/java/com/google/cloud/tasks/v2beta3/CloudTasksSmokeTest.java
This file contains hidden or 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,112 @@ | ||
| /* | ||
| * Copyright 2019 Google LLC | ||
| * | ||
| * 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 | ||
| * | ||
| * https://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 com.google.cloud.tasks.v2beta3; | ||
|
|
||
| import static org.junit.Assert.fail; | ||
|
|
||
| import com.google.api.gax.rpc.AlreadyExistsException; | ||
| import com.google.common.base.Preconditions; | ||
| import com.google.protobuf.ByteString; | ||
| import java.io.IOException; | ||
| import java.nio.charset.Charset; | ||
| import java.util.logging.Level; | ||
| import java.util.logging.Logger; | ||
| import org.junit.BeforeClass; | ||
| import org.junit.Test; | ||
|
|
||
| public class CloudTasksSmokeTest { | ||
| private static final String PROJECT_ENV_NAME = "GOOGLE_CLOUD_PROJECT"; | ||
| private static final String LEGACY_PROJECT_ENV_NAME = "GCLOUD_PROJECT"; | ||
| private static final String LOCATION_ENV_NAME = "GOOGLE_CLOUD_LOCATION"; | ||
| private static final String DEFAULT_LOCATION_ID = "us-central1"; | ||
| private static final String QUEUE_ID = "default"; | ||
| static Queue queue; | ||
|
|
||
| public static void main(String args[]) { | ||
| Logger.getLogger("").setLevel(Level.WARNING); | ||
| try { | ||
| createTask(getProjectId(), getLocationId(), QUEUE_ID); | ||
| System.out.println("OK"); | ||
| } catch (IOException e) { | ||
| System.err.println("Failed with exception:"); | ||
| e.printStackTrace(System.err); | ||
| System.exit(1); | ||
| } | ||
| } | ||
|
|
||
| @BeforeClass | ||
| public static void setupQueue() { | ||
| String queueName = QueueName.of(getProjectId(), getLocationId(), QUEUE_ID).toString(); | ||
| try (CloudTasksClient client = CloudTasksClient.create()) { | ||
| Queue q = Queue.newBuilder().setName(queueName).build(); | ||
| try { | ||
|
|
||
| queue = client.createQueue(LocationName.of(getProjectId(), getLocationId()), q); | ||
| } catch (AlreadyExistsException e) { | ||
| queue = client.getQueue(queueName); | ||
| } | ||
| } catch (IOException e) { | ||
| fail("Failed to create queue: " + e.getMessage()); | ||
| } | ||
| } | ||
|
|
||
| @Test | ||
| public void run() { | ||
| main(null); | ||
| } | ||
|
|
||
| public static void createTask(String project, String location, String queue) throws IOException { | ||
| try (CloudTasksClient client = CloudTasksClient.create()) { | ||
| String url = "https://example.com/taskhandler"; | ||
| String payload = "Hello, World!"; | ||
|
|
||
| // Construct the fully qualified queue name. | ||
| String queuePath = QueueName.of(project, location, queue).toString(); | ||
|
|
||
| // Construct the task body. | ||
| Task.Builder taskBuilder = | ||
| < 7EC3 td id="diff-cc90b05d2a1f1025b3f6ed6954627c417c4c91e75bd756b63a436da19b536f71R81" data-line-number="81" class="blob-num blob-num-addition js-linkable-line-number js-blob-rnum"> | Task.newBuilder() | |
| .setHttpRequest( | ||
| HttpRequest.newBuilder() | ||
| .setBody(ByteString.copyFrom(payload, Charset.defaultCharset())) | ||
| .setUrl(url) | ||
| .setHttpMethod(HttpMethod.POST) | ||
| .build()); | ||
|
|
||
| // Send create task request. | ||
| Task task = client.createTask(queuePath, taskBuilder.build()); | ||
| System.out.println("Task created: " + task.getName()); | ||
| } | ||
| } | ||
|
|
||
| private static String getProjectId() { | ||
| String projectId = System.getProperty(PROJECT_ENV_NAME, System.getenv(PROJECT_ENV_NAME)); | ||
| if (projectId == null) { | ||
| projectId = | ||
| System.getProperty(LEGACY_PROJECT_ENV_NAME, System.getenv(LEGACY_PROJECT_ENV_NAME)); | ||
| } | ||
| Preconditions.checkArgument(projectId != null, "A project ID is required."); | ||
| return projectId; | ||
| } | ||
|
|
||
| private static String getLocationId() { | ||
| String locationId = System.getProperty(LOCATION_ENV_NAME, System.getenv(LOCATION_ENV_NAME)); | ||
| if (locationId == null) { | ||
| return DEFAULT_LOCATION_ID; | ||
| } | ||
| return locationId; | ||
| } | ||
| } | ||
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.
minor - want to inline this?
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 followed the existing format for the generated SmokeTests (example)