-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Tasks Samples for App Engine (#676)
* update license * updated with client library * passing tests * update env var for QUEUE * upgrade packages * update license * updated with client library * passing tests * update env var for QUEUE * upgrade packages
- Loading branch information
1 parent
e55a6d1
commit 381b89a
Showing
7 changed files
with
144 additions
and
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# Copyright 2018, 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. | ||
|
||
env: flex | ||
runtime: nodejs |
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
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 |
---|---|---|
@@ -1,61 +1,39 @@ | ||
/** | ||
* 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. | ||
*/ | ||
* Copyright 2018, 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. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const proxyquire = require(`proxyquire`).noCallThru(); | ||
const sinon = require(`sinon`); | ||
const path = require(`path`); | ||
const test = require(`ava`); | ||
const tools = require(`@google-cloud/nodejs-repo-tools`); | ||
|
||
test.before(tools.stubConsole); | ||
test.after.always(tools.restoreConsole); | ||
const {runAsync} = require(`@google-cloud/nodejs-repo-tools`); | ||
|
||
test.cb(`should create a task`, (t) => { | ||
const responseMock = { | ||
name: 'foo' | ||
}; | ||
const cloudtasksMock = { | ||
projects: { | ||
locations: { | ||
queues: { | ||
tasks: { | ||
create: sinon.stub().yields(responseMock) | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
const authClientMock = {}; | ||
const PROJECT_ID = process.env.GCLOUD_PROJECT; | ||
const QUEUE = process.env.QUEUE_ID || 'my-appengine-queue'; | ||
const cmd = `node createTask.js`; | ||
const cwd = path.join(__dirname, `..`); | ||
|
||
const util = proxyquire(`../createTask`, { | ||
googleapis: { | ||
google: { | ||
cloudtasks: sinon.stub().returns(cloudtasksMock), | ||
auth: { | ||
getApplicationDefault: sinon.stub().yields(null, authClientMock) | ||
} | ||
} | ||
} | ||
}); | ||
|
||
util.createTask('p', 'l', 'q', {}); | ||
test.before((t) => { | ||
if (!QUEUE) { | ||
t.fail(`You must set the QUEUE_ID environment variable!`); | ||
} | ||
}); | ||
test.before(tools.checkCredentials); | ||
|
||
setTimeout(() => { | ||
t.true(console.log.called); | ||
t.is(cloudtasksMock.projects.locations.queues.tasks.create.callCount, 1); | ||
t.end(); | ||
}, 500); | ||
test.serial(`should create a task`, async (t) => { | ||
const output = await runAsync(`${cmd} --project=${PROJECT_ID} --location=us-central1 --queue=${QUEUE}`, cwd); | ||
t.true(output.includes('Created task')); | ||
}); |