Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions storage/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "@google-cloud/storage-samples",
"description": "Samples for the Cloud Storage Client Library for Node.js.",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=12"
},
"repository": "googleapis/nodejs-storage",
"private": true,
"files": [
"*.js"
],
"scripts": {
"cleanup": "node scripts/cleanup",
"test": "mocha system-test/*.js --timeout 800000"
},
"dependencies": {
"@google-cloud/pubsub": "^4.0.0",
"@google-cloud/storage": "^7.19.0",
"node-fetch": "^2.6.7",
"uuid": "^8.0.0",
"yargs": "^16.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.0",
"p-limit": "^3.1.0"
}
}
51 changes: 51 additions & 0 deletions storage/quickstart.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
// 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
//
// 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';

function main(bucketName = 'my-new-bucket') {
// [START storage_quickstart]
// Imports the Google Cloud client library
const {Storage} = require('@google-cloud/storage');

// For more information on ways to initialize Storage, please see
// https://googleapis.dev/nodejs/storage/latest/Storage.html

// Creates a client using Application Default Credentials
const storage = new Storage();

// Creates a client from a Google service account key
// const storage = new Storage({keyFilename: 'key.json'});

/**
* TODO(developer): Uncomment these variables before running the sample.
*/
// The ID of your GCS bucket
// const bucketName = 'your-unique-bucket-name';

async function createBucket() {
try {
// Creates the new bucket
await storage.createBucket(bucketName);
console.log(`Bucket ${bucketName} created.`);
} catch (error) {
console.error('Error executing create bucket:', error.message || error);
}
}

createBucket();
// [END storage_quickstart]
}
Comment thread
angelcaamal marked this conversation as resolved.

main(...process.argv.slice(2));
1 change: 1 addition & 0 deletions storage/resources/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
downloaded.txt
2 changes: 2 additions & 0 deletions storage/resources/resourcesSub1/testSub1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Sub1
Hello World!
1 change: 1 addition & 0 deletions storage/resources/test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World!
1 change: 1 addition & 0 deletions storage/resources/test2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World 2!
44 changes: 44 additions & 0 deletions storage/scripts/cleanup
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/usr/bin/env node

// 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
//
// 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 {Storage} = require('@google-cloud/storage');
const storage = new Storage();
const NAME_REG_EXP = /^nodejs-storage-samples-[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$/;

storage
.getBuckets()
.then(([buckets]) => {
let promise = Promise.resolve();

buckets
.filter((bucket) => NAME_REG_EXP.test(bucket.name))
.forEach((bucket) => {
promise = promise.then(() => {
return bucket.deleteFiles()
.then(() => bucket.deleteFiles(), console.error)
.then(() => {
console.log(`Deleting ${bucket.name}`);
return bucket.delete();
}, console.error)
.catch(console.error);
});
});
})
Comment thread
angelcaamal marked this conversation as resolved.
.catch((err) => {
console.error('ERROR:', err);
});
36 changes: 36 additions & 0 deletions storage/system-test/quickstart.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// 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
//
// 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('chai');
const {after, it} = require('mocha');
const cp = require('child_process');
const uuid = require('uuid');
const {Storage} = require('@google-cloud/storage');

const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});

const storage = new Storage();
const bucketName = `nodejs-storage-samples-${uuid.v4()}`;

after(async () => {
const bucket = storage.bucket(bucketName);
await bucket.delete().catch(console.error);
Comment thread
angelcaamal marked this conversation as resolved.
Outdated
});

it('should run the quickstart', async () => {
const stdout = execSync(`node quickstart ${bucketName}`);
assert.match(stdout, /Bucket .* created./);
});
Empty file.
Loading