-
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.
docs(samples): add quickstart code for ExportAssets (#50)
- Loading branch information
1 parent
e43a816
commit 3c41974
Showing
2 changed files
with
64 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/** | ||
* Copyright 2018, 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 | ||
* | ||
* 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 assert = require('assert'); | ||
const path = require('path'); | ||
const test = require('mocha'); | ||
const tools = require('@google-cloud/nodejs-repo-tools'); | ||
const util = require('util'); | ||
const uuid = require('uuid'); | ||
const cwd = path.join(__dirname, '..'); | ||
const cmd = 'node quickstart.js'; | ||
|
||
const {Storage} = require('@google-cloud/storage'); | ||
|
||
const storage = new Storage(); | ||
const bucketName = `asset-nodejs-${uuid.v4()}`; | ||
const bucket = storage.bucket(bucketName); | ||
|
||
test.describe('quickstart sample tests', () => { | ||
test.before(tools.checkCredentials); | ||
test.before(async () => { | ||
await bucket.create(); | ||
}); | ||
|
||
test.after(async () => { | ||
await bucket.delete(); | ||
}); | ||
|
||
test.it('should export assets to specified path', async () => { | ||
const dumpFilePath = util.format('gs://%s/my-assets.txt', bucketName); | ||
await tools.runAsyncWithIO(`${cmd} export-assets ${dumpFilePath}`, cwd); | ||
const file = await bucket.file('my-assets.txt'); | ||
const [exists] = await file.exists(); | ||
assert.ok(exists); | ||
await file.delete(); | ||
}); | ||
}); |