-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Yet Another FileAdapter: Google Cloud Storage #708
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
flovilmart
merged 10 commits into
parse-community:master
from
asciimike:mcdonald-gcs-adapter
Mar 8, 2016
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2520e7b
Initial commit of Google Cloud Storage File Adapter
asciimike deafb68
Removed orphaned "options"
asciimike 360cc34
Added tests! Note that tests won't run without a GCP Project, key, an…
asciimike 3e41a21
x-ing out the test suite for CI buildability.
asciimike 1dc3467
Merge branch 'master' of https://github.com/ParsePlatform/parse-serve…
asciimike 5b8ad9d
No more .DS_Store
asciimike 8463535
Merge branch 'master' of https://github.com/ParsePlatform/parse-serve…
asciimike ce35b81
New things for GCS Adapter
asciimike 0f00d65
Removed extraneous console.log()
asciimike 2c51440
Added tests to adapter loader, cleaned up README, renamed to GCS_BUCK…
asciimike 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
Binary file not shown.
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 |
---|---|---|
|
@@ -40,3 +40,6 @@ lib/ | |
|
||
# cache folder | ||
.cache | ||
|
||
# Mac DS_Store files | ||
.DS_Store |
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
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
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
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 |
---|---|---|
@@ -1,33 +1,52 @@ | ||
var FilesController = require('../src/Controllers/FilesController').FilesController; | ||
var GridStoreAdapter = require("../src/Adapters/Files/GridStoreAdapter").GridStoreAdapter; | ||
var S3Adapter = require("../src/Adapters/Files/S3Adapter").S3Adapter; | ||
var GCSAdapter = require("../src/Adapters/Files/GCSAdapter").GCSAdapter; | ||
var Config = require("../src/Config"); | ||
|
||
var FCTestFactory = require("./FilesControllerTestFactory"); | ||
|
||
|
||
// Small additional tests to improve overall coverage | ||
describe("FilesController",()=>{ | ||
|
||
// Test the grid store adapter | ||
var gridStoreAdapter = new GridStoreAdapter('mongodb://localhost:27017/parse'); | ||
FCTestFactory.testAdapter("GridStoreAdapter", gridStoreAdapter); | ||
|
||
if (process.env.S3_ACCESS_KEY && process.env.S3_SECRET_KEY) { | ||
|
||
// Test the S3 Adapter | ||
var s3Adapter = new S3Adapter(process.env.S3_ACCESS_KEY, process.env.S3_SECRET_KEY, 'parse.server.tests'); | ||
|
||
FCTestFactory.testAdapter("S3Adapter",s3Adapter); | ||
|
||
// Test S3 with direct access | ||
var s3DirectAccessAdapter = new S3Adapter(process.env.S3_ACCESS_KEY, process.env.S3_SECRET_KEY, 'parse.server.tests', { | ||
directAccess: true | ||
}); | ||
|
||
FCTestFactory.testAdapter("S3AdapterDirect", s3DirectAccessAdapter); | ||
|
||
} else if (!process.env.TRAVIS) { | ||
console.log("set S3_ACCESS_KEY and S3_SECRET_KEY to test S3Adapter") | ||
} | ||
|
||
if (process.env.GCP_PROJECT_ID && process.env.GCP_KEYFILE_PATH && process.env.GCS_BUCKET) { | ||
|
||
// Test the GCS Adapter | ||
var gcsAdapter = new GCSAdapter(process.env.GCP_PROJECT_ID, process.env.GCP_KEYFILE_PATH, process.env.GCS_BUCKET); | ||
|
||
FCTestFactory.testAdapter("GCSAdapter", gcsAdapter); | ||
|
||
// Test GCS with direct access | ||
var gcsDirectAccessAdapter = new GCSAdapter(process.env.GCP_PROJECT_ID, process.env.GCP_KEYFILE_PATH, process.env.GCS_BUCKET, { | ||
directAccess: true | ||
}); | ||
|
||
FCTestFactory.testAdapter("GCSAdapterDirect", gcsDirectAccessAdapter); | ||
|
||
} else if (!process.env.TRAVIS) { | ||
console.log("set GCP_PROJECT_ID, GCP_KEYFILE_PATH, and GCS_BUCKET to test GCSAdapter") | ||
} | ||
}); |
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
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
Oops, something went wrong.
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.
Great you added those too!